-
- tryActivation(
- activationState.connection,
- () => {
- closeWalletModal()
- },
- chainId,
- )
- }
- >
- Try Again
-
-
- ) : (
- <>
-
- Initializing with {name}...
- >
- )}
-
-
-
- )
-}
diff --git a/src/components/Header/web3/WalletModal/WarningBox.tsx b/src/components/Header/web3/WalletModal/WarningBox.tsx
deleted file mode 100644
index 2c17974f9d..0000000000
--- a/src/components/Header/web3/WalletModal/WarningBox.tsx
+++ /dev/null
@@ -1,178 +0,0 @@
-import { Trans } from '@lingui/macro'
-import { useState } from 'react'
-import { AlertTriangle, ChevronUp } from 'react-feather'
-import { Flex, Text } from 'rebass'
-import styled from 'styled-components'
-
-import { ReactComponent as WarningIcon } from 'assets/images/warning.svg'
-import { SUPPORTED_WALLET, SUPPORTED_WALLETS } from 'constants/wallets'
-import useTheme from 'hooks/useTheme'
-import { ExternalLink } from 'theme'
-import checkForBraveBrowser from 'utils/checkForBraveBrowser'
-
-const WarningBoxWrapper = styled.div`
- width: 100%;
- background-color: ${({ theme }) => theme.buttonBlack};
- margin-top: 24px;
- color: ${({ theme }) => theme.subText};
- margin-bottom: 12px;
- border-radius: 8px;
- padding: 16px 24px;
- font-size: 12px;
- line-height: 16px;
-`
-const InfoWrapper = styled.div`
- width: 100%;
- display: flex;
- gap: 12px;
- align-items: center;
-`
-const StepsWrapper = styled.div`
- border-top: 1px solid ${({ theme }) => theme.border};
- display: flex;
- flex-direction: column;
- gap: 12px;
- padding-top: 16px;
- margin-top: 16px;
-`
-const StyledAlert = styled(WarningIcon)`
- height: 64px;
- width: 64px;
-`
-const IconWrapper = styled.div<{ show: boolean }>`
- padding: 0 8px;
- transform: rotate(${({ show }) => (show ? '0deg' : '180deg')});
- transition: transform 300ms;
- cursor: pointer;
-`
-const Step = styled.div`
- width: 24px;
- height: 24px;
- background-color: rgba(49, 203, 158, 0.2);
- border-radius: 50%;
- color: ${({ theme }) => theme.primary};
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 8px;
-`
-const StepContainer = styled.div`
- display: flex;
- color: ${({ theme }) => theme.subText};
- align-items: center;
-`
-
-export const C98OverrideGuide = ({
- walletKey,
- isOpened = true,
-}: {
- walletKey?: SUPPORTED_WALLET
- isOpened?: boolean
-}) => {
- const theme = useTheme()
- const [show, setShow] = useState(false)
-
- if (!walletKey) return null
-
- const walletName = SUPPORTED_WALLETS[walletKey].name
- // TODO: remove
- const injectedName = 'BRAVE'
-
- const isSelectCoin98 = walletKey === 'COIN98'
- return (
-
-
-
- {!isOpened ? (
-
- {walletName} is not available. In order to use {walletName}, please follow the steps below to disable{' '}
- {injectedName} Wallet:
-
- ) : (
-
- If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow
- the steps below to disable {injectedName} Wallet:
-
- )}
- setShow(prev => !prev)}>
-
-
-
- {show && (
-
-
- 1
- Open C98 Browser Extension
-
-
- 2
- Click on the Settings icon
-
-
- 3
- Select Override Wallets
-
-
- 4
- {isSelectCoin98 ? Enable Metamask in C98 : Disable Metamask in C98}
-
-
- 5
- Refresh the page then try to connect to {walletName} again
-
-
- )}
-
- )
-}
-
-export const WarningBox = ({ walletKey }: { walletKey?: SUPPORTED_WALLET }) => {
- const theme = useTheme()
-
- const isBraveBrowser = checkForBraveBrowser()
-
- if (!walletKey) return null
-
- if (!isBraveBrowser && walletKey === 'BRAVE') {
- return (
-
-
-
-
-
-
- Brave wallet can only be used in Brave Browser. Download it{' '}
-
- here
-
-
-
- )
- }
-
- return null
-}
diff --git a/src/components/Header/web3/WalletModal/index.tsx b/src/components/Header/web3/WalletModal/index.tsx
index 667003c03a..33b8df91c7 100644
--- a/src/components/Header/web3/WalletModal/index.tsx
+++ b/src/components/Header/web3/WalletModal/index.tsx
@@ -1,12 +1,11 @@
import { Trans } from '@lingui/macro'
-import { ActivationStatus, useActivationState } from 'connection/activate'
-import { ConnectionType } from 'connection/types'
import dayjs from 'dayjs'
import { rgba } from 'polished'
import { useEffect, useState } from 'react'
import { ChevronLeft } from 'react-feather'
import { Text } from 'rebass'
import styled from 'styled-components'
+import { useConnect } from 'wagmi'
import { ReactComponent as Close } from 'assets/images/x.svg'
import Modal from 'components/Modal'
@@ -24,13 +23,11 @@ import {
useOpenNetworkModal,
useWalletModalToggle,
} from 'state/application/hooks'
-import { useAppDispatch } from 'state/hooks'
-import { clearRecentConnectionMeta } from 'state/user/actions'
import { useIsAcceptedTerm } from 'state/user/hooks'
import { ExternalLink } from 'theme'
-import PendingView from './PendingView'
-import { useConnections } from './useConnections'
+import Option from './Option'
+import { useOrderedConnections } from './useConnections'
const CloseIcon = styled.div`
height: 24px;
@@ -108,10 +105,7 @@ const HoverText = styled.div`
export default function WalletModal() {
const { isWrongNetwork, account } = useActiveWeb3React()
- const { activationState, cancelActivation } = useActivationState()
-
const theme = useTheme()
- const dispatch = useAppDispatch()
const walletModalOpen = useModalOpen(ApplicationModal.WALLET)
const toggleWalletModal = useWalletModalToggle()
@@ -119,8 +113,9 @@ export default function WalletModal() {
const openWalletModal = useOpenModal(ApplicationModal.WALLET)
const openNetworkModal = useOpenNetworkModal()
+ const { isPending: isSomeOptionPending, isIdle, isError, reset } = useConnect()
const onDismiss = () => {
- cancelActivation()
+ reset()
closeWalletModal()
}
@@ -134,20 +129,18 @@ export default function WalletModal() {
}
}, [isWrongNetwork, openNetworkModal])
- const { orderedConnections } = useConnections()
+ const connectors = useOrderedConnections()
const [isPinnedPopupWallet, setPinnedPopupWallet] = useState(false)
- const isSomeOptionPending = activationState.status === ActivationStatus.PENDING
-
function getModalContent() {
return (
- {(isSomeOptionPending || activationState.status === ActivationStatus.ERROR) && (
+ {(isSomeOptionPending || isError) && (
{
- cancelActivation()
+ reset()
}}
style={{ marginRight: '1rem', flex: 1 }}
>
@@ -159,20 +152,18 @@ export default function WalletModal() {
{
- cancelActivation()
+ reset()
toggleWalletModal()
}}
>
- {activationState.status === ActivationStatus.IDLE && (
+ {isIdle && (
{
if (!isAcceptedTerm) {
mixpanelHandler(MIXPANEL_TYPE.WALLET_CONNECT_ACCEPT_TERM_CLICK)
- } else {
- dispatch(clearRecentConnectionMeta())
}
setIsAcceptedTerm(!isAcceptedTerm)
}}
@@ -200,11 +191,11 @@ export default function WalletModal() {
)}
- {activationState.status !== ActivationStatus.IDLE ? (
-
- ) : (
- {orderedConnections}
- )}
+
+ {connectors.map(c => (
+
+ ))}
+
)
@@ -229,9 +220,15 @@ export default function WalletModal() {
minHeight={false}
maxHeight={90}
maxWidth={600}
- bypassScrollLock={isSomeOptionPending && activationState.connection.type === ConnectionType.WALLET_CONNECT_V2}
+ bypassScrollLock={
+ true
+ //isSomeOptionPending
+ //&& activationState.connection.type === ConnectionType.WALLET_CONNECT_V2
+ }
bypassFocusLock={
- isSomeOptionPending && activationState.connection.type === ConnectionType.WALLET_CONNECT_V2
+ true
+ //isSomeOptionPending
+ //&& activationState.connection.type === ConnectionType.WALLET_CONNECT_V2
// walletView === WALLET_VIEWS.PENDING && ['WALLET_CONNECT', 'KRYSTAL_WC', 'BLOCTO'].includes(pendingWalletKey)
}
>
diff --git a/src/components/Header/web3/WalletModal/useConnections.tsx b/src/components/Header/web3/WalletModal/useConnections.tsx
index 8e5e3c5263..0a2e6546b8 100644
--- a/src/components/Header/web3/WalletModal/useConnections.tsx
+++ b/src/components/Header/web3/WalletModal/useConnections.tsx
@@ -1,69 +1,71 @@
-import { connections, eip6963Connection } from 'connection'
-import { useInjectedProviderDetails } from 'connection/eip6963/providers'
-import { Connection, ConnectionType, RecentConnectionMeta } from 'connection/types'
-import { shouldUseDeprecatedInjector } from 'connection/utils'
import { useMemo } from 'react'
+import { isMobile } from 'react-device-detect'
+import { Connector, useConnect } from 'wagmi'
+
+import { CONNECTION, getConnectorWithId } from 'components/Web3Provider'
+
+function getInjectedConnectors(connectors: readonly Connector[]) {
+ let isCoinbaseWalletBrowser = false
+ const injectedConnectors = connectors.filter(c => {
+ // Special-case: Ignore coinbase eip6963-injected connector; coinbase connection is handled via the SDK connector.
+ if (c.id === CONNECTION.COINBASE_RDNS) {
+ if (isMobile) {
+ isCoinbaseWalletBrowser = true
+ }
+ return false
+ }
+
+ return c.type === CONNECTION.INJECTED_CONNECTOR_TYPE && c.id !== CONNECTION.INJECTED_CONNECTOR_ID
+ })
+
+ // Special-case: Return deprecated window.ethereum connector when no eip6963 injectors are present.
+ const fallbackInjector = getConnectorWithId(connectors, CONNECTION.INJECTED_CONNECTOR_ID, { shouldThrow: true })
+ if (!injectedConnectors.length && Boolean(window.ethereum)) {
+ return { injectedConnectors: [fallbackInjector], isCoinbaseWalletBrowser }
+ }
-import { useAppSelector } from 'state/hooks'
-
-import Option from './Option'
-
-function useEIP6963Connections() {
- const eip6963Injectors = useInjectedProviderDetails()
- const eip6963Enabled = true
-
- return useMemo(() => {
- if (!eip6963Enabled) return { eip6963Connections: [], showDeprecatedMessage: false }
-
- const eip6963Connections = eip6963Injectors.flatMap(injector => eip6963Connection.wrap(injector.info) ?? [])
-
- // Displays ui to activate window.ethereum for edge-case where we detect window.ethereum !== one of the eip6963 providers
- const showDeprecatedMessage = eip6963Connections.length > 0 && shouldUseDeprecatedInjector(eip6963Injectors)
-
- return { eip6963Connections, showDeprecatedMessage }
- }, [eip6963Injectors, eip6963Enabled])
+ return { injectedConnectors, isCoinbaseWalletBrowser }
}
-function mergeConnections(connections: Connection[], eip6963Connections: Connection[]) {
- const hasEip6963Connections = eip6963Connections.length > 0
- const displayedConnections = connections.filter(c => c.shouldDisplay())
+type InjectableConnector = Connector & { isInjected?: boolean }
+export function useOrderedConnections(): InjectableConnector[] {
+ const { connectors } = useConnect()
- if (!hasEip6963Connections) return displayedConnections
+ return useMemo(() => {
+ const { injectedConnectors: injectedConnectorsBase, isCoinbaseWalletBrowser } = getInjectedConnectors(connectors)
+ const injectedConnectors = injectedConnectorsBase.map(c => ({ ...c, isInjected: true }))
- const allConnections = [...displayedConnections.filter(c => c.type !== ConnectionType.INJECTED)]
- // By default, injected options should appear second in the list (below Uniswap wallet)
- allConnections.splice(1, 0, ...eip6963Connections)
+ const coinbaseSdkConnector = getConnectorWithId(connectors, CONNECTION.COINBASE_SDK_CONNECTOR_ID)
+ const walletConnectConnector = getConnectorWithId(connectors, CONNECTION.WALLET_CONNECT_CONNECTOR_ID)
+ const bloctoConnector = getConnectorWithId(connectors, CONNECTION.BLOCTO_ID)
- return allConnections
-}
+ if (!coinbaseSdkConnector || !walletConnectConnector) {
+ throw new Error('Expected connector(s) missing from wagmi context.')
+ }
-// TODO(WEB-3244) Improve ordering logic to make less brittle, as it is spread across connections/index.ts and here
-/** Returns an array of all connection Options that should be displayed, where the recent connection is first in the array */
-function getOrderedConnections(connections: Connection[], recentConnection: RecentConnectionMeta | undefined) {
- const list: JSX.Element[] = []
- for (const connection of connections) {
- if (!connection.shouldDisplay()) continue
- const { name, rdns } = connection.getProviderInfo()
+ // Special-case: Only display the injected connector for in-wallet browsers.
+ if (isMobile && injectedConnectors.length === 1) {
+ return injectedConnectors
+ }
- // For eip6963 injectors, we need to check rdns in addition to connection type to ensure it's the recent connection
- const isRecent = connection.type === recentConnection?.type && (!rdns || rdns === recentConnection.rdns)
+ // Special-case: Only display the Coinbase connector in the Coinbase Wallet.
+ if (isCoinbaseWalletBrowser) {
+ return [coinbaseSdkConnector]
+ }
- const option =
+ const orderedConnectors: InjectableConnector[] = []
- // Place recent connection at top of list
- isRecent ? list.unshift(option) : list.push(option)
- }
+ // Injected connectors should appear next in the list, as the user intentionally installed/uses them.
+ orderedConnectors.push(...injectedConnectors)
- return list
-}
+ // WalletConnect and Coinbase are added last in the list.
+ orderedConnectors.push(walletConnectConnector)
+ orderedConnectors.push(coinbaseSdkConnector)
-export function useConnections() {
- const { eip6963Connections, showDeprecatedMessage } = useEIP6963Connections()
- const recentConnection = useAppSelector(state => state.user.recentConnectionMeta)
- const orderedConnections = useMemo(() => {
- const allConnections = mergeConnections(connections, eip6963Connections)
- return getOrderedConnections(allConnections, recentConnection)
- }, [eip6963Connections, recentConnection])
+ if (bloctoConnector) orderedConnectors.push(bloctoConnector)
- return { orderedConnections, showDeprecatedMessage }
+ // Place the most recent connector at the top of the list.
+ orderedConnectors
+ return orderedConnectors
+ }, [connectors])
}
diff --git a/src/components/LiveChart/index.tsx b/src/components/LiveChart/index.tsx
index 6403d4d448..c981c19bce 100644
--- a/src/components/LiveChart/index.tsx
+++ b/src/components/LiveChart/index.tsx
@@ -348,7 +348,7 @@ function LiveChart({
) : (
<>
- = 0 ? '#31CB9E' : '#FF537B'} marginRight="5px">
+ = 0 ? '#31CB9E' : '#FF537B'} marginRight="5px">
{different} ({differentPercent}%)
{!hoverValue && (
diff --git a/src/components/Pagination/index.tsx b/src/components/Pagination/index.tsx
index b345836148..5041eb3339 100644
--- a/src/components/Pagination/index.tsx
+++ b/src/components/Pagination/index.tsx
@@ -1,4 +1,4 @@
-import React, { CSSProperties } from 'react'
+import { CSSProperties } from 'react'
import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from 'react-feather'
import { useMedia } from 'react-use'
@@ -55,7 +55,7 @@ export default function Pagination({
}
const onNext = () => {
- if (currentPage < paginationRange[paginationRange.length - 1]) {
+ if (currentPage < +paginationRange[paginationRange.length - 1]) {
onPageChange(currentPage + 1)
}
}
diff --git a/src/components/TransactionConfirmationModal/index.tsx b/src/components/TransactionConfirmationModal/index.tsx
index db1932c361..1445b8b796 100644
--- a/src/components/TransactionConfirmationModal/index.tsx
+++ b/src/components/TransactionConfirmationModal/index.tsx
@@ -1,7 +1,5 @@
import { ChainId, Currency, Token } from '@kyberswap/ks-sdk-core'
import { Trans } from '@lingui/macro'
-import { getConnection } from 'connection'
-import { ConnectionType } from 'connection/types'
import React, { useState } from 'react'
import { ArrowUpCircle, BarChart2 } from 'react-feather'
import { Flex, Text } from 'rebass'
@@ -14,6 +12,7 @@ import { AutoColumn, ColumnCenter } from 'components/Column'
import Loader from 'components/Loader'
import Modal from 'components/Modal'
import { RowBetween, RowFixed } from 'components/Row'
+import { CONNECTOR_ICON_OVERRIDE_MAP } from 'components/Web3Provider'
import ListGridViewGroup from 'components/YieldPools/ListGridViewGroup'
import { useActiveWeb3React, useWeb3React } from 'hooks'
import useTheme from 'hooks/useTheme'
@@ -87,7 +86,6 @@ export function ConfirmationPendingContent({
function AddTokenToInjectedWallet({ token, chainId }: { token: Token; chainId: ChainId }) {
const { connector } = useWeb3React()
- const connection = getConnection(connector)
const handleClick = async () => {
const tokenAddress = token.address
const tokenSymbol = token.symbol
@@ -115,8 +113,9 @@ function AddTokenToInjectedWallet({ token, chainId }: { token: Token; chainId: C
}
}
- if (!connection || connection.type === ConnectionType.WALLET_CONNECT_V2) return null
- const { name, icon } = connection.getProviderInfo()
+ if (!connector || connector?.name === 'WalletConnect') return null
+ const { name } = connector
+ const icon = CONNECTOR_ICON_OVERRIDE_MAP[connector.id] ?? connector.icon
return (
diff --git a/src/components/Tutorial/TutorialSwap/index.tsx b/src/components/Tutorial/TutorialSwap/index.tsx
index 2ab22de96f..0fd5f645d8 100644
--- a/src/components/Tutorial/TutorialSwap/index.tsx
+++ b/src/components/Tutorial/TutorialSwap/index.tsx
@@ -16,7 +16,6 @@ import SwapSettingBtn from 'assets/images/tutorial_swap/swap_setting_btn.png'
import WelcomeImage from 'assets/images/tutorial_swap/welcome.png'
import { ButtonOutlined, ButtonPrimary } from 'components/Button'
import { ToggleItemType } from 'components/Collapse'
-import { connections } from 'constants/wallets'
import { useActiveWeb3React } from 'hooks'
import useMixpanel, { MIXPANEL_TYPE } from 'hooks/useMixpanel'
import { useTutorialSwapGuide } from 'state/tutorial/hooks'
@@ -71,17 +70,17 @@ const ArrowWrapper = styled.div`
}
`
-const NetworkItemWrapper = styled.div`
- background: ${({ theme }) => theme.buttonBlack};
- border-radius: 42px;
- display: flex;
- padding: 10px 15px;
- gap: 10px;
- cursor: pointer;
- flex-basis: calc((100% - 10px) / 2); // 10px gap
- min-width: 160px;
- box-sizing: border-box;
-`
+//const NetworkItemWrapper = styled.div`
+// background: ${({ theme }) => theme.buttonBlack};
+// border-radius: 42px;
+// display: flex;
+// padding: 10px 15px;
+// gap: 10px;
+// cursor: pointer;
+// flex-basis: calc((100% - 10px) / 2); // 10px gap
+// min-width: 160px;
+// box-sizing: border-box;
+//`
const NetworkWrapper = styled.div`
background: ${({ theme }) => theme.background};
@@ -162,14 +161,15 @@ function ConnectWallet() {
{isExpanded && (
- {Object.values(connections)
+ {/* TODO: Tutorial is currently off, then Just leave this here (integrating wagmi), need to fix this if we bring tutorial back
+ Object.values(connections)
.filter(e => e.installLink)
.map(item => (
window.open(item.installLink)}>
{item.name}
- ))}
+ )) */}
)}
diff --git a/src/components/Tutorial/index.tsx b/src/components/Tutorial/index.tsx
index a318537a00..09da6daad6 100644
--- a/src/components/Tutorial/index.tsx
+++ b/src/components/Tutorial/index.tsx
@@ -182,7 +182,6 @@ function Tutorial({ customIcon, type, showTooltip }: Props) {
width="100%"
height="100%"
src={`https://www.youtube.com/embed/${videoId}`}
- frameBorder="0"
title="Tutorial"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
diff --git a/src/components/WalletPopup/WalletView.tsx b/src/components/WalletPopup/WalletView.tsx
index 20533a5387..3c7d27ffdc 100644
--- a/src/components/WalletPopup/WalletView.tsx
+++ b/src/components/WalletPopup/WalletView.tsx
@@ -1,5 +1,4 @@
import { Trans, t } from '@lingui/macro'
-import { getConnection } from 'connection'
import { rgba } from 'polished'
import { useEffect, useLayoutEffect, useRef, useState } from 'react'
import { ChevronLeft, FileText, LogOut, StopCircle, X } from 'react-feather'
@@ -16,6 +15,7 @@ import AccountInfo from 'components/WalletPopup/AccountInfo'
import MyAssets from 'components/WalletPopup/MyAssets'
import PinButton from 'components/WalletPopup/PinButton'
import SendToken from 'components/WalletPopup/SendToken'
+import { CONNECTOR_ICON_OVERRIDE_MAP } from 'components/Web3Provider'
import { APP_PATHS } from 'constants/index'
import { useActiveWeb3React, useWeb3React } from 'hooks'
import useMixpanel, { MIXPANEL_TYPE } from 'hooks/useMixpanel'
@@ -133,7 +133,7 @@ export default function WalletView({
const [isMinimal, setMinimal] = useState(false)
const { chainId, account = '', walletKey } = useActiveWeb3React()
const { connector } = useWeb3React()
- const connection = getConnection(connector)
+
const disconnectWallet = useDisconnectWallet()
const {
@@ -268,6 +268,8 @@ export default function WalletView({
const classNameForHandle = isPinned ? HANDLE_CLASS_NAME : ''
const cursorForHandle = isPinned ? 'move' : undefined
+ const icon = CONNECTOR_ICON_OVERRIDE_MAP[connector?.id || ''] ?? connector?.icon
+
return (
{walletKey && (
-
+
)}
diff --git a/src/components/Web3Provider/index.tsx b/src/components/Web3Provider/index.tsx
new file mode 100644
index 0000000000..d4ebf51ce6
--- /dev/null
+++ b/src/components/Web3Provider/index.tsx
@@ -0,0 +1,209 @@
+import { blocto } from '@blocto/wagmi-connector'
+import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
+import { watchChainId } from '@wagmi/core'
+import { ReactNode, useEffect, useMemo } from 'react'
+import { createClient, http } from 'viem'
+import {
+ arbitrum,
+ avalanche,
+ base,
+ bitTorrent,
+ blast,
+ bsc,
+ cronos,
+ fantom,
+ linea,
+ mainnet,
+ mantle,
+ optimism,
+ polygon,
+ polygonZkEvm,
+ scroll,
+ xLayer,
+ zksync,
+} from 'viem/chains'
+import { Connector, WagmiProvider, createConfig, createConnector, useConnect } from 'wagmi'
+import { coinbaseWallet, injected, safe, walletConnect } from 'wagmi/connectors'
+
+import WC_BG from 'assets/images/wc-bg.png'
+import Kyber from 'assets/svg/kyber/logo_kyberswap_with_padding.svg'
+import BLOCTO_ICON from 'assets/wallets-connect/bocto.svg'
+import COINBASE_ICON from 'assets/wallets-connect/coinbase.svg'
+import METAMASK_ICON from 'assets/wallets-connect/metamask.svg'
+import SAFE_ICON from 'assets/wallets-connect/safe.svg'
+import WALLET_CONNECT_ICON from 'assets/wallets-connect/wallet-connect.svg'
+import INJECTED_DARK_ICON from 'assets/wallets/browser-wallet-dark.svg'
+import { WALLETCONNECT_PROJECT_ID } from 'constants/env'
+import { isSupportedChainId } from 'constants/networks'
+import { useAppDispatch } from 'state/hooks'
+import { updateChainId } from 'state/user/actions'
+
+export const queryClient = new QueryClient()
+
+export const CONNECTION = {
+ WALLET_CONNECT_CONNECTOR_ID: 'walletConnect',
+ UNISWAP_WALLET_CONNECT_CONNECTOR_ID: 'uniswapWalletConnect',
+ INJECTED_CONNECTOR_ID: 'injected',
+ INJECTED_CONNECTOR_TYPE: 'injected',
+ COINBASE_SDK_CONNECTOR_ID: 'coinbaseWalletSDK',
+ COINBASE_RDNS: 'com.coinbase.wallet',
+ METAMASK_RDNS: 'io.metamask',
+ BLOCTO_ID: 'blocto',
+ //UNISWAP_EXTENSION_RDNS: 'org.uniswap.app',
+ SAFE_CONNECTOR_ID: 'safe',
+} as const
+
+export const CONNECTOR_ICON_OVERRIDE_MAP: { [id in string]?: string } = {
+ [CONNECTION.METAMASK_RDNS]: METAMASK_ICON,
+ [CONNECTION.COINBASE_SDK_CONNECTOR_ID]: COINBASE_ICON,
+ [CONNECTION.WALLET_CONNECT_CONNECTOR_ID]: WALLET_CONNECT_ICON,
+ [CONNECTION.SAFE_CONNECTOR_ID]: SAFE_ICON,
+ [CONNECTION.BLOCTO_ID]: BLOCTO_ICON,
+}
+
+type ConnectorID = typeof CONNECTION[keyof typeof CONNECTION]
+
+export function getConnectorWithId(
+ connectors: readonly Connector[],
+ id: ConnectorID,
+ options: { shouldThrow: true },
+): Connector
+export function getConnectorWithId(connectors: readonly Connector[], id: ConnectorID): Connector | undefined
+export function getConnectorWithId(
+ connectors: readonly Connector[],
+ id: ConnectorID,
+ options?: { shouldThrow: true },
+): Connector | undefined {
+ const connector = connectors.find(c => c.id === id)
+ if (!connector && options?.shouldThrow) {
+ throw new Error(`Expected connector ${id} missing from wagmi context.`)
+ }
+ return connector
+}
+
+/** Returns a wagmi `Connector` with the given id. If `shouldThrow` is passed, an error will be thrown if the connector is not found. */
+export function useConnectorWithId(id: ConnectorID, options: { shouldThrow: true }): Connector
+export function useConnectorWithId(id: ConnectorID): Connector | undefined
+export function useConnectorWithId(id: ConnectorID, options?: { shouldThrow: true }): Connector | undefined {
+ const { connectors } = useConnect()
+ return useMemo(
+ () => (options?.shouldThrow ? getConnectorWithId(connectors, id, options) : getConnectorWithId(connectors, id)),
+ [connectors, id, options],
+ )
+}
+
+declare module 'wagmi' {
+ interface Register {
+ config: typeof wagmiConfig
+ }
+}
+
+function injectedWithFallback() {
+ return createConnector(config => {
+ const injectedConnector = injected()(config)
+
+ return {
+ ...injectedConnector,
+ connect(...params) {
+ if (!window.ethereum) {
+ window.open('https://metamask.io/', 'inst_metamask')
+ }
+ return injectedConnector.connect(...params)
+ },
+ get icon() {
+ return !window.ethereum || window.ethereum?.isMetaMask ? METAMASK_ICON : INJECTED_DARK_ICON
+ },
+ get name() {
+ return !window.ethereum ? 'Install MetaMask' : window.ethereum?.isMetaMask ? 'MetaMask' : 'Browser Wallet'
+ },
+ }
+ })
+}
+
+const WC_PARAMS = {
+ showQrModal: true,
+ projectId: WALLETCONNECT_PROJECT_ID,
+ metadata: {
+ name: 'KyberSwap',
+ description: document.title,
+ url: window.location.origin,
+ icons: ['https://kyberswap.com/favicon.svg'],
+ },
+ qrModalOptions: {
+ chainImages: undefined,
+ themeMode: 'dark' as const,
+ themeVariables: {
+ '--wcm-z-index': '1000',
+ '--wcm-logo-image-url': Kyber,
+ '--wcm-background-image-url': WC_BG,
+ '--wcm-accent-color': '#31CB9E',
+ '--wcm-accent-fill-color': '#222222',
+ '--wcm-color-bg-1': '#0F0F0F',
+ '--wcm-background-color': '#31CB9E',
+ },
+ },
+}
+
+export const wagmiConfig = createConfig({
+ chains: [
+ mainnet,
+ arbitrum,
+ optimism,
+ zksync,
+ polygon,
+ polygonZkEvm,
+ base,
+ bsc,
+ linea,
+ mantle,
+ scroll,
+ avalanche,
+ fantom,
+ blast,
+ xLayer,
+ cronos,
+ bitTorrent,
+ ],
+ connectors: [
+ injectedWithFallback(),
+ walletConnect(WC_PARAMS),
+ coinbaseWallet({
+ appName: 'KyberSwap',
+ appLogoUrl: 'https://kyberswap.com/favicon.png',
+ reloadOnDisconnect: false,
+ enableMobileWalletLink: true,
+ }),
+ blocto({ appId: 'fbd356ae-8f39-4650-ab42-4ef8cb9e15c9' }),
+ safe(),
+ ],
+ client({ chain }) {
+ return createClient({
+ chain,
+ batch: { multicall: true },
+ pollingInterval: 12_000,
+ transport: http(),
+ })
+ },
+})
+
+export default function Web3Provider({ children }: { children: ReactNode }) {
+ const dispatch = useAppDispatch()
+ useEffect(() => {
+ const unwatch = watchChainId(wagmiConfig, {
+ onChange(chainId) {
+ if (isSupportedChainId(chainId)) {
+ dispatch(updateChainId(chainId as any))
+ }
+ },
+ })
+ return () => {
+ unwatch()
+ }
+ }, [dispatch])
+
+ return (
+
+ {children}
+
+ )
+}
diff --git a/src/connection/WalletConnectV2.ts b/src/connection/WalletConnectV2.ts
deleted file mode 100644
index 50d8728de8..0000000000
--- a/src/connection/WalletConnectV2.ts
+++ /dev/null
@@ -1,61 +0,0 @@
-import { ChainId } from '@kyberswap/ks-sdk-core'
-import { OPTIONAL_EVENTS } from '@walletconnect/ethereum-provider'
-import { WalletConnect, WalletConnectConstructorArgs } from '@web3-react/walletconnect-v2'
-
-import WC_BG from 'assets/images/wc-bg.png'
-import Kyber from 'assets/svg/kyber/logo_kyberswap_with_padding.svg'
-import { WALLETCONNECT_PROJECT_ID } from 'constants/env'
-import {
- NETWORKS_INFO,
- WALLET_CONNECT_OPTIONAL_CHAIN_IDS,
- WALLET_CONNECT_REQUIRED_CHAIN_IDS,
- WALLET_CONNECT_SUPPORTED_CHAIN_IDS,
-} from 'constants/networks'
-
-export const walletConnectOption = {
- projectId: WALLETCONNECT_PROJECT_ID,
- chains: WALLET_CONNECT_REQUIRED_CHAIN_IDS,
- optionalChains: WALLET_CONNECT_OPTIONAL_CHAIN_IDS,
- optionalEvents: OPTIONAL_EVENTS,
- methods: ['eth_sendTransaction', 'personal_sign', 'eth_signTypedData_v4'],
- optionalMethods: ['eth_signTypedData', 'eth_sign'],
-
- metadata: {
- name: 'KyberSwap',
- description: document.title,
- url: window.location.origin,
- icons: ['https://kyberswap.com/favicon.svg'],
- },
- showQrModal: true,
- rpcMap: WALLET_CONNECT_SUPPORTED_CHAIN_IDS.reduce((acc, cur) => {
- acc[cur] = NETWORKS_INFO[cur].defaultRpcUrl
- return acc
- }, {} as { [key in ChainId]: string }),
-
- qrModalOptions: {
- chainImages: undefined,
- themeMode: 'dark' as const,
- themeVariables: {
- '--w3m-z-index': '1000',
- '--w3m-logo-image-url': Kyber,
- '--w3m-background-image-url': WC_BG,
- '--w3m-accent-color': '#31CB9E',
- '--w3m-accent-fill-color': '#222222',
- '--w3m-color-bg-1': '#0F0F0F',
- } as any,
- },
-}
-
-export class WalletConnectV2 extends WalletConnect {
- constructor({ actions, onError }: Omit) {
- super({
- actions,
- options: walletConnectOption,
- onError,
- })
- }
-
- activate(chainId?: number) {
- return super.activate(chainId)
- }
-}
diff --git a/src/connection/activate.ts b/src/connection/activate.ts
deleted file mode 100644
index cb71bc6895..0000000000
--- a/src/connection/activate.ts
+++ /dev/null
@@ -1,80 +0,0 @@
-import { ChainId } from '@kyberswap/ks-sdk-core'
-import { Connection, ConnectionType } from 'connection/types'
-import { atom } from 'jotai'
-import { useAtomValue, useUpdateAtom } from 'jotai/utils'
-import { useCallback } from 'react'
-
-import { didUserReject } from './utils'
-
-export enum ActivationStatus {
- PENDING = 'PENDING',
- ERROR = 'ERROR',
- IDLE = 'IDLE',
-}
-
-type ActivationPendingState = { status: ActivationStatus.PENDING; connection: Connection }
-type ActivationErrorState = { status: ActivationStatus.ERROR; connection: Connection; error: any }
-const IDLE_ACTIVATION_STATE = { status: ActivationStatus.IDLE } as const
-type ActivationState = ActivationPendingState | ActivationErrorState | typeof IDLE_ACTIVATION_STATE
-
-const activationStateAtom = atom(IDLE_ACTIVATION_STATE)
-
-function useTryActivation() {
- const setActivationState = useUpdateAtom(activationStateAtom)
-
- return useCallback(
- async (connection: Connection, onSuccess: () => void, chainId?: ChainId) => {
- // Skips wallet connection if the connection should override the default
- // behavior, i.e. install MetaMask or launch Coinbase app
- if (connection.overrideActivate?.(chainId)) return
-
- const { name } = connection.getProviderInfo()
- try {
- setActivationState({ status: ActivationStatus.PENDING, connection })
-
- console.debug(`Connection activating: ${name}`)
- await connection.connector.activate(connection.type === ConnectionType.WALLET_CONNECT_V2 ? undefined : chainId)
-
- console.debug(`Connection activated: ${name}`)
-
- // Clears pending connection state
- setActivationState(IDLE_ACTIVATION_STATE)
-
- onSuccess()
- } catch (error) {
- // Gracefully handles errors from the user rejecting a connection attempt
- if (didUserReject(connection, error)) {
- setActivationState(IDLE_ACTIVATION_STATE)
- return
- }
-
- console.debug(`Connection failed: ${name}`)
- console.error(error)
-
- // Failed Connection events are logged here, while successful ones are logged by Web3Provider
- setActivationState({ status: ActivationStatus.ERROR, connection, error })
- }
- },
- [setActivationState],
- )
-}
-
-function useCancelActivation() {
- const setActivationState = useUpdateAtom(activationStateAtom)
- return useCallback(
- () =>
- setActivationState(activationState => {
- if (activationState.status !== ActivationStatus.IDLE) activationState.connection.connector.deactivate?.()
- return IDLE_ACTIVATION_STATE
- }),
- [setActivationState],
- )
-}
-
-export function useActivationState() {
- const activationState = useAtomValue(activationStateAtom)
- const tryActivation = useTryActivation()
- const cancelActivation = useCancelActivation()
-
- return { activationState, tryActivation, cancelActivation }
-}
diff --git a/src/connection/eagerlyConnect.ts b/src/connection/eagerlyConnect.ts
deleted file mode 100644
index 34faea12f9..0000000000
--- a/src/connection/eagerlyConnect.ts
+++ /dev/null
@@ -1,74 +0,0 @@
-import { Connector } from '@web3-react/types'
-import { useSyncExternalStore } from 'react'
-
-import store from 'state'
-import { clearRecentConnectionMeta } from 'state/user/actions'
-
-import { eip6963Connection, getConnection, gnosisSafeConnection, networkConnection } from './index'
-import { getRecentConnectionMeta } from './meta'
-
-class FailedToConnect extends Error {}
-
-let connectionReady: Promise | true = true
-
-export function useConnectionReady() {
- return useSyncExternalStore(
- onStoreChange => {
- if (connectionReady instanceof Promise) {
- connectionReady.finally(onStoreChange)
- }
- return () => undefined
- },
- () => connectionReady === true,
- )
-}
-
-async function connect(connector: Connector) {
- try {
- if (connector.connectEagerly) {
- await connector.connectEagerly()
- } else {
- await connector.activate()
- }
- return true
- } catch (error) {
- console.debug(`web3-react eager connection error: ${error}`)
- return false
- }
-}
-
-// The Safe connector will only work from safe.global, which iframes;
-// it is only necessary to try (and to load all the deps) if we are in an iframe.
-if (window !== window.parent) {
- connect(gnosisSafeConnection.connector)
-}
-connect(networkConnection.connector)
-
-// Get the persisted wallet type from the last session.
-const recentConnectionMeta = getRecentConnectionMeta()
-
-if (recentConnectionMeta?.type && !recentConnectionMeta.disconnected) {
- const selectedConnection = getConnection(recentConnectionMeta.type)
-
- // All EIP6963 wallets share one Connection object, `eip6963Connection`
- // To activate the same EIP6963 wallet as the last session, we need to `select` the rdns of the recent connection
- if (recentConnectionMeta.rdns) eip6963Connection.selectRdns(recentConnectionMeta.rdns)
-
- if (selectedConnection) {
- connectionReady = connect(selectedConnection.connector)
- .then(connected => {
- if (!connected) throw new FailedToConnect()
- })
- .catch(error => {
- // Clear the persisted wallet type if it failed to connect.
- store.dispatch(clearRecentConnectionMeta())
- // Log it if it threw an unknown error.
- if (!(error instanceof FailedToConnect)) {
- console.error(error)
- }
- })
- .finally(() => {
- connectionReady = true
- })
- }
-}
diff --git a/src/connection/eip6963/index.ts b/src/connection/eip6963/index.ts
deleted file mode 100644
index 4b1f24792f..0000000000
--- a/src/connection/eip6963/index.ts
+++ /dev/null
@@ -1,180 +0,0 @@
-import {
- Actions,
- AddEthereumChainParameter,
- Connector,
- Provider,
- ProviderConnectInfo,
- ProviderRpcError,
-} from '@web3-react/types'
-
-import store from 'state'
-import { updateChainId } from 'state/user/actions'
-
-import { EIP6963_PROVIDER_MANAGER } from './providers'
-import { EIP6963ProviderDetail, EIP6963ProviderInfo } from './types'
-
-type Listener = (...args: any[]) => void
-
-class EIP6963Provider implements Provider {
- currentProviderDetail?: EIP6963ProviderDetail
-
- // Stores stable references to proxy listeners to prevent memory leaks
- private readonly proxyListeners: { [eventName: string | symbol]: Listener[] } = {}
-
- async request(args: any): Promise {
- return this.currentProviderDetail?.provider.request(args)
- }
-
- on(eventName: string, listener: Listener): this {
- if (!this.proxyListeners[eventName]) {
- this.proxyListeners[eventName] = []
- }
- this.proxyListeners[eventName].push(listener)
- this.currentProviderDetail?.provider.on(eventName, listener)
- return this
- }
-
- removeListener(eventName: string | symbol, listener: Listener): this {
- this.currentProviderDetail?.provider.removeListener(eventName, listener)
-
- if (this.proxyListeners[eventName]) {
- const index = this.proxyListeners[eventName]?.indexOf(listener)
- if (index !== -1) {
- // Splicing is used since proxyListeners must be referentially stable
- this.proxyListeners[eventName]?.splice(index, 1)
- }
- }
- return this
- }
-
- /** Switches which extension's provider is used based on given rdns. */
- setCurrentProvider(rdns: string) {
- const oldProvider = this.currentProviderDetail
- const newProvider = (this.currentProviderDetail = EIP6963_PROVIDER_MANAGER.map.get(rdns))
-
- for (const eventName in this.proxyListeners) {
- // proxyListener must be referentially stable to prevent memory leaks
- // pull them from proxyListeners to keep them stable
- for (const proxyListener of this.proxyListeners[eventName]) {
- oldProvider?.provider.removeListener(eventName, proxyListener)
- newProvider?.provider.on(eventName, proxyListener)
- }
- }
- }
-}
-
-function parseChainId(chainId: string | number) {
- return typeof chainId === 'string' ? Number.parseInt(chainId, 16) : chainId
-}
-
-interface EIP6963ConstructorArgs {
- actions: Actions
- onError?: (error: Error) => void
-}
-
-export class EIP6963 extends Connector {
- /** {@inheritdoc Connector.provider} */
- provider: EIP6963Provider
-
- constructor({ actions, onError }: EIP6963ConstructorArgs) {
- super(actions, onError)
-
- this.provider = new EIP6963Provider()
-
- this.provider.on('connect', ({ chainId }: ProviderConnectInfo): void => {
- this.actions.update({ chainId: parseChainId(chainId) })
- })
-
- this.provider.on('disconnect', (error: ProviderRpcError): void => {
- this.actions.resetState()
- this.onError?.(error)
- })
-
- this.provider.on('chainChanged', (chainId: string): void => {
- store.dispatch(updateChainId(parseChainId(chainId)))
- this.actions.update({ chainId: parseChainId(chainId) })
- })
-
- this.provider.on('accountsChanged', (accounts: string[]): void => {
- this.actions.update({ accounts })
- })
- }
-
- /** Switches which injector the connector uses */
- public selectProvider(rdns: string) {
- this.provider.setCurrentProvider(rdns)
- }
-
- public getProviderInfo(rdns: string): EIP6963ProviderInfo | undefined {
- return EIP6963_PROVIDER_MANAGER.map.get(rdns)?.info
- }
-
- /** {@inheritdoc Connector.connectEagerly} */
- public async connectEagerly(): Promise {
- const cancelActivation = this.actions.startActivation()
-
- try {
- if (!this.provider) return cancelActivation()
-
- // Wallets may resolve eth_chainId and hang on eth_accounts pending user interaction, which may include changing
- // chains; they should be requested serially, with accounts first, so that the chainId can settle.
- const accounts = (await this.provider.request({ method: 'eth_accounts' })) as string[]
- if (!accounts.length) throw new Error('No accounts returned')
- const chainId = (await this.provider.request({ method: 'eth_chainId' })) as string
- this.actions.update({ chainId: parseChainId(chainId), accounts })
- } catch (error) {
- console.debug('Could not connect eagerly', error)
- // we should be able to use `cancelActivation` here, but on mobile, metamask emits a 'connect'
- // event, meaning that chainId is updated, and cancelActivation doesn't work because an intermediary
- // update has occurred, so we reset state instead
- this.actions.resetState()
- }
- }
-
- public async activate(desiredChainIdOrChainParameters?: number | AddEthereumChainParameter): Promise {
- try {
- // Wallets may resolve eth_chainId and hang on eth_accounts pending user interaction, which may include changing
- // chains; they should be requested serially, with accounts first, so that the chainId can settle.
- const accounts = (await this.provider.request({ method: 'eth_requestAccounts' })) as string[]
- const chainId = (await this.provider.request({ method: 'eth_chainId' })) as string
- const receivedChainId = parseChainId(chainId)
- const desiredChainId =
- typeof desiredChainIdOrChainParameters === 'number'
- ? desiredChainIdOrChainParameters
- : desiredChainIdOrChainParameters?.chainId
-
- // if there's no desired chain, or it's equal to the received, update
- if (!desiredChainId || receivedChainId === desiredChainId) {
- return this.actions.update({ chainId: receivedChainId, accounts })
- }
- const desiredChainIdHex = `0x${desiredChainId.toString(16)}`
-
- // if we're here, we can try to switch networks
- return this.provider
- .request({
- method: 'wallet_switchEthereumChain',
- params: [{ chainId: desiredChainIdHex }],
- })
- .catch((error: ProviderRpcError) => {
- // https://github.com/MetaMask/metamask-mobile/issues/3312#issuecomment-1065923294
- const errorCode = (error.data as any)?.originalError?.code || error.code
-
- // 4902 indicates that the chain has not been added to MetaMask and wallet_addEthereumChain needs to be called
- // https://docs.metamask.io/guide/rpc-api.html#wallet-switchethereumchain
- if (errorCode === 4902 && typeof desiredChainIdOrChainParameters !== 'number') {
- if (!this.provider) throw new Error('No provider')
- // if we're here, we can try to add a new network
- return this.provider.request({
- method: 'wallet_addEthereumChain',
- params: [{ ...desiredChainIdOrChainParameters, chainId: desiredChainIdHex }],
- })
- }
- throw error
- })
- .then(() => this.activate(desiredChainId))
- } catch (error) {
- this.onError?.(error)
- throw error
- }
- }
-}
diff --git a/src/connection/eip6963/providers.ts b/src/connection/eip6963/providers.ts
deleted file mode 100644
index b5e6d4263b..0000000000
--- a/src/connection/eip6963/providers.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import { useSyncExternalStore } from 'react'
-
-import { EIP6963AnnounceProviderEvent, EIP6963Event, EIP6963ProviderDetail } from './types'
-import { applyOverrideIcon, isCoinbaseProviderDetail, isEIP6963ProviderDetail } from './utils'
-
-// TODO(WEB-3241) - Once Mutable utility type is consolidated, use it here
-type MutableInjectedProviderMap = Map
-type InjectedProviderMap = ReadonlyMap
-
-class EIP6963ProviderManager {
- public listeners = new Set<() => void>()
- private _map: MutableInjectedProviderMap = new Map()
- private _list: EIP6963ProviderDetail[] = []
-
- constructor() {
- window.addEventListener(EIP6963Event.ANNOUNCE_PROVIDER, this.onAnnounceProvider.bind(this) as EventListener)
- window.dispatchEvent(new Event(EIP6963Event.REQUEST_PROVIDER))
- }
-
- private onAnnounceProvider(event: EIP6963AnnounceProviderEvent) {
- if (!isEIP6963ProviderDetail(event.detail)) return
-
- const detail = applyOverrideIcon(event.detail)
-
- // TODO(WEB-3225): update coinbase to display via eip6963 once we move coinbase wallet-link behind the fold
- if (isCoinbaseProviderDetail(detail)) return
-
- // Ignore duplicate announcements if we've already stored a provider detail for the given rdns
- if (this._map.get(detail.info.rdns)) {
- if (this._map.get(detail.info.rdns)?.provider !== detail.provider) {
- console.warn(
- `Duplicate provider announcement with different provider for injected wallet with rdns: ${detail.info.rdns}`,
- )
- }
- return
- }
-
- this._map.set(detail.info.rdns, detail)
- this._list = [...this._list, detail] // re-create array to trigger re-render from useInjectedProviderDetails
- this.listeners.forEach(listener => listener())
- }
-
- public get map(): InjectedProviderMap {
- return this._map
- }
-
- public get list(): readonly EIP6963ProviderDetail[] {
- return this._list
- }
-}
-
-export const EIP6963_PROVIDER_MANAGER = new EIP6963ProviderManager()
-
-function subscribeToProviderMap(listener: () => void): () => void {
- EIP6963_PROVIDER_MANAGER.listeners.add(listener)
- return () => EIP6963_PROVIDER_MANAGER.listeners.delete(listener)
-}
-
-function getProviderMapSnapshot(): readonly EIP6963ProviderDetail[] {
- return EIP6963_PROVIDER_MANAGER.list
-}
-
-/** Returns an up-to-date map of announced eip6963 providers */
-export function useInjectedProviderDetails(): readonly EIP6963ProviderDetail[] {
- return useSyncExternalStore(subscribeToProviderMap, getProviderMapSnapshot)
-}
diff --git a/src/connection/eip6963/types.ts b/src/connection/eip6963/types.ts
deleted file mode 100644
index ff811675b6..0000000000
--- a/src/connection/eip6963/types.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { Provider } from '@web3-react/types'
-
-export enum EIP6963Event {
- REQUEST_PROVIDER = 'eip6963:requestProvider',
- ANNOUNCE_PROVIDER = 'eip6963:announceProvider',
-}
-
-export interface EIP6963ProviderInfo {
- uuid: string
- name: string
- icon: string
- rdns: string
-}
-
-export interface EIP6963ProviderDetail {
- info: EIP6963ProviderInfo
- provider: Provider
-}
-
-export interface EIP6963AnnounceProviderEvent extends CustomEvent {
- type: EIP6963Event.ANNOUNCE_PROVIDER
- detail: EIP6963ProviderDetail
-}
diff --git a/src/connection/eip6963/utils.ts b/src/connection/eip6963/utils.ts
deleted file mode 100644
index d263709c0d..0000000000
--- a/src/connection/eip6963/utils.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Provider } from '@web3-react/types'
-
-import METAMASK_ICON from 'assets/wallets-connect/metamask.svg'
-import isDataURI from 'utils/isDataUri'
-
-import { EIP6963ProviderDetail } from './types'
-
-const ICON_OVERRIDE_MAP: { [rdns in string]?: string } = {
- 'io.metamask': METAMASK_ICON, // MetaMask's provided icon has no padding
-}
-
-/** Replaces an announced provider's icon with our preferred image, when applicable */
-export function applyOverrideIcon(providerDetail: EIP6963ProviderDetail) {
- const overrideIcon = ICON_OVERRIDE_MAP[providerDetail.info.rdns]
- if (!overrideIcon) return providerDetail
-
- return { ...providerDetail, info: { ...providerDetail.info, icon: overrideIcon } }
-}
-
-function isEip1193Provider(value: any): value is Provider {
- return Boolean(value.request && value.on && value.removeListener)
-}
-
-export function isEIP6963ProviderDetail(value: any): value is EIP6963ProviderDetail {
- return Boolean(
- value.provider &&
- isEip1193Provider(value.provider) &&
- value.info &&
- value.info.name &&
- value.info.uuid &&
- value.info.rdns &&
- value.info.icon &&
- isDataURI(value.info.icon),
- )
-}
-
-export function isCoinbaseProviderDetail(providerDetail: EIP6963ProviderDetail): boolean {
- return providerDetail.info.rdns === 'com.coinbase.wallet'
-}
diff --git a/src/connection/index.ts b/src/connection/index.ts
deleted file mode 100644
index ed5f4683ce..0000000000
--- a/src/connection/index.ts
+++ /dev/null
@@ -1,288 +0,0 @@
-import { BloctoConnector } from '@blocto/web3-react-connector'
-import { WalletConnect as KrystalWalletConnect } from '@kyberswap/krystal-walletconnect-v2'
-import { ChainId } from '@kyberswap/ks-sdk-core'
-import { t } from '@lingui/macro'
-import { CoinbaseWallet } from '@web3-react/coinbase-wallet'
-import { initializeConnector } from '@web3-react/core'
-import { GnosisSafe } from '@web3-react/gnosis-safe'
-import { MetaMask } from '@web3-react/metamask'
-import { Network } from '@web3-react/network'
-import { Actions, Connector } from '@web3-react/types'
-import { useSyncExternalStore } from 'react'
-import { isMobile } from 'react-device-detect'
-
-import Kyber from 'assets/svg/kyber/logo_kyberswap_with_padding.svg'
-import BLOCTO from 'assets/wallets-connect/bocto.svg'
-import COINBASE_ICON from 'assets/wallets-connect/coinbase.svg'
-import KRYSTAL from 'assets/wallets-connect/krystal.svg'
-import WALLET_CONNECT_ICON from 'assets/wallets-connect/wallet-connect.svg'
-import { SUPPORTED_NETWORKS } from 'constants/networks'
-import { NETWORKS_INFO } from 'hooks/useChainsConfig'
-
-import { WalletConnectV2, walletConnectOption } from './WalletConnectV2'
-import { EIP6963 } from './eip6963'
-import { Connection, ConnectionType, ProviderInfo } from './types'
-import { getDeprecatedInjection, getIsCoinbaseWallet, getIsInjected, getIsMetaMaskWallet } from './utils'
-
-function onError(error: Error) {
- console.debug(`web3-react error: ${error}`)
-}
-
-type InjectedConnection = Connection & {
- /** Returns a copy of the connection with metadata & activation for a specific extension/provider */
- wrap: (providerInfo: ProviderInfo) => Connection | undefined
- /** Sets which extension/provider the connector should activate */
- selectRdns(rdns: string): void
-}
-
-const [eip6963, eip6963hooks] = initializeConnector(actions => new EIP6963({ actions, onError }))
-// Since eip6963 wallet are `announced` dynamically after compile-time, but web3provider required connectors to be statically defined,
-// we define a static eip6963Connection object that provides access to all eip6963 wallets. The `wrap` function is used to obtain a copy
-// of the connection with metadata & activation for a specific extension/provider.
-export const eip6963Connection: InjectedConnection = {
- getProviderInfo: () => eip6963.provider.currentProviderDetail?.info ?? { name: t`Browser Wallet` },
- selectRdns: (rdns: string) => eip6963.selectProvider(rdns),
- connector: eip6963,
- hooks: eip6963hooks,
- type: ConnectionType.EIP_6963_INJECTED,
- shouldDisplay: () => false, // Since we display each individual eip6963 wallet, we shouldn't display this generic parent connection
- wrap(providerInfo: ProviderInfo) {
- const { rdns } = providerInfo
- if (!rdns) return undefined
- return {
- ...this,
- getProviderInfo: () => providerInfo,
- overrideActivate() {
- eip6963.selectProvider(rdns) // Select the specific eip6963 provider before activating
- return false
- },
- shouldDisplay: () => true, // Individual eip6963 wallets should always be displayed
- }
- },
-}
-
-const [web3Network, web3NetworkHooks] = initializeConnector(
- actions =>
- new Network({
- actions,
- urlMap: SUPPORTED_NETWORKS.reduce(
- (acc, id) => ({
- ...acc,
- [id]: NETWORKS_INFO[id].defaultRpcUrl,
- }),
- {},
- ),
- defaultChainId: 1,
- }),
-)
-export const networkConnection: Connection = {
- getProviderInfo: () => ({ name: 'Network' }),
- connector: web3Network,
- hooks: web3NetworkHooks,
- type: ConnectionType.NETWORK,
- shouldDisplay: () => false,
-}
-
-const getIsCoinbaseWalletBrowser = () => isMobile && getIsCoinbaseWallet()
-const getIsMetaMaskBrowser = () => isMobile && getIsMetaMaskWallet()
-const getIsInjectedMobileBrowser = () => getIsCoinbaseWalletBrowser() || getIsMetaMaskBrowser()
-
-const getShouldAdvertiseMetaMask = () =>
- !getIsMetaMaskWallet() && !isMobile && (!getIsInjected() || getIsCoinbaseWallet())
-const getIsGenericInjector = () => getIsInjected() && !getIsMetaMaskWallet() && !getIsCoinbaseWallet()
-
-const [web3Injected, web3InjectedHooks] = initializeConnector(actions => new MetaMask({ actions, onError }))
-
-export const deprecatedInjectedConnection: Connection = {
- getProviderInfo: () => getDeprecatedInjection() ?? { name: t`Browser Wallet` },
- connector: web3Injected,
- hooks: web3InjectedHooks,
- type: ConnectionType.INJECTED,
- shouldDisplay: () => getIsMetaMaskWallet() || getShouldAdvertiseMetaMask() || getIsGenericInjector(),
- // If on non-injected, non-mobile browser, prompt user to install Metamask
- overrideActivate: () => {
- if (getShouldAdvertiseMetaMask()) {
- window.open('https://metamask.io/', 'inst_metamask')
- return true
- }
- return false
- },
-}
-const [web3GnosisSafe, web3GnosisSafeHooks] = initializeConnector(actions => new GnosisSafe({ actions }))
-export const gnosisSafeConnection: Connection = {
- getProviderInfo: () => ({
- name: 'Gnosis Safe',
- icon: 'https://assets.coingecko.com/coins/images/27032/large/Artboard_1_copy_8circle-1.png?1661498342',
- }),
- connector: web3GnosisSafe,
- hooks: web3GnosisSafeHooks,
- type: ConnectionType.GNOSIS_SAFE,
- shouldDisplay: () => false,
-}
-
-const [krystalWalletConnectV2, krystalWalletConnectV2Hooks] = initializeConnector(
- actions =>
- new KrystalWalletConnect({
- actions,
- options: walletConnectOption,
- }),
-)
-
-const krystalConnection: Connection = {
- getProviderInfo: () => ({
- name: 'Krystal',
- icon: KRYSTAL,
- }),
- connector: krystalWalletConnectV2,
- hooks: krystalWalletConnectV2Hooks,
- type: ConnectionType.WALLET_CONNECT_V2,
- shouldDisplay: () => !getIsInjectedMobileBrowser(),
-}
-
-export const walletConnectV2Connection: Connection = new (class implements Connection {
- private initializer = (actions: Actions, defaultChainId = ChainId.MAINNET) =>
- new WalletConnectV2({ actions, defaultChainId, onError })
-
- type = ConnectionType.WALLET_CONNECT_V2
- getName = () => 'WalletConnect'
- getIcon = () => WALLET_CONNECT_ICON
- getProviderInfo = () => ({
- name: 'WalletConnect',
- icon: WALLET_CONNECT_ICON,
- })
- shouldDisplay = () => !getIsInjectedMobileBrowser()
-
- private activeConnector = initializeConnector(this.initializer)
- // The web3-react Provider requires referentially stable connectors, so we use proxies to allow lazy connections
- // whilst maintaining referential equality.
- private proxyConnector = new Proxy(
- {},
- {
- get: (target, p, receiver) => Reflect.get(this.activeConnector[0], p, receiver),
- getOwnPropertyDescriptor: (target, p) => Reflect.getOwnPropertyDescriptor(this.activeConnector[0], p),
- getPrototypeOf: () => WalletConnectV2.prototype,
- set: (target, p, receiver) => Reflect.set(this.activeConnector[0], p, receiver),
- },
- ) as typeof this.activeConnector[0]
- private proxyHooks = new Proxy(
- {},
- {
- get: (target, p, receiver) => {
- return () => {
- // Because our connectors are referentially stable (through proxying), we need a way to trigger React renders
- // from outside of the React lifecycle when our connector is re-initialized. This is done via 'change' events
- // with `useSyncExternalStore`:
- const hooks = useSyncExternalStore(
- onChange => {
- this.onActivate = onChange
- return () => (this.onActivate = undefined)
- },
- () => this.activeConnector[1],
- )
- return Reflect.get(hooks, p, receiver)()
- }
- },
- },
- ) as typeof this.activeConnector[1]
-
- private onActivate?: () => void
-
- overrideActivate = (chainId?: ChainId) => {
- // Always re-create the connector, so that the chainId is updated.
- this.activeConnector = initializeConnector(actions => this.initializer(actions, chainId))
- this.onActivate?.()
- return false
- }
-
- get connector() {
- return this.proxyConnector
- }
- get hooks() {
- return this.proxyHooks
- }
-})()
-
-const [web3CoinbaseWallet, web3CoinbaseWalletHooks] = initializeConnector(
- actions =>
- new CoinbaseWallet({
- actions,
- options: {
- url: NETWORKS_INFO[ChainId.MAINNET].defaultRpcUrl,
- appName: 'KyberSwap',
- appLogoUrl: Kyber,
- reloadOnDisconnect: false,
- },
- onError,
- }),
-)
-const coinbaseWalletConnection: Connection = {
- getProviderInfo: () => ({ name: 'Coinbase Wallet', icon: COINBASE_ICON }),
- connector: web3CoinbaseWallet,
- hooks: web3CoinbaseWalletHooks,
- type: ConnectionType.COINBASE_WALLET,
- shouldDisplay: () =>
- Boolean((isMobile && !getIsInjectedMobileBrowser()) || !isMobile || getIsCoinbaseWalletBrowser()),
- // If on a mobile browser that isn't the coinbase wallet browser, deeplink to the coinbase wallet app
- overrideActivate: () => {
- if (isMobile && !getIsInjectedMobileBrowser()) {
- window.open('https://go.cb-w.com/dapp?cb_url=kyberswap.com', 'cbwallet')
- return true
- }
- return false
- },
-}
-
-export const [blocto, bloctoHooks] = initializeConnector(
- actions =>
- new BloctoConnector({
- actions,
- options: { chainId: ChainId.MATIC, rpc: NETWORKS_INFO[ChainId.MATIC].defaultRpcUrl },
- }),
-)
-const bloctoConnection: Connection = {
- getProviderInfo: () => ({
- name: 'Blocto',
- icon: BLOCTO,
- }),
- connector: blocto,
- hooks: bloctoHooks,
- type: ConnectionType.WALLET_CONNECT_V2,
- shouldDisplay: () => true,
-}
-
-export const connections = [
- gnosisSafeConnection,
- deprecatedInjectedConnection,
- krystalConnection,
- walletConnectV2Connection,
- coinbaseWalletConnection,
- eip6963Connection,
- // network connector should be last in the list, as it should be the fallback if no other connector is active
- networkConnection,
- bloctoConnection,
-]
-
-export function getConnection(c: Connector | ConnectionType) {
- if (c instanceof Connector) {
- const connection = connections.find(connection => connection.connector === c)
- if (!connection) {
- throw Error('unsupported connector')
- }
- return connection
- } else {
- switch (c) {
- case ConnectionType.INJECTED:
- return deprecatedInjectedConnection
- case ConnectionType.COINBASE_WALLET:
- return coinbaseWalletConnection
- case ConnectionType.WALLET_CONNECT_V2:
- return walletConnectV2Connection
- case ConnectionType.NETWORK:
- return networkConnection
- case ConnectionType.GNOSIS_SAFE:
- return gnosisSafeConnection
- case ConnectionType.EIP_6963_INJECTED:
- return eip6963Connection
- }
- }
-}
diff --git a/src/connection/meta.ts b/src/connection/meta.ts
deleted file mode 100644
index b5fc8e1a26..0000000000
--- a/src/connection/meta.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-import { ConnectionType, RecentConnectionMeta } from './types'
-
-export const connectionMetaKey = 'connection_meta'
-
-function isRecentConnectionMeta(value: any): value is RecentConnectionMeta {
- const test: RecentConnectionMeta = { type: value.type } // reconstruct literal to ensure all required fields are present
- return Boolean(test.type && ConnectionType[test.type])
-}
-
-export function getRecentConnectionMeta(): RecentConnectionMeta | undefined {
- const value = localStorage.getItem(connectionMetaKey)
- if (!value) return
-
- try {
- const json = JSON.parse(value)
- if (isRecentConnectionMeta(json)) return json
- } catch (e) {
- console.warn(e)
- }
- // If meta is invalid or there is an error, clear it from local storage.
- setRecentConnectionMeta(undefined)
- return
-}
-
-export function setRecentConnectionMeta(meta: RecentConnectionMeta | undefined) {
- if (!meta) return localStorage.removeItem(connectionMetaKey)
-
- localStorage.setItem(connectionMetaKey, JSON.stringify(meta))
-}
diff --git a/src/connection/types.ts b/src/connection/types.ts
deleted file mode 100644
index 0f4783c87e..0000000000
--- a/src/connection/types.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-import { ChainId } from '@kyberswap/ks-sdk-core'
-import { Web3ReactHooks } from '@web3-react/core'
-import { Connector } from '@web3-react/types'
-
-export enum ConnectionType {
- INJECTED = 'INJECTED',
- COINBASE_WALLET = 'COINBASE_WALLET',
- WALLET_CONNECT_V2 = 'WALLET_CONNECT_V2',
- NETWORK = 'NETWORK',
- GNOSIS_SAFE = 'GNOSIS_SAFE',
- EIP_6963_INJECTED = 'EIP_6963_INJECTED',
-}
-
-export interface ProviderInfo {
- name: string
- icon?: string
- rdns?: string
-}
-
-export interface Connection {
- connector: Connector
- hooks: Web3ReactHooks
- type: ConnectionType
- shouldDisplay(): boolean
- /** Executes specific pre-activation steps necessary for some connection types. Returns true if the connection should not be activated. */
- overrideActivate?: (chainId?: ChainId) => boolean
- /** Optionally include isDarkMode when displaying icons that should change with current theme */
- getProviderInfo(isDarkMode?: boolean): ProviderInfo
-}
-
-export interface RecentConnectionMeta {
- type: ConnectionType
- rdns?: string // rdns usage reference: https://eips.ethereum.org/EIPS/eip-6963#provider-info
- address?: string
- ENSName?: string
- disconnected?: boolean
-}
diff --git a/src/connection/utils.ts b/src/connection/utils.ts
deleted file mode 100644
index 9c1531556f..0000000000
--- a/src/connection/utils.ts
+++ /dev/null
@@ -1,94 +0,0 @@
-import type { ExternalProvider } from '@ethersproject/providers'
-import { EIP6963ProviderDetail } from 'connection/eip6963/types'
-import { Connection, ConnectionType, ProviderInfo } from 'connection/types'
-
-import BRAVE_ICON from 'assets/wallets-connect/brave.svg'
-import METAMASK_ICON from 'assets/wallets-connect/metamask.svg'
-import RABBY_ICON from 'assets/wallets-connect/rabby.svg'
-import INJECTED_DARK_ICON from 'assets/wallets/browser-wallet-dark.svg'
-import LEDGER_ICON from 'assets/wallets/ledger.svg'
-import TRUST_WALLET_ICON from 'assets/wallets/trust.svg'
-import { getInjectedMeta } from 'utils/walletMeta'
-
-export const getIsInjected = () => Boolean(window.ethereum)
-
-type InjectedWalletKey = keyof NonNullable
-
-const InjectedWalletTable: { [key in InjectedWalletKey]?: ProviderInfo } = {
- isBraveWallet: { name: 'Brave', icon: BRAVE_ICON },
- isRabby: { name: 'Rabby', icon: RABBY_ICON },
- isTrust: { name: 'Trust Wallet', icon: TRUST_WALLET_ICON },
- isLedgerConnect: { name: 'Ledger', icon: LEDGER_ICON },
-}
-
-/** Returns boolean representing whether the app should still use the deprecated window.ethereum provider, based on eip6963 providers present */
-export function shouldUseDeprecatedInjector(providerDetails: readonly EIP6963ProviderDetail[]): boolean {
- if (!window.ethereum) return false
-
- const { name: deprecatedInjectionName } = getInjectedMeta(window.ethereum)
-
- for (const injector of providerDetails) {
- // Compares window.ethereum flags (isMetaMask) to corresponding flags on eip6963 providers
- if (getInjectedMeta(injector.provider as ExternalProvider).name === deprecatedInjectionName) {
- return false
- }
- }
-
- return true
-}
-
-/**
- * Checks the window object for the presence of a known injectors and returns the most relevant injector name and icon.
- * Returns a default metamask installation object if no wallet is detected.
- */
-export function getDeprecatedInjection(): ProviderInfo | undefined {
- for (const [key, wallet] of Object.entries(InjectedWalletTable)) {
- if (window.ethereum?.[key as keyof Window['ethereum']]) return wallet
- }
-
- // Check for MetaMask last, as some injectors will set isMetaMask = true in addition to their own, i.e. Brave browser
- if (window.ethereum?.isMetaMask) return { name: 'MetaMask', icon: METAMASK_ICON }
-
- // Prompt MetaMask install when no window.ethereum or eip6963 injection is present, or the only injection detected is coinbase (CB has separate entry point in UI)
- if (!window.ethereum || window.ethereum.isCoinbaseWallet) return { name: 'Install MetaMask', icon: METAMASK_ICON }
-
- // Use a generic icon when injection is present but no known non-coinbase wallet is detected
- return { name: 'Browser Wallet', icon: INJECTED_DARK_ICON }
-}
-
-/**
- * Returns true if `isMetaMask` is set to true and another non-metamask injector cannot be detected.
- *
- * Some non-metamask wallets set `isMetaMask` to true for dapp-compatability reasons. If one of these
- * injectors are detected, this function will return false.
- * https://wallet-docs.brave.com/ethereum/wallet-detection#compatability-with-metamask
- */
-export const getIsMetaMaskWallet = () => getDeprecatedInjection()?.name === 'MetaMask'
-
-export const getIsCoinbaseWallet = () => Boolean(window.ethereum?.isCoinbaseWallet)
-
-// https://eips.ethereum.org/EIPS/eip-1193#provider-errors
-export enum ErrorCode {
- USER_REJECTED_REQUEST = 4001,
- UNAUTHORIZED = 4100,
- UNSUPPORTED_METHOD = 4200,
- DISCONNECTED = 4900,
- CHAIN_DISCONNECTED = 4901,
-
- // https://docs.metamask.io/guide/rpc-api.html#unrestricted-methods
- CHAIN_NOT_ADDED = 4902,
- MM_ALREADY_PENDING = -32002,
-
- WC_V2_MODAL_CLOSED = 'Error: Connection request reset. Please try again.',
- WC_MODAL_CLOSED = 'Error: User closed modal',
- CB_REJECTED_REQUEST = 'Error: User denied account authorization',
-}
-
-// TODO(WEB-1973): merge this function with existing didUserReject for Swap errors
-export function didUserReject(connection: Connection, error: any): boolean {
- return (
- error?.code === ErrorCode.USER_REJECTED_REQUEST ||
- (connection.type === ConnectionType.WALLET_CONNECT_V2 && error?.toString?.() === ErrorCode.WC_V2_MODAL_CLOSED) ||
- (connection.type === ConnectionType.COINBASE_WALLET && error?.toString?.() === ErrorCode.CB_REJECTED_REQUEST)
- )
-}
diff --git a/src/constants/connectors/index.ts b/src/constants/connectors/index.ts
deleted file mode 100644
index 2db3c025e8..0000000000
--- a/src/constants/connectors/index.ts
+++ /dev/null
@@ -1,98 +0,0 @@
-import { BloctoConnector } from '@blocto/web3-react-connector'
-import { WalletConnect as KrystalWalletConnect } from '@kyberswap/krystal-walletconnect-v2'
-import { ChainId } from '@kyberswap/ks-sdk-core'
-import { OPTIONAL_EVENTS } from '@walletconnect/ethereum-provider'
-import { CoinbaseWallet } from '@web3-react/coinbase-wallet'
-import { initializeConnector } from '@web3-react/core'
-import { GnosisSafe } from '@web3-react/gnosis-safe'
-import { MetaMask } from '@web3-react/metamask'
-import { WalletConnect as WalletConnectV2 } from '@web3-react/walletconnect-v2'
-
-import WC_BG from 'assets/images/wc-bg.png'
-import Kyber from 'assets/svg/kyber/logo_kyberswap_with_padding.svg'
-import { WALLETCONNECT_PROJECT_ID } from 'constants/env'
-import {
- NETWORKS_INFO,
- WALLET_CONNECT_OPTIONAL_CHAIN_IDS,
- WALLET_CONNECT_REQUIRED_CHAIN_IDS,
- WALLET_CONNECT_SUPPORTED_CHAIN_IDS,
-} from 'constants/networks'
-
-export const [injected, injectedHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [rabby, rabbyHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [zerion, zerionHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [krystal, krystalHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [metaMask, metamaskHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [gnosisSafe, gnosisSafeHooks] = initializeConnector(actions => new GnosisSafe({ actions }))
-export const [coin98, coin98Hooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [brave, braveHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [trust, trustHooks] = initializeConnector(actions => new MetaMask({ actions }))
-export const [blocto, bloctoHooks] = initializeConnector(
- actions =>
- new BloctoConnector({
- actions,
- options: { chainId: ChainId.MATIC, rpc: NETWORKS_INFO[ChainId.MATIC].defaultRpcUrl },
- }),
-)
-export const [bloctoInject, bloctoInjectHooks] = initializeConnector(actions => new MetaMask({ actions }))
-
-const walletconnectConfig = {
- options: {
- projectId: WALLETCONNECT_PROJECT_ID,
- chains: WALLET_CONNECT_REQUIRED_CHAIN_IDS,
- optionalChains: WALLET_CONNECT_OPTIONAL_CHAIN_IDS,
- showQrModal: true,
- methods: ['eth_sendTransaction', 'personal_sign', 'eth_signTypedData_v4'],
- optionalMethods: ['eth_signTypedData', 'eth_sign'],
- // optionalMethods: OPTIONAL_METHODS,
- optionalEvents: OPTIONAL_EVENTS,
- rpcMap: WALLET_CONNECT_SUPPORTED_CHAIN_IDS.reduce((acc, cur) => {
- acc[cur] = NETWORKS_INFO[cur].defaultRpcUrl
- return acc
- }, {} as { [key in ChainId]: string }),
- qrModalOptions: {
- chainImages: undefined,
- themeMode: 'dark' as const,
- themeVariables: {
- '--w3m-z-index': '1000',
- '--w3m-logo-image-url': Kyber,
- '--w3m-background-image-url': WC_BG,
- '--w3m-accent-color': '#31CB9E',
- '--w3m-accent-fill-color': '#222222',
- '--w3m-color-bg-1': '#0F0F0F',
- } as any,
- },
- metadata: {
- name: 'KyberSwap',
- description: document.title,
- url: window.location.origin,
- icons: ['https://kyberswap.com/favicon.svg'],
- },
- },
-}
-
-export const [walletConnectV2, walletConnectV2Hooks] = initializeConnector(
- actions =>
- new WalletConnectV2({
- actions,
- ...walletconnectConfig,
- }),
-)
-export const [krystalWalletConnectV2, krystalWalletConnectV2Hooks] = initializeConnector(
- actions =>
- new KrystalWalletConnect({
- actions,
- ...walletconnectConfig,
- }),
-)
-
-export const [coinbaseWallet, coinbaseWalletHooks] = initializeConnector(
- actions =>
- new CoinbaseWallet({
- actions,
- options: {
- url: NETWORKS_INFO[ChainId.MAINNET].defaultRpcUrl,
- appName: 'KyberSwap',
- },
- }),
-)
diff --git a/src/constants/connectors/utils.ts b/src/constants/connectors/utils.ts
index 6639fdb5a9..170e05bedd 100644
--- a/src/constants/connectors/utils.ts
+++ b/src/constants/connectors/utils.ts
@@ -1,95 +1,5 @@
-import { captureMessage } from '@sentry/react'
-
-import { ENV_LEVEL } from 'constants/env'
-import { ENV_TYPE } from 'constants/type'
-import checkForBraveBrowser from 'utils/checkForBraveBrowser'
-
-if (ENV_LEVEL == ENV_TYPE.ADPR) {
- setTimeout(() => {
- if (getIsGenericInjector()) {
- const params = {
- level: 'warning',
- extra: {
- detector: {
- isMetaMaskWallet: getIsMetaMaskWallet(),
- isCoinbaseWallet: getIsCoinbaseWallet(),
- isBraveWallet: getIsBraveWallet(),
- isC98Wallet: getIsC98Wallet(),
- isRabbyWallet: getIsRabbyWallet(),
- isBloctoWallet: getIsBloctoWallet(),
- isKrystalWallet: getIsKrystalWallet(),
- isTrustWallet: getIsTrustWallet(),
- isZerion: getIsZerionWallet(),
- isGenericInjector: getIsGenericInjector(),
- },
- 'window.ethereum': window.ethereum,
- 'window.web3': window.web3,
- 'window.coin98': window.coin98,
- 'window.rabby': window.rabby,
- 'window.okxwallet': window.okxwallet,
- 'window.coinbaseWalletExtension': window.coinbaseWalletExtension,
- 'navigator.brave': navigator.brave,
- },
- } as const
- captureMessage('Unknown injected window.ethereum', params)
- console.info('Capturing injected window.ethereum', { params })
- }
- }, 5000)
-}
-
export const getIsInjected = () => Boolean(window.ethereum)
-const allNonMetamaskFlags = [
- 'isRabby',
- 'isBraveWallet',
- 'isTrust',
- 'isTrustWallet',
- 'isLedgerConnect',
- 'isCoin98',
- 'isKrystal',
- 'isKrystalWallet',
- 'isPhantom',
- 'isBlocto',
- 'isZerion',
-] as const
-export const getIsMetaMaskWallet = () =>
- Boolean(window.ethereum?.isMetaMask && !allNonMetamaskFlags.some(flag => window.ethereum?.[flag]))
-
-export const getIsOkxWallet = () => Boolean(window.okxwallet)
-
-export const getIsRabbyWallet = () => Boolean(window.rabby)
-
-export const getIsKrystalWallet = () => Boolean(window.ethereum?.isKrystalWallet || window.ethereum?.isKrystal)
-
-export const getIsCoinbaseWallet = () =>
- Boolean(
- (window.ethereum?.isCoinbaseWallet || window.ethereum?.providers?.some(p => p?.isCoinbaseWallet)) &&
- !getIsTrustWallet(),
- )
-
-export const getIsBraveWallet = () => Boolean(checkForBraveBrowser() && window.ethereum?.isBraveWallet)
-
-export const getIsBloctoWallet = () => Boolean(window.ethereum?.isBlocto)
-
-export const getIsC98Wallet = () => Boolean(window.ethereum?.isCoin98 && window.coin98)
-
-export const getIsZerionWallet = () => Boolean(window.ethereum?.isZerion)
-
-export const getIsTrustWallet = () =>
- Boolean((window.ethereum?.isTrustWallet || window.ethereum?.isTrust) && !getIsKrystalWallet())
-
-export const getIsGenericInjector = () =>
- getIsInjected() &&
- !getIsMetaMaskWallet() &&
- !getIsCoinbaseWallet() &&
- !getIsBraveWallet() &&
- !getIsC98Wallet() &&
- !getIsRabbyWallet() &&
- !getIsBloctoWallet() &&
- !getIsKrystalWallet() &&
- !getIsZerionWallet() &&
- !getIsTrustWallet()
-
// https://eips.ethereum.org/EIPS/eip-1193#provider-errors
export enum ErrorCode {
USER_REJECTED_REQUEST = 4001,
diff --git a/src/constants/networks/arbitrum.ts b/src/constants/networks/arbitrum.ts
index a0e0d35252..608d1d0ace 100644
--- a/src/constants/networks/arbitrum.ts
+++ b/src/constants/networks/arbitrum.ts
@@ -27,7 +27,7 @@ const arbitrumInfo: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 14,
},
defaultRpcUrl: 'https://arbitrum.kyberengineering.io',
multicall: '0x80C7DD17B01855a6D2347444a0FCC36136a314de', // must use this for arbitrum to get exactly block number instead of L1 block number
diff --git a/src/constants/networks/base.ts b/src/constants/networks/base.ts
index 045429cb1f..dca86ea34e 100644
--- a/src/constants/networks/base.ts
+++ b/src/constants/networks/base.ts
@@ -27,7 +27,7 @@ const base: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 14,
},
defaultRpcUrl: 'https://mainnet.base.org',
multicall: '0xcA11bde05977b3631167028862bE2a173976CA11',
diff --git a/src/constants/networks/linea.ts b/src/constants/networks/linea.ts
index cc95d336d8..b1e705fcb9 100644
--- a/src/constants/networks/linea.ts
+++ b/src/constants/networks/linea.ts
@@ -27,7 +27,7 @@ const lineaInfo: NetworkInfo = {
name: 'LineaETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 15,
},
defaultRpcUrl: 'https://rpc.linea.build',
multicall: '0xcA11bde05977b3631167028862bE2a173976CA11',
diff --git a/src/constants/networks/optimism.ts b/src/constants/networks/optimism.ts
index c3ad5a8afa..34b444c050 100644
--- a/src/constants/networks/optimism.ts
+++ b/src/constants/networks/optimism.ts
@@ -27,7 +27,7 @@ const optimismInfo: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 14,
},
defaultRpcUrl: 'https://optimism.kyberengineering.io',
multicall: '0xD9bfE9979e9CA4b2fe84bA5d4Cf963bBcB376974',
diff --git a/src/constants/networks/scroll.ts b/src/constants/networks/scroll.ts
index acf49daba1..3aed661f3c 100644
--- a/src/constants/networks/scroll.ts
+++ b/src/constants/networks/scroll.ts
@@ -27,7 +27,7 @@ const scroll: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 15,
},
defaultRpcUrl: 'https://rpc.scroll.io',
multicall: '0xcA11bde05977b3631167028862bE2a173976CA11',
diff --git a/src/constants/networks/zkevm.ts b/src/constants/networks/zkevm.ts
index 2c3a45159d..ef55d6a7b6 100644
--- a/src/constants/networks/zkevm.ts
+++ b/src/constants/networks/zkevm.ts
@@ -28,7 +28,7 @@ const zkEvm: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 15,
},
defaultRpcUrl: 'https://zkevm-rpc.com',
multicall: '0xcA11bde05977b3631167028862bE2a173976CA11',
diff --git a/src/constants/networks/zksync.ts b/src/constants/networks/zksync.ts
index c0d16d2cd8..0930c2ef82 100644
--- a/src/constants/networks/zksync.ts
+++ b/src/constants/networks/zksync.ts
@@ -29,7 +29,7 @@ const zkSyncInfo: NetworkInfo = {
name: 'ETH',
logo: EthereumLogo,
decimal: 18,
- minForGas: 10 ** 16,
+ minForGas: 10 ** 15,
},
defaultRpcUrl: 'https://mainnet.era.zksync.io',
multicall: '0xF9cda624FBC7e059355ce98a31693d299FACd963',
diff --git a/src/constants/wallets.ts b/src/constants/wallets.ts
index ae01f9d5a3..2422220684 100644
--- a/src/constants/wallets.ts
+++ b/src/constants/wallets.ts
@@ -1,63 +1,3 @@
-import SafeAppsSDK from '@safe-global/safe-apps-sdk'
-import { Web3ReactHooks } from '@web3-react/core'
-import { Connector } from '@web3-react/types'
-import { isMobile } from 'react-device-detect'
-
-import BLOCTO from 'assets/wallets-connect/bocto.svg'
-import BRAVE from 'assets/wallets-connect/brave.svg'
-import COIN98 from 'assets/wallets-connect/coin98.svg'
-import COINBASE from 'assets/wallets-connect/coinbase.svg'
-import KRYSTAL from 'assets/wallets-connect/krystal.svg'
-import METAMASK from 'assets/wallets-connect/metamask.svg'
-import RABBY from 'assets/wallets-connect/rabby.svg'
-import SAFE from 'assets/wallets-connect/safe.svg'
-import TRUSTWALLET from 'assets/wallets-connect/trust-wallet.svg'
-import WALLETCONNECT from 'assets/wallets-connect/wallet-connect.svg'
-import ZERION from 'assets/wallets-connect/zerion.svg'
-import INJECTED_DARK_ICON from 'assets/wallets/browser-wallet-dark.svg'
-import {
- blocto,
- bloctoHooks,
- bloctoInject,
- bloctoInjectHooks,
- brave,
- braveHooks,
- coin98,
- coin98Hooks,
- coinbaseWallet,
- coinbaseWalletHooks,
- gnosisSafe,
- gnosisSafeHooks,
- injected,
- injectedHooks,
- krystal,
- krystalHooks,
- krystalWalletConnectV2,
- krystalWalletConnectV2Hooks,
- metaMask,
- metamaskHooks,
- rabby,
- rabbyHooks,
- trust,
- trustHooks,
- walletConnectV2,
- walletConnectV2Hooks,
- zerion,
- zerionHooks,
-} from 'constants/connectors'
-import {
- getIsBloctoWallet,
- getIsBraveWallet,
- getIsC98Wallet,
- getIsCoinbaseWallet,
- getIsGenericInjector,
- getIsKrystalWallet,
- getIsMetaMaskWallet,
- getIsRabbyWallet,
- getIsTrustWallet,
- getIsZerionWallet,
-} from 'constants/connectors/utils'
-
export enum WalletReadyState {
/**
* User-installable wallets can typically be detected by scanning for an API
@@ -78,210 +18,6 @@ export enum WalletReadyState {
Unsupported = 'Unsupported',
}
-const detectGenericInjected = (): WalletReadyState => {
- // used in mobile dapp
- if (getIsGenericInjector()) return WalletReadyState.Installed
- return WalletReadyState.Unsupported
-}
-
-const detectMetamaskInjected = (): WalletReadyState => {
- if (getIsMetaMaskWallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-const detectBlocto = (): WalletReadyState => {
- if (getIsBloctoWallet()) return WalletReadyState.Unsupported
- return WalletReadyState.Installed
-}
-
-const detectBloctoInjected = (): WalletReadyState => {
- if (getIsBloctoWallet()) return WalletReadyState.Installed
- return WalletReadyState.Unsupported
-}
-
-let isSafe = false
-const appsSdk = new SafeAppsSDK({})
-;(async () => {
- try {
- const result = await appsSdk.safe.getEnvironmentInfo()
- if (result) isSafe = true
- } catch (error) {}
-})()
-const detectSafe = (): WalletReadyState => {
- return isSafe ? WalletReadyState.Installed : WalletReadyState.NotDetected
-}
-
-const detectRabbyInjected = (): WalletReadyState => {
- if (getIsRabbyWallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-const detectZerionInjected = (): WalletReadyState => {
- if (getIsZerionWallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-const detectKrystalInjected = (): WalletReadyState => {
- if (getIsKrystalWallet()) return WalletReadyState.Installed
- return WalletReadyState.Unsupported
-}
-
-const detectKrystalWC = (): WalletReadyState => {
- if (!getIsKrystalWallet()) return WalletReadyState.Installed
- return WalletReadyState.Unsupported
-}
-
-const detectBraveInjected = (): WalletReadyState => {
- //todo known issue: fail connect on mobile solana
- if (getIsBraveWallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-const detectCoin98Injected = (): WalletReadyState => {
- if (getIsC98Wallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-const detectCoinbaseInjected = (): WalletReadyState => {
- const detectCoinbase = (): WalletReadyState => {
- if (getIsCoinbaseWallet()) return WalletReadyState.Installed
- // in NotDetected case, Coinbase show install link itself
- if (window.coinbaseWalletExtension && !isMobile) return WalletReadyState.Loadable
- return WalletReadyState.NotDetected
- }
- const result = detectCoinbase()
- return result
-}
-
-const detectTrustWalletInjected = (): WalletReadyState => {
- if (getIsTrustWallet()) return WalletReadyState.Installed
- return WalletReadyState.NotDetected
-}
-
-export interface WalletInfo {
- name: string
- icon: string
- installLink?: string
- href?: string
- connector: Connector
- hooks: Web3ReactHooks
- readyState: () => WalletReadyState
-}
-
-export const SUPPORTED_WALLETS = {
- INJECTED: {
- connector: injected,
- hooks: injectedHooks,
- name: 'Browser Wallet',
- icon: INJECTED_DARK_ICON,
- readyState: detectGenericInjected,
- } as WalletInfo,
- KRYSTAL: {
- connector: krystal,
- hooks: krystalHooks,
- name: 'Krystal',
- icon: KRYSTAL,
- installLink: 'https://wallet.krystal.app',
- readyState: detectKrystalInjected,
- } as WalletInfo,
- RABBY: {
- connector: rabby,
- hooks: rabbyHooks,
- name: 'Rabby',
- icon: RABBY,
- installLink: 'https://rabby.io',
- readyState: detectRabbyInjected,
- } as WalletInfo,
- ZERION: {
- connector: zerion,
- hooks: zerionHooks,
- name: 'Zerion',
- icon: ZERION,
- installLink: 'https://zerion.io',
- readyState: detectZerionInjected,
- } as WalletInfo,
- TRUST_WALLET: {
- connector: trust,
- hooks: trustHooks,
- name: 'Trust Wallet',
- icon: TRUSTWALLET,
- installLink: 'https://trustwallet.com/vi/deeplink',
- readyState: detectTrustWalletInjected,
- } as WalletInfo,
- BRAVE: {
- connector: brave,
- hooks: braveHooks,
- name: 'Brave Wallet',
- icon: BRAVE,
- installLink: 'https://brave.com/download',
- readyState: detectBraveInjected,
- } as WalletInfo,
- SAFE: {
- connector: gnosisSafe,
- hooks: gnosisSafeHooks,
- name: 'Safe',
- icon: SAFE,
- installLink: 'https://safe.global/wallet',
- readyState: detectSafe,
- } as WalletInfo,
- COINBASE: {
- connector: coinbaseWallet,
- hooks: coinbaseWalletHooks,
- name: 'Coinbase',
- icon: COINBASE,
- installLink: 'https://www.coinbase.com/wallet',
- readyState: detectCoinbaseInjected,
- } as WalletInfo,
- COIN98: {
- connector: coin98,
- hooks: coin98Hooks,
- name: 'Coin98',
- icon: COIN98,
- installLink: 'https://wallet.coin98.com/',
- readyState: detectCoin98Injected,
- } as WalletInfo,
- BLOCTO_INJECTED: {
- connector: bloctoInject,
- hooks: bloctoInjectHooks,
- name: 'Blocto',
- icon: BLOCTO,
- readyState: detectBloctoInjected,
- } as WalletInfo,
- KRYSTAL_WC: {
- connector: krystalWalletConnectV2,
- hooks: krystalWalletConnectV2Hooks,
- name: 'Krystal',
- icon: KRYSTAL,
- readyState: detectKrystalWC,
- } as WalletInfo,
- WALLET_CONNECT: {
- connector: walletConnectV2,
- hooks: walletConnectV2Hooks,
- name: 'WalletConnect',
- icon: WALLETCONNECT,
- readyState: () => WalletReadyState.Installed,
- } as WalletInfo,
- BLOCTO: {
- connector: blocto,
- hooks: bloctoHooks,
- name: 'Blocto',
- icon: BLOCTO,
- installLink: 'https://www.blocto.io/download',
- readyState: detectBlocto,
- } as WalletInfo,
- METAMASK: {
- connector: metaMask,
- hooks: metamaskHooks,
- name: 'MetaMask',
- icon: METAMASK,
- installLink: 'https://metamask.io/download',
- readyState: detectMetamaskInjected,
- } as WalletInfo,
-} as const
-export type SUPPORTED_WALLET = keyof typeof SUPPORTED_WALLETS
-
-export const connections = Object.values(SUPPORTED_WALLETS).filter(wallet => 'connector' in wallet) as WalletInfo[]
-
export const INJECTED_KEYS = [
'COIN98',
'BRAVE',
diff --git a/src/hooks/index.ts b/src/hooks/index.ts
index 4e54dbbee9..013c7630a9 100644
--- a/src/hooks/index.ts
+++ b/src/hooks/index.ts
@@ -1,8 +1,6 @@
import { Web3Provider } from '@ethersproject/providers'
import { ChainId } from '@kyberswap/ks-sdk-core'
-import { useWeb3React as useWeb3ReactCore } from '@web3-react/core'
-import { Connector } from '@web3-react/types'
-import { getConnection } from 'connection'
+import { useEffect, useMemo, useRef } from 'react'
import { useSelector } from 'react-redux'
import { useSearchParams } from 'react-router-dom'
import blackjackApi from 'services/blackjack'
@@ -10,95 +8,98 @@ import blackjackApi from 'services/blackjack'
import { MOCK_ACCOUNT_EVM } from 'constants/env'
import { isSupportedChainId } from 'constants/networks'
import { NetworkInfo } from 'constants/networks/type'
+import { useAccount } from 'hooks/useAccount'
import { NETWORKS_INFO } from 'hooks/useChainsConfig'
+import { useEthersProvider } from 'hooks/useEthersProvider'
import store, { AppState } from 'state'
export function useActiveWeb3React(): {
chainId: ChainId
account?: string
- walletKey: string | undefined
networkInfo: NetworkInfo
isWrongNetwork: boolean
+ walletKey: string
} {
const [searchParams] = useSearchParams()
const rawChainIdState = useSelector(state => state.user.chainId) || ChainId.MAINNET
const isWrongNetwork = !isSupportedChainId(rawChainIdState)
+ const { connector } = useAccount()
const chainIdState = isWrongNetwork ? ChainId.MAINNET : rawChainIdState
- /**Hook for EVM infos */
- const { connector: connectedConnectorEVM, account: evmAccount } = useWeb3React()
- const walletKey = getConnection(connectedConnectorEVM).getProviderInfo().name
+ /**Hook for EVM infos */
+ const { account: evmAccount } = useWeb3React()
const address = evmAccount ?? undefined
const mockAccountParam = searchParams.get('account')
const account = mockAccountParam || MOCK_ACCOUNT_EVM || address
+ const walletKey = connector?.id ?? ''
+
return {
chainId: chainIdState,
account,
- walletKey,
networkInfo: NETWORKS_INFO[chainIdState],
isWrongNetwork,
+ walletKey,
}
}
-type Web3React = {
- connector: Connector
- library: Web3Provider | undefined
- chainId: number | undefined
- account: string | undefined
- active: boolean
-}
+export function useWeb3React() {
+ const account = useAccount()
+ const kyberChainId = useSelector(state => state.user.chainId) || ChainId.MAINNET
+ const provider = useEthersProvider({ chainId: account.chainId })
-const wrapProvider = (provider: Web3Provider, account: string, wrongChain = false): Web3Provider =>
- new Proxy(provider, {
- get(target, prop) {
- if (prop === 'send') {
- return async (...params: any[]) => {
- if (params[0] === 'eth_chainId') {
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
- // @ts-ignore
- return target[prop](...params)
- }
- if (wrongChain)
- throw new Error('Chain is mismatched. Please make sure your wallet is switched to expected chain')
+ const latestChainIdRef = useRef(account.chainId)
- const res = await store.dispatch(blackjackApi.endpoints.checkBlackjack.initiate(account))
- if (res?.data?.blacklisted) throw new Error('There was an error with your transaction.')
+ useEffect(() => {
+ latestChainIdRef.current = account.chainId
+ }, [account.chainId])
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
- // @ts-ignore
- return target[prop](...params)
- }
- }
- return target[prop as unknown as keyof Web3Provider]
- },
- })
-const cacheProvider = new WeakMap()
-const useWrappedProvider = () => {
- const kyberChainId = useSelector(state => state.user.chainId) || ChainId.MAINNET
- const { provider, account, chainId } = useWeb3ReactCore()
+ const wrappedProvider = useMemo(
+ () =>
+ provider
+ ? new Proxy(provider, {
+ get(target, prop) {
+ if (prop === 'send') {
+ return async (...params: any[]) => {
+ if (params[0] === 'eth_chainId') {
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ return target[prop](...params)
+ }
- if (!provider) return undefined
- let wrappedProvider = cacheProvider.get(provider)
- if (chainId !== kyberChainId) {
- wrappedProvider = account ? wrapProvider(provider, account, true) : provider
- } else if (!wrappedProvider) {
- wrappedProvider = account ? wrapProvider(provider, account, false) : provider
- cacheProvider.set(provider, wrappedProvider)
- }
- return wrappedProvider
-}
+ if (kyberChainId !== account.chainId) {
+ throw new Error(
+ 'Your chain is mismatched, please make sure your wallet is switch to the expected chain.',
+ )
+ }
-export function useWeb3React(): Web3React {
- const { connector, chainId, account, isActive: active } = useWeb3ReactCore()
- const provider = useWrappedProvider()
+ const res = await store.dispatch(
+ blackjackApi.endpoints.checkBlackjack.initiate(account.address || ''),
+ )
+ if (res?.data?.blacklisted) throw new Error('There was an error with your transaction.')
- return {
- connector,
- library: provider,
- chainId,
- account,
- active,
- }
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ return target[prop](...params)
+ }
+ }
+ return target[prop as unknown as keyof Web3Provider]
+ },
+ })
+ : provider,
+ [account.chainId, account.address, kyberChainId, provider],
+ )
+
+ return useMemo(
+ () => ({
+ account: account.address,
+ chainId: account.chainId ?? ChainId.MAINNET,
+ provider: wrappedProvider,
+ library: wrappedProvider,
+ connector: account.connector,
+ active: account.address !== undefined,
+ }),
+ [account.address, account.chainId, account.connector, wrappedProvider],
+ )
}
diff --git a/src/hooks/useAccount.ts b/src/hooks/useAccount.ts
new file mode 100644
index 0000000000..bca3c08db3
--- /dev/null
+++ b/src/hooks/useAccount.ts
@@ -0,0 +1,27 @@
+import { ChainId } from '@kyberswap/ks-sdk-core'
+import { useMemo } from 'react'
+import { UseAccountReturnType as UseAccountReturnTypeWagmi, useAccount as useAccountWagmi, useChainId } from 'wagmi'
+
+import { SUPPORTED_NETWORKS } from 'constants/networks'
+
+type ReplaceChainId = T extends { chainId: number }
+ ? Omit & { chainId: ChainId | undefined }
+ : T extends { chainId: number | undefined }
+ ? Omit & { chainId: ChainId | undefined }
+ : T
+
+type UseAccountReturnType = ReplaceChainId
+
+export function useAccount(): UseAccountReturnType {
+ const { chainId, ...rest } = useAccountWagmi()
+ const fallbackChainId = useChainId()
+ const supportedChainId = SUPPORTED_NETWORKS.includes(chainId) ? chainId : fallbackChainId
+
+ return useMemo(
+ () => ({
+ ...rest,
+ chainId: supportedChainId,
+ }),
+ [rest, supportedChainId],
+ )
+}
diff --git a/src/hooks/useEthersProvider.ts b/src/hooks/useEthersProvider.ts
new file mode 100644
index 0000000000..fe4d5d8102
--- /dev/null
+++ b/src/hooks/useEthersProvider.ts
@@ -0,0 +1,54 @@
+import { Web3Provider } from '@ethersproject/providers'
+import { useMemo } from 'react'
+import type { Chain, Client, Transport } from 'viem'
+import { useClient, useConnectorClient } from 'wagmi'
+
+import { useAccount } from 'hooks/useAccount'
+
+const providers = new WeakMap()
+
+function clientToProvider(client?: Client, chainId?: number) {
+ if (!client) {
+ return undefined
+ }
+ const { chain, transport } = client
+
+ const ensAddress = chain.contracts?.ensRegistry?.address
+ const network = chain
+ ? {
+ chainId: chain.id,
+ name: chain.name,
+ ensAddress,
+ }
+ : chainId
+ ? { chainId, name: 'Unsupported' }
+ : undefined
+ if (!network) {
+ return undefined
+ }
+
+ if (providers?.has(client)) {
+ return providers.get(client)
+ } else {
+ const provider = new Web3Provider(transport, network)
+ providers.set(client, provider)
+ return provider
+ }
+}
+
+/** Hook to convert a viem Client to an ethers.js Provider with a default disconnected Network fallback. */
+export function useEthersProvider({ chainId }: { chainId?: number } = {}) {
+ const account = useAccount()
+ const { data: client } = useConnectorClient({ chainId: chainId as any })
+ const disconnectedClient = useClient({ chainId: chainId as any })
+ return useMemo(
+ () => clientToProvider(account.chainId !== chainId ? disconnectedClient : client ?? disconnectedClient, chainId),
+ [account.chainId, chainId, client, disconnectedClient],
+ )
+}
+
+/** Hook to convert a connected viem Client to an ethers.js Provider. */
+export function useEthersWeb3Provider({ chainId }: { chainId?: number } = {}) {
+ const { data: client } = useConnectorClient({ chainId: chainId as any })
+ return useMemo(() => clientToProvider(client, chainId), [chainId, client])
+}
diff --git a/src/hooks/useSwapCallbackV3.ts b/src/hooks/useSwapCallbackV3.ts
index ae18ff332a..42f8bc2031 100644
--- a/src/hooks/useSwapCallbackV3.ts
+++ b/src/hooks/useSwapCallbackV3.ts
@@ -1,6 +1,5 @@
import { BigNumber } from '@ethersproject/bignumber'
import { TransactionResponse } from '@ethersproject/providers'
-import { getConnection } from 'connection'
import { useCallback } from 'react'
import { useSwapFormContext } from 'components/SwapForm/SwapFormContext'
@@ -21,7 +20,7 @@ import { ErrorName } from 'utils/sentry'
const useSwapCallbackV3 = (isPermitSwap?: boolean) => {
const { account, chainId } = useActiveWeb3React()
const { library, connector } = useWeb3React()
- const { name: walletKey } = getConnection(connector).getProviderInfo()
+ const walletKey = connector?.name
const { recipient: recipientAddressOrName, routeSummary } = useSwapFormContext()
const { parsedAmountIn: inputAmount, parsedAmountOut: outputAmount, priceImpact } = routeSummary || {}
diff --git a/src/hooks/useSwapV2Callback.ts b/src/hooks/useSwapV2Callback.ts
index f13eee1d93..00d6adf819 100644
--- a/src/hooks/useSwapV2Callback.ts
+++ b/src/hooks/useSwapV2Callback.ts
@@ -1,6 +1,5 @@
import { BigNumber } from '@ethersproject/bignumber'
import { TransactionResponse } from '@ethersproject/providers'
-import { getConnection } from 'connection'
import { useCallback, useMemo } from 'react'
import { ZERO_ADDRESS } from 'constants/index'
@@ -29,7 +28,6 @@ export function useSwapV2Callback(
): { state: SwapCallbackState; callback: null | (() => Promise); error: string | null } {
const { account, chainId } = useActiveWeb3React()
const { library, connector } = useWeb3React()
- const { name: walletKey } = getConnection(connector).getProviderInfo()
const { recipient: recipientAddressOrName } = useSwapState()
@@ -118,7 +116,7 @@ export function useSwapV2Callback(
contractAddress: trade.routerAddress,
encodedData: trade.encodedSwapData,
value,
- sentryInfo: { name: ErrorName.SwapError, wallet: walletKey },
+ sentryInfo: { name: ErrorName.SwapError, wallet: connector?.name },
chainId,
})
if (response?.hash === undefined) throw new Error('sendTransaction returned undefined.')
@@ -140,6 +138,6 @@ export function useSwapV2Callback(
library,
addTransactionWithType,
extractSwapData,
- walletKey,
+ connector?.name,
])
}
diff --git a/src/hooks/web3/useChangeNetwork.ts b/src/hooks/web3/useChangeNetwork.ts
index 28d5bda6c0..00e443416b 100644
--- a/src/hooks/web3/useChangeNetwork.ts
+++ b/src/hooks/web3/useChangeNetwork.ts
@@ -1,11 +1,10 @@
import { ChainId } from '@kyberswap/ks-sdk-core'
import { t } from '@lingui/macro'
import { captureException } from '@sentry/react'
-import { AddEthereumChainParameter } from '@web3-react/types'
import { useCallback } from 'react'
+import { useSwitchChain } from 'wagmi'
import { NotificationType } from 'components/Announcement/type'
-import { krystalWalletConnectV2, walletConnectV2 } from 'constants/connectors'
import { didUserReject } from 'constants/connectors/utils'
import { NETWORKS_INFO } from 'constants/networks'
import { useActiveWeb3React, useWeb3React } from 'hooks'
@@ -15,18 +14,20 @@ import { updateChainId } from 'state/user/actions'
import { friendlyError } from 'utils/errorMessage'
import { wait } from 'utils/retry'
-import { useLazyKyberswapConfig } from '../useKyberSwapConfig'
+//import { useLazyKyberswapConfig } from '../useKyberSwapConfig'
let latestChainId: number | undefined
export function useChangeNetwork() {
- const { walletKey, isWrongNetwork, chainId: kyberChainId } = useActiveWeb3React()
- const { chainId, connector, library, active } = useWeb3React()
- const fetchKyberswapConfig = useLazyKyberswapConfig()
+ const { isWrongNetwork, chainId: kyberChainId } = useActiveWeb3React()
+ const { chainId, connector, active } = useWeb3React()
+ //const fetchKyberswapConfig = useLazyKyberswapConfig()
const dispatch = useAppDispatch()
const notify = useNotify()
latestChainId = chainId
+ const { switchChain } = useSwitchChain()
+
const changeNetworkHandler = useCallback(
(desiredChainId: ChainId, successCallback?: () => void) => {
dispatch(updateChainId(desiredChainId))
@@ -85,11 +86,11 @@ export function useChangeNetwork() {
message = t`Your wallet not support chain ${name}`
} else {
message = error?.message || message
- const e = new Error(`[Activate chain] ${walletKey} ${message}`)
+ const e = new Error(`[Activate chain] ${connector?.id} ${message}`)
e.name = 'Activate chain error'
captureException(e, {
level: 'warning',
- extra: { error, wallet: walletKey, chainId, desiredChainId, message },
+ extra: { error, wallet: connector?.id, chainId, desiredChainId, message },
})
}
notify({
@@ -99,132 +100,26 @@ export function useChangeNetwork() {
})
customFailureCallback?.(error)
},
- [chainId, notify, walletKey],
+ [chainId, connector, notify],
)
const addNewNetwork = useCallback(
- async (
- desiredChainId: ChainId,
- customRpc?: string,
- customTexts?: {
+ (
+ _desiredChainId: ChainId,
+ _customRpc?: string,
+ _customTexts?: {
name?: string
title?: string
rejected?: string
default?: string
},
- customSuccessCallback?: () => void,
- customFailureCallback?: (error: Error) => void,
- waitUtilUpdatedChainId = false,
+ _customSuccessCallback?: () => void,
+ _customFailureCallback?: (error: Error) => void,
+ _waitUtilUpdatedChainId = false,
) => {
- const wrappedSuccessCallback = () => {
- successCallback(desiredChainId, waitUtilUpdatedChainId, customSuccessCallback)
- }
-
- const { rpc } = customRpc ? { rpc: customRpc } : await fetchKyberswapConfig(desiredChainId)
- const addChainParameter = {
- chainId: '0x' + desiredChainId.toString(16),
- rpcUrls: [rpc],
- chainName: customTexts?.name || NETWORKS_INFO[desiredChainId].name,
- nativeCurrency: {
- name: NETWORKS_INFO[desiredChainId].nativeToken.name,
- symbol: NETWORKS_INFO[desiredChainId].nativeToken.symbol,
- decimals: 18 as const,
- },
- blockExplorerUrls: [NETWORKS_INFO[desiredChainId].etherscanUrl],
- }
- const addChainParameterWeb3: AddEthereumChainParameter = {
- ...addChainParameter,
- chainId: desiredChainId,
- }
-
- enum Solution {
- web3_react = 'web3_react',
- provider_request = 'provider_request',
- }
- const solutions = {
- [Solution.web3_react]: async () => await connector.activate(addChainParameterWeb3),
- [Solution.provider_request]: async () => {
- const activeProvider = library?.provider ?? window.ethereum
- if (activeProvider?.request) {
- await activeProvider.request({
- method: 'wallet_addEthereumChain',
- params: [addChainParameter],
- })
- } else {
- throw new Error('empty request function')
- }
- },
- }
-
- const solutionPrefer: readonly Solution[] = (() => {
- if (walletKey === 'Krystal') {
- // Krystal break when call by web3-react .activate
- return [Solution.provider_request]
- } else if (walletKey === 'Blocto') {
- // Blocto break when call by provider.request
- return [Solution.web3_react]
- }
- return [Solution.provider_request, Solution.web3_react]
- })()
-
- const errors: Error[] = []
- for (let i = 0; i < solutionPrefer.length; i++) {
- try {
- console.info('[Add network] start:', {
- wallet: walletKey,
- solution: solutionPrefer[i],
- addChainParameter,
- })
- await solutions[solutionPrefer[i]]()
- console.info('[Add network] success:', {
- wallet: walletKey,
- solution: solutionPrefer[i],
- addChainParameter,
- })
- wrappedSuccessCallback()
- return
- } catch (error) {
- console.error(
- '[Add network] error:',
- JSON.stringify(
- {
- wallet: walletKey,
- desiredChainId,
- solution: solutionPrefer[i],
- message: friendlyError(error),
- error,
- addChainParameter,
- didUserReject: didUserReject(error),
- },
- null,
- 2,
- ),
- )
-
- if (didUserReject(error)) {
- failureCallback(desiredChainId, error, customFailureCallback, customTexts)
- return
- }
- errors.push(error)
- }
- }
-
- failureCallback(desiredChainId, errors.at(-1), customFailureCallback, customTexts)
- const e = new Error(`[Add network] ${walletKey} ${friendlyError(errors.at(-1) || '')}`)
- e.name = 'Add new network Error'
- e.stack = ''
- captureException(e, {
- level: 'error',
- extra: {
- wallet: walletKey,
- desiredChainId,
- addChainParameterWeb3,
- friendlyMessages: errors.map(friendlyError),
- errors,
- },
- })
+ //
},
- [library?.provider, failureCallback, fetchKyberswapConfig, successCallback, walletKey, connector],
+ [],
)
const changeNetwork = useCallback(
@@ -233,7 +128,7 @@ export function useChangeNetwork() {
customSuccessCallback?: () => void,
customFailureCallback?: (error: Error) => void,
waitUtilUpdatedChainId = false, //todo: force all to true
- isAddNetworkIfPossible = true,
+ //isAddNetworkIfPossible = true,
) => {
const wrappedSuccessCallback = () =>
successCallback(desiredChainId, waitUtilUpdatedChainId, customSuccessCallback)
@@ -249,55 +144,41 @@ export function useChangeNetwork() {
return
}
- try {
- console.info('[Switch network] start:', { desiredChainId })
- await connector.activate(desiredChainId)
- console.info('[Switch network] success:', { desiredChainId })
- changeNetworkHandler(desiredChainId, wrappedSuccessCallback)
- } catch (error) {
- if (kyberChainId !== chainId && chainId) dispatch(updateChainId(chainId))
- console.error(
- '[Switch network] error:',
- JSON.stringify({ desiredChainId, error, didUserReject: didUserReject(error) }, null, 2),
- )
-
- // walletconnect v2 not support add network, so halt execution here
- if (didUserReject(error) || connector === walletConnectV2 || connector === krystalWalletConnectV2) {
- failureCallback(desiredChainId, error, customFailureCallback)
- return
- }
- if (isAddNetworkIfPossible) {
- addNewNetwork(
- desiredChainId,
- undefined,
- undefined,
- () =>
- changeNetwork(
- desiredChainId,
- customSuccessCallback,
- customFailureCallback,
- waitUtilUpdatedChainId,
- false,
- ),
- customFailureCallback,
- waitUtilUpdatedChainId,
- )
- } else {
- failureCallback(desiredChainId, error, customFailureCallback)
- }
- }
+ console.info('[Switch network] start:', { desiredChainId })
+ switchChain(
+ { chainId: desiredChainId as any },
+ {
+ onSuccess: () => {
+ console.info('[Switch network] success:', { desiredChainId })
+ changeNetworkHandler(desiredChainId, wrappedSuccessCallback)
+ },
+ onError: error => {
+ if (kyberChainId !== chainId && chainId) dispatch(updateChainId(chainId))
+ console.error(
+ '[Switch network] error:',
+ JSON.stringify({ desiredChainId, error, didUserReject: didUserReject(error) }, null, 2),
+ )
+ if (
+ didUserReject(error)
+ //|| connector === walletConnectV2 || connector === krystalWalletConnectV2
+ ) {
+ failureCallback(desiredChainId, error, customFailureCallback)
+ return
+ }
+ },
+ },
+ )
},
[
chainId,
kyberChainId,
active,
- connector,
dispatch,
changeNetworkHandler,
successCallback,
failureCallback,
- addNewNetwork,
isWrongNetwork,
+ switchChain,
],
)
diff --git a/src/hooks/web3/useDisconnectWallet.ts b/src/hooks/web3/useDisconnectWallet.ts
index 0dbc57d64c..11f97132f5 100644
--- a/src/hooks/web3/useDisconnectWallet.ts
+++ b/src/hooks/web3/useDisconnectWallet.ts
@@ -1,18 +1,15 @@
import { useCallback } from 'react'
+import { useDisconnect as useDisconnectWagmi } from 'wagmi'
-import { useWeb3React } from 'hooks'
-import { useAppDispatch } from 'state/hooks'
-import { setRecentConnectionDisconnected } from 'state/user/actions'
+function useDisconnectWallet() {
+ const { connectors, disconnect } = useDisconnectWagmi()
+ const disconnectAll = useCallback(() => {
+ connectors.forEach(connector => {
+ disconnect({ connector })
+ })
+ }, [connectors, disconnect])
-const useDisconnectWallet = () => {
- const dispatch = useAppDispatch()
- const { connector } = useWeb3React()
- const disconnect = useCallback(() => {
- connector.deactivate?.()
- connector.resetState()
- dispatch(setRecentConnectionDisconnected())
- }, [connector, dispatch])
-
- return disconnect
+ return disconnectAll
}
+
export default useDisconnectWallet
diff --git a/src/hooks/web3/useWalletSupportedChains.ts b/src/hooks/web3/useWalletSupportedChains.ts
index 29401ad779..92388c3b40 100644
--- a/src/hooks/web3/useWalletSupportedChains.ts
+++ b/src/hooks/web3/useWalletSupportedChains.ts
@@ -1,34 +1,22 @@
import { ChainId } from '@kyberswap/ks-sdk-core'
-import { WalletConnect as WalletConnectV2 } from '@web3-react/walletconnect-v2'
-import { blocto, bloctoInject, gnosisSafe, krystalWalletConnectV2, walletConnectV2 } from 'constants/connectors'
-import { BLOCTO_SUPPORTED_NETWORKS, SUPPORTED_NETWORKS } from 'constants/networks'
+import { SUPPORTED_NETWORKS } from 'constants/networks'
import { useWeb3React } from 'hooks'
-function getChainsFromEIP155Accounts(accounts?: string[]): ChainId[] {
- if (!accounts) return []
- return accounts
- .map(account => {
- const splitAccount = account.split(':')
- return splitAccount[1] ? parseInt(splitAccount[1]) : undefined
- })
- .filter(x => x !== undefined) as ChainId[]
-}
-
export function useWalletSupportedChains(): ChainId[] {
- const { connector, chainId } = useWeb3React()
+ const { connector } = useWeb3React()
switch (connector) {
- case walletConnectV2:
- case krystalWalletConnectV2:
- return [
- ...getChainsFromEIP155Accounts((connector as WalletConnectV2).provider?.session?.namespaces?.eip155?.accounts),
- ]
- case gnosisSafe:
- return chainId ? [chainId] : SUPPORTED_NETWORKS
- case blocto:
- case bloctoInject:
- return BLOCTO_SUPPORTED_NETWORKS
+ //case walletConnectV2:
+ //case krystalWalletConnectV2:
+ // return [
+ // ...getChainsFromEIP155Accounts((connector as WalletConnectV2).provider?.session?.namespaces?.eip155?.accounts),
+ // ]
+ //case gnosisSafe:
+ // return chainId ? [chainId] : SUPPORTED_NETWORKS
+ //case blocto:
+ //case bloctoInject:
+ // return BLOCTO_SUPPORTED_NETWORKS
default:
return SUPPORTED_NETWORKS
}
diff --git a/src/index.tsx b/src/index.tsx
index 453c961fc3..a6245e7069 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,30 +1,26 @@
/* eslint-disable prettier/prettier */
// Ordering is intentional and must be preserved: styling, polyfilling, tracing, and then functionality.
-import 'inter-ui'
-import 'react-loading-skeleton/dist/skeleton.css'
-import 'swiper/swiper-bundle.min.css'
-import 'swiper/swiper.min.css'
-import 'aos/dist/aos.css'
-import 'connection/eagerlyConnect'
-
import * as Sentry from '@sentry/react'
import { BrowserTracing } from '@sentry/tracing'
-import { Web3ReactHooks, Web3ReactProvider } from '@web3-react/core'
-import { Connector } from '@web3-react/types'
import '@zkmelabs/widget/dist/style.css'
import AOS from 'aos'
-import { connections } from 'connection'
+import 'aos/dist/aos.css'
import dayjs from 'dayjs'
import duration from 'dayjs/plugin/duration'
import relativeTime from 'dayjs/plugin/relativeTime'
import utc from 'dayjs/plugin/utc'
+import 'inter-ui'
import mixpanel from 'mixpanel-browser'
-import { StrictMode, useEffect, useMemo } from 'react'
+import { StrictMode, useEffect } from 'react'
import { createRoot } from 'react-dom/client'
import TagManager from 'react-gtm-module'
+import 'react-loading-skeleton/dist/skeleton.css'
import { Provider } from 'react-redux'
import { BrowserRouter } from 'react-router-dom'
+import 'swiper/swiper-bundle.min.css'
+import 'swiper/swiper.min.css'
+import Web3Provider from 'components/Web3Provider'
import { ENV_LEVEL, GTM_ID, MIXPANEL_PROJECT_TOKEN, SENTRY_DNS, TAG } from 'constants/env'
import { ENV_TYPE } from 'constants/type'
@@ -106,24 +102,19 @@ window.recaptchaOptions = {
const ReactApp = () => {
useEffect(hideLoader, [])
- const connectors: [Connector, Web3ReactHooks][] = useMemo(
- () => connections.map(({ hooks, connector }) => [connector, hooks]),
- [],
- )
-
return (
-
+
-
+
diff --git a/src/locales/en-US.po b/src/locales/en-US.po
index 47e6adb0a0..6e6a57c546 100644
--- a/src/locales/en-US.po
+++ b/src/locales/en-US.po
@@ -14,16 +14,16 @@ msgstr ""
"Plural-Forms: \n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr "Projects"
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr "Position {tokenId} does not exist on {0}"
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr "Position {tokenId} does not exist on {0}"
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr "You need to first allow KyberSwap smart contracts to use your {inSymbol}
#~ msgstr "Connected with {0}"
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr "{numOfClosedPositions} Closed"
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr "{numOfClosedPositions} Closed"
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr "Updated"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr "ENDED"
+#~ msgid "ENDED"
+#~ msgstr "ENDED"
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr "Open Orders"
#~ msgstr "Deposit your liquidity positions (i.e. your NFT tokens) into the farming contract. Then stake them into the farm"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr "Disclaimer: This should not be considered as financial advice."
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr "Disclaimer: This should not be considered as financial advice."
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr "You have {numberOutRangePos} out-of-range position(s)."
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr "You have {numberOutRangePos} out-of-range position(s)."
#~ msgstr "Adjust the advanced settings for your trades such as the max slippage."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,30 +122,27 @@ msgstr "loading..."
msgid "Will cost more gas fees."
msgstr "Will cost more gas fees."
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr "Increase Liquidity"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr "Type"
+#~ msgid "Type"
+#~ msgstr "Type"
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
msgstr "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr "RATE"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr "Custom Ranges"
+#~ msgid "Custom Ranges"
+#~ msgstr "Custom Ranges"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -197,16 +194,16 @@ msgid "Token Info"
msgstr "Token Info"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr "Your position will not earn fees until the market price of the pool moves into your price range."
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr "Discover"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr "Funding Rate on CEX"
+#~ msgid "Funding Rate on CEX"
+#~ msgstr "Funding Rate on CEX"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -214,12 +211,17 @@ msgid "Back in range"
msgstr "Back in range"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr "Volume"
+#~ msgid "Volume"
+#~ msgstr "Volume"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
-msgstr "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr "Pool Stats"
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
+msgstr "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
msgid "{amountIn} {srcTokenSymbol} on {srcChainName} has been successfully swapped to {amountOut} {dstTokenSymbol} on {dstChainName}"
@@ -246,8 +248,8 @@ msgid "Service Fee"
msgstr "Service Fee"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr "Top Trending Tokens"
+#~ msgid "Top Trending Tokens"
+#~ msgstr "Top Trending Tokens"
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -290,13 +292,13 @@ msgid "Placing order"
msgstr "Placing order"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr "DMM {0}/{1} LP Tokens"
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr "DMM {0}/{1} LP Tokens"
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -308,25 +310,29 @@ msgid "Loading token..."
msgstr "Loading token..."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr "For everyone"
+#~ msgid "For everyone"
+#~ msgstr "For everyone"
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr "Input amount is not valid."
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr "Removed Liquidity"
+#~ msgid "Removed Liquidity"
+#~ msgstr "Removed Liquidity"
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr "Claimed Rewards"
+#~ msgid "Claimed Rewards"
+#~ msgstr "Claimed Rewards"
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr "Loading tokens"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -342,8 +348,8 @@ msgid "Position {0}"
msgstr "Position {0}"
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr "This email address is already registered."
+#~ msgid "This email address is already registered."
+#~ msgstr "This email address is already registered."
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -353,6 +359,10 @@ msgstr "This email address is already registered."
#~ msgid "Recent Transactions"
#~ msgstr "Recent Transactions"
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr "Elastic is not supported on Blast. Please switch to other chains"
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr "Add liquidity to our Classic Pools & earn trading fees automatically."
@@ -435,8 +445,8 @@ msgstr "Download Image"
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr "Your position will be 100% composed of {quoteSymbol} at this price"
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -473,21 +483,25 @@ msgstr "Your Share of Pool"
#~ msgstr "In order to use KyberSwap on {0}, you must change the network in your wallet."
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr "Discover new opportunities."
+#~ msgid "Discover new opportunities."
+#~ msgstr "Discover new opportunities."
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr "{min} {formatM} ago"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
-msgstr "Supply owned"
+#~ msgid "Supply owned"
+#~ msgstr "Supply owned"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism - Active Liquidity Time"
#~ msgstr "Farming Mechanism - Active Liquidity Time"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
+msgstr "L1 fee that pays for rolls up cost"
+
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Point multiplier is in effect."
#~ msgstr "Point multiplier is in effect."
@@ -506,16 +520,16 @@ msgstr "Transaction stuck? <0><1>See here1>0>"
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr "Lowest Gas"
+#~ msgid "Lowest Gas"
+#~ msgstr "Lowest Gas"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr "Full range positions may earn less fees than concentrated positions."
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr "{0}% Locked"
+#~ msgid "{0}% Locked"
+#~ msgstr "{0}% Locked"
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -528,16 +542,16 @@ msgstr "Dismiss"
#~ msgstr "You can only swap all WSOL to SOL"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr "My Earnings"
+#~ msgid "My Earnings"
+#~ msgstr "My Earnings"
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -547,16 +561,20 @@ msgstr "No"
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr "No Farms found"
+#~ msgid "No Farms found"
+#~ msgstr "No Farms found"
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr "Best for very stable pairs"
+#~ msgid "Best for very stable pairs"
+#~ msgstr "Best for very stable pairs"
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -579,16 +597,16 @@ msgid "Add Custom RPC Endpoint"
msgstr "Add Custom RPC Endpoint"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr "Watchlists name exist!"
+#~ msgid "Watchlists name exist!"
+#~ msgstr "Watchlists name exist!"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr "Total Harvested Rewards"
+#~ msgid "Total Harvested Rewards"
+#~ msgstr "Total Harvested Rewards"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -608,6 +626,10 @@ msgstr "Estimated Processing Time"
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr "Wallet Address:"
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
@@ -620,31 +642,29 @@ msgstr "There was an issue while confirming your price and minimum amount receiv
msgid "All-Time High"
msgstr "All-Time High"
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr "Ended"
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr "Add liquidity instantly using only one token!"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr "Unknown error"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr "MY LIQUIDITY ↑"
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr "MY LIQUIDITY ↑"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -664,8 +684,8 @@ msgstr "Keep this profile active whenever you switch wallets."
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr "Token Price"
+#~ msgid "Token Price"
+#~ msgstr "Token Price"
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -677,7 +697,6 @@ msgstr "Token Price"
msgid "goes"
msgstr "goes"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -685,8 +704,12 @@ msgid "Free"
msgstr "Free"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
-msgstr "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
+msgstr "Switch to Polygon"
#: src/components/ProAmm/ProAmmFee.tsx
msgid "By collecting, you will receive 100% of your fee earnings"
@@ -696,8 +719,13 @@ msgstr "By collecting, you will receive 100% of your fee earnings"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
-msgstr "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr "KyberScore"
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
+msgstr "TOTAL AMOUNT (USD)"
#: src/pages/Bridge/SwapForm.tsx
#: src/pages/CrossChain/useValidateInput.ts
@@ -705,8 +733,8 @@ msgid "Cannot get token info. Please try again later."
msgstr "Cannot get token info. Please try again later."
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -726,6 +754,10 @@ msgstr "Degen Mode"
#~ msgid "Other Details"
#~ msgstr "Other Details"
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr "{feeApr}% LP Fee"
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -749,6 +781,10 @@ msgstr "Send me an alert when on"
msgid "The owner of this liquidity position is {0}"
msgstr "The owner of this liquidity position is {0}"
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr "Pay network fees in the token of your choice."
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr "Share your referral link and start earning commission instantly!"
@@ -756,8 +792,8 @@ msgstr "The owner of this liquidity position is {0}"
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr "Est. Gas Fee"
+#~ msgid "Est. Gas Fee"
+#~ msgstr "Est. Gas Fee"
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -777,8 +813,8 @@ msgstr "mins"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -788,13 +824,17 @@ msgstr "KyberSwap‘s Terms of Use"
msgid "Welcome to KyberSwap!"
msgstr "Welcome to KyberSwap!"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr "Your wallet has been verified. Please select the grant option."
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr "Initializing with {walletName}..."
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr "Initializing with {walletName}..."
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -833,15 +873,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr "Suitable for low-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~100%. You can earn fees even if the price goes up by 50% or goes down by 50%."
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr "Total KNC migrated from KNCL"
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -872,13 +911,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~2%. You can earn fees even if the price goes up by 1% or goes down by 1%."
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr "Harvest All"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -886,8 +926,8 @@ msgstr "and receive"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -895,8 +935,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr "Your fees are being automatically compounded so you earn more"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr "Average"
+#~ msgid "Average"
+#~ msgstr "Average"
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -906,6 +946,11 @@ msgstr "Average"
#~ msgid "Trending"
#~ msgstr "Trending"
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr "({0})"
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
@@ -940,8 +985,8 @@ msgstr "Read more about the fees {hereLink}"
#~ msgstr "Rules"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -973,8 +1018,8 @@ msgstr "My Share Of Pool"
#~ msgstr "Earn More with Concentrated Liquidity"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1001,8 +1046,8 @@ msgstr "Are you sure you want to cancel {0} limit orders?"
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr "Rewards"
+#~ msgid "Rewards"
+#~ msgstr "Rewards"
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1021,6 +1066,10 @@ msgstr "You have successfully transferred {postFix}"
msgid "View more"
msgstr "View more"
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr "Reverted {increasedFilledPercent}"
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr "Currently, there is no campaign."
@@ -1057,10 +1106,7 @@ msgstr "Loading ..."
msgid "All-Time Low"
msgstr "All-Time Low"
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr "Search by token name or pool address"
@@ -1068,21 +1114,21 @@ msgstr "Search by token name or pool address"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr "Ended at"
+#~ msgid "Ended at"
+#~ msgstr "Ended at"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr "Ending In"
+#~ msgid "Ending In"
+#~ msgstr "Ending In"
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr "The amount you save compared to <0>{0}0>."
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr "The price of this pool is out of your selected range. Your position is not earning fees"
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1100,8 +1146,8 @@ msgstr "Your selected price is {styledPercent} better than the current market pr
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr "Currently there are no Farms."
+#~ msgid "Currently there are no Farms."
+#~ msgstr "Currently there are no Farms."
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1111,8 +1157,8 @@ msgid "Pooled {0}"
msgstr "Pooled {0}"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1120,8 +1166,8 @@ msgid "Cross-Chain"
msgstr "Cross-Chain"
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr "Supply Anyway"
+#~ msgid "Supply Anyway"
+#~ msgstr "Supply Anyway"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1147,8 +1193,8 @@ msgstr "Manage your pools."
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr "Harvest"
+#~ msgid "Harvest"
+#~ msgstr "Harvest"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1175,8 +1221,6 @@ msgid "You haven't made any transfers yet"
msgstr "You haven't made any transfers yet"
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr "Market Cap"
@@ -1189,8 +1233,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr "You had successfully import this profile. You are now signed in with this guest account"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr "Farming Contract"
+#~ msgid "Farming Contract"
+#~ msgstr "Farming Contract"
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1199,8 +1243,8 @@ msgstr "Estimated network fee for your transaction"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr "Insufficient Liquidity"
+#~ msgid "Insufficient Liquidity"
+#~ msgstr "Insufficient Liquidity"
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1219,24 +1263,24 @@ msgid "Forgot your Passcode?"
msgstr "Forgot your Passcode?"
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr "Referral code is invalid."
+#~ msgid "Referral code is invalid."
+#~ msgstr "Referral code is invalid."
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr "Many"
+#~ msgid "Many"
+#~ msgstr "Many"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr "Sign in"
+#~ msgid "Sign in"
+#~ msgstr "Sign in"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1247,8 +1291,8 @@ msgstr "No add / remove transactions in the last 24 hrs"
#~ msgstr "You will need to unstake your liquidity first before withdrawing it back to your wallet"
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr "Set a Custom Range"
+#~ msgid "Set a Custom Range"
+#~ msgstr "Set a Custom Range"
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1271,16 +1315,14 @@ msgstr "Trading Volume (24H)"
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr "Invalid amount"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr "There was an error. Please try again later."
+#~ msgid "There was an error. Please try again later."
+#~ msgstr "There was an error. Please try again later."
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1291,8 +1333,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr "Insufficient {0} balance for order execution."
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1300,8 +1342,8 @@ msgstr "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr "Your liquidity"
+#~ msgid "Your liquidity"
+#~ msgstr "Your liquidity"
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1317,8 +1359,8 @@ msgid "Import Pool"
msgstr "Import Pool"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr "Top Bullish Tokens"
+#~ msgid "Top Bullish Tokens"
+#~ msgstr "Top Bullish Tokens"
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1333,22 +1375,30 @@ msgstr "Transaction Fee"
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr "You can only favorite up to three token pairs"
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr "My Order(s)"
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
-msgstr "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
+msgstr "Maintenance"
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Current Price in the market."
msgstr "Current Price in the market."
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr "Perpetual Markets"
+#~ msgid "Perpetual Markets"
+#~ msgstr "Perpetual Markets"
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr "Start Earning"
+#~ msgid "Start Earning"
+#~ msgstr "Start Earning"
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1369,8 +1419,8 @@ msgid "Navigating My Pools Tutorial"
msgstr "Navigating My Pools Tutorial"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr "Technical Analysis"
+#~ msgid "Technical Analysis"
+#~ msgstr "Technical Analysis"
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1385,8 +1435,8 @@ msgid "Tokens"
msgstr "Tokens"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr "TVL ↑"
+#~ msgid "TVL ↑"
+#~ msgstr "TVL ↑"
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1413,12 +1463,12 @@ msgstr "Voting power"
#~ msgstr "Some farms have a target trading volume (represented by the progress bar) that your liquidity positions need to fully unlock to start earning maximum farming rewards. This target volume ensures that your liquidity positions are supporting the pools trading volume.<0/><1/>Based on the progress of your target volume, you will still earn partial farming rewards. But once you fully unlock your target volume, your liquidity position(s) will start earning maximum rewards. Adjusting your liquidity position(s) staked in the farm will recalculate this volume target."
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr "Markets"
+#~ msgid "Markets"
+#~ msgstr "Markets"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1426,8 +1476,8 @@ msgid "Are you sure?"
msgstr "Are you sure?"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr "Withdraw your liquidity"
+#~ msgid "Withdraw your liquidity"
+#~ msgstr "Withdraw your liquidity"
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1438,8 +1488,8 @@ msgstr "{hour} {temp} ago"
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr "Current phase will end in"
+#~ msgid "Current phase will end in"
+#~ msgstr "Current phase will end in"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1451,8 +1501,8 @@ msgstr "Current phase will end in"
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr "New phase will start in"
+#~ msgid "New phase will start in"
+#~ msgstr "New phase will start in"
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1468,15 +1518,13 @@ msgstr "New phase will start in"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr "Inflow"
+#~ msgid "Inflow"
+#~ msgstr "Inflow"
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr "Switch Network"
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1485,8 +1533,8 @@ msgstr "Liquidity"
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr "APR"
+#~ msgid "APR"
+#~ msgstr "APR"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1531,16 +1579,16 @@ msgstr "Failed"
#~ msgstr "Your Liquidity Balance"
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr "Wallet Analytics"
+#~ msgid "Wallet Analytics"
+#~ msgstr "Wallet Analytics"
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr "Actions"
+#~ msgid "Actions"
+#~ msgstr "Actions"
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1555,12 +1603,12 @@ msgstr "The requested account and/or method has not been authorized by the user.
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr "Staked TVL"
+#~ msgid "Staked TVL"
+#~ msgstr "Staked TVL"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr "Committed to Security"
+#~ msgid "Committed to Security"
+#~ msgstr "Committed to Security"
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1571,14 +1619,14 @@ msgstr "Committed to Security"
#~ msgstr "Price Impact High"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr "KyberAI"
+#~ msgid "KyberAI"
+#~ msgstr "KyberAI"
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1606,27 +1654,21 @@ msgstr "Confirm"
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr "Fees (24H)"
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr "Avg APR"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr "Top CEX Positive Netflow"
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr "Top CEX Positive Netflow"
#: src/components/PositionPreview/index.tsx
#: src/components/PositionPreview/index.tsx
@@ -1648,14 +1690,13 @@ msgid "the price of"
msgstr "the price of"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr "Finding it hard to figure out <0>when is the right time to ape?0>"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr "STAKED TVL ↓"
+#~ msgid "STAKED TVL ↓"
+#~ msgstr "STAKED TVL ↓"
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1674,8 +1715,8 @@ msgid "Not selected option"
msgstr "Not selected option"
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr "Harvest Error"
+#~ msgid "Harvest Error"
+#~ msgstr "Harvest Error"
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1702,8 +1743,8 @@ msgstr "KIPs"
#~ msgstr "Swap your tokens at the best rates. No limits"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr "Harvest your farming rewards whenever you want."
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr "Harvest your farming rewards whenever you want."
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1738,12 +1779,12 @@ msgid "Gas Abuser"
msgstr "Gas Abuser"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr "View Less Stats"
+#~ msgid "View Less Stats"
+#~ msgstr "View Less Stats"
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr "Static Farms"
+#~ msgid "Static Farms"
+#~ msgstr "Static Farms"
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1758,8 +1799,8 @@ msgstr "Buy Crypto"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr "Token Pair | Fee"
+#~ msgid "Token Pair | Fee"
+#~ msgstr "Token Pair | Fee"
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1771,8 +1812,8 @@ msgid "Custom"
msgstr "Custom"
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr "Please connect your wallet to view your affected position(s)."
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr "Please connect your wallet to view your affected position(s)."
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1831,8 +1872,8 @@ msgstr "CREATED | EXPIRY"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr "Not Eligible"
+#~ msgid "Not Eligible"
+#~ msgstr "Not Eligible"
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1863,8 +1904,8 @@ msgstr "ChainId: {chainId} not supported"
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr "Explore"
+#~ msgid "Explore"
+#~ msgstr "Explore"
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1906,12 +1947,12 @@ msgstr "Insufficient {symbol} balance"
#~ msgstr "Advanced Mode"
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1939,8 +1980,8 @@ msgid "Claim your rewards"
msgstr "Claim your rewards"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr "After harvesting, your rewards will unlock linearly over the indicated time period"
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1966,6 +2007,10 @@ msgstr "No liquidity found. Check out our <0>Pools.0>"
msgid "KyberSwap Guide"
msgstr "KyberSwap Guide"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr "Total Amount (USDC)"
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
@@ -1976,16 +2021,16 @@ msgstr "Once you add {0}, the order will be executed at <0>{1}%0> below the ma
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr "Analyze Wallet"
+#~ msgid "Analyze Wallet"
+#~ msgstr "Analyze Wallet"
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr "Address is not valid"
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr "Here is an update on the tokens in your watchlist:"
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr "Here is an update on the tokens in your watchlist:"
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -1995,8 +2040,8 @@ msgid "You will receive at least this amount or your transaction will revert."
msgstr "You will receive at least this amount or your transaction will revert."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2004,12 +2049,12 @@ msgstr "Profile updated failed"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr "This transaction is higher than >$100k"
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr "This transaction is higher than >$100k"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr "Turn on to display live chart."
+#~ msgid "Turn on to display live chart."
+#~ msgstr "Turn on to display live chart."
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2017,13 +2062,17 @@ msgstr "Turn on to display live chart."
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr "Trending Soon"
+#~ msgid "Trending Soon"
+#~ msgstr "Trending Soon"
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr "You haven't made any eligible transactions yet."
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
#~ msgid "Search"
#~ msgstr "Search"
@@ -2049,23 +2098,23 @@ msgstr "profile <0> {0}0>"
#~ msgstr "Are you sure you want to unsubscribe? You will stop receiving notifications on latest tokens that could be trending soon!"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr "Create New Pool"
+#~ msgid "Create New Pool"
+#~ msgstr "Create New Pool"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr "The price is deviating quite a lot from that market price, please be careful!"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr "Your fees are being automatically compounded so you earn more."
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr "Your fees are being automatically compounded so you earn more."
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr "My Liquidity Positions"
+#~ msgid "My Liquidity Positions"
+#~ msgstr "My Liquidity Positions"
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2080,16 +2129,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr "Note: Your currently existing order is {percent}% filled"
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr "Participate in our campaigns"
+#~ msgid "Participate in our campaigns"
+#~ msgstr "Participate in our campaigns"
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
-msgstr "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr "<0>Slippage0><1> {msg}1>"
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
+msgstr "Open Limit Orders"
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr "Market Price"
+#~ msgid "Market Price"
+#~ msgstr "Market Price"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2108,12 +2161,12 @@ msgstr "Your Voting Power"
#~ msgstr "Powered by <0>TrueSight0>, our AI prediction model"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr "KyberAI Banner"
+#~ msgid "KyberAI Banner"
+#~ msgstr "KyberAI Banner"
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2121,8 +2174,6 @@ msgstr "KyberAI Banner"
msgid "Insufficient {s} balance"
msgstr "Insufficient {s} balance"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr "You will receive"
@@ -2132,12 +2183,16 @@ msgid "Wrap Error"
msgstr "Wrap Error"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
-msgstr "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr "Amplified Liquidity Pools"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
+msgstr "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2191,8 +2246,8 @@ msgid "Total Balance"
msgstr "Total Balance"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr "Funding Rate on Centralized Exchanges."
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr "Funding Rate on Centralized Exchanges."
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2207,8 +2262,8 @@ msgstr "Your output amount is invalid."
#~ msgstr "Please type the word 'confirm' below to enable <0>Degen Mode0>"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr "FEES ↓"
+#~ msgid "FEES ↓"
+#~ msgstr "FEES ↓"
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2220,25 +2275,25 @@ msgstr "FEES ↓"
#~ msgstr "{0} FEES EARNED"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr "Collapse All"
+#~ msgid "Collapse All"
+#~ msgstr "Collapse All"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr "Copy token address"
+#~ msgid "Copy token address"
+#~ msgstr "Copy token address"
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr "Explore with <0>KyberAI0> here!"
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr "Explore with <0>KyberAI0> here!"
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr "Active Alerts"
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2256,8 +2311,8 @@ msgstr "Total Available Rewards = Total Available Voting Rewards + Total Availab
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr "My Watchlist"
+#~ msgid "My Watchlist"
+#~ msgstr "My Watchlist"
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2268,12 +2323,12 @@ msgid "Delegate Address"
msgstr "Delegate Address"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr "We adjust trading fees dynamically based on market conditions to give you the best returns."
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr "Earning Charts"
+#~ msgid "Earning Charts"
+#~ msgstr "Earning Charts"
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2284,21 +2339,21 @@ msgstr "Earning Charts"
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr "Fees (24h)"
+#~ msgid "Fees (24h)"
+#~ msgstr "Fees (24h)"
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr "Go to My Pool"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr "VOLUME ↑"
+#~ msgid "VOLUME ↑"
+#~ msgstr "VOLUME ↑"
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr "Aggregator"
+#~ msgid "Aggregator"
+#~ msgstr "Aggregator"
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2307,8 +2362,8 @@ msgstr "Unable to get the market price"
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr "Share this pool with your friends!"
+#~ msgid "Share this pool with your friends!"
+#~ msgstr "Share this pool with your friends!"
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2316,12 +2371,12 @@ msgid "Faucet"
msgstr "Faucet"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr "Don't have a wallet? <0>Get started here0>"
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr "Don't have a wallet? <0>Get started here0>"
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr "Increase Amount"
+#~ msgid "Increase Amount"
+#~ msgstr "Increase Amount"
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2344,8 +2399,8 @@ msgid "Whitelisted Function"
msgstr "Whitelisted Function"
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2379,12 +2434,12 @@ msgstr "Turn this on to make trades with very high price impact or to set very h
#~ msgstr "Note: Once your order is filled, you will receive {0} ({1})"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr "Error occur, please try again."
+#~ msgid "Error occur, please try again."
+#~ msgstr "Error occur, please try again."
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2435,8 +2490,8 @@ msgstr "Max"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr "Bearish"
+#~ msgid "Bearish"
+#~ msgstr "Bearish"
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2465,7 +2520,6 @@ msgid "Gasless Edit"
msgstr "Gasless Edit"
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr "Estimated network fee for your transaction."
@@ -2473,8 +2527,6 @@ msgstr "Estimated network fee for your transaction."
msgid "Est. Market Price"
msgstr "Est. Market Price"
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2496,13 +2548,13 @@ msgstr "Cancelled Orders"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr "Exchange"
+#~ msgid "Exchange"
+#~ msgstr "Exchange"
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr "Estimated return based on yearly fees of the pool."
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr "Estimated return based on yearly fees of the pool."
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2517,8 +2569,8 @@ msgstr "Permission needed"
#~ msgstr "This verification link has expired.<0/> Please return to your inbox to verify with the latest verification link. <1/>Or <2>resend2> to have a new email sent to your registered address. <3/><4/><5>Contact Us5> for further assistance"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr "Amount held"
+#~ msgid "Amount held"
+#~ msgstr "Amount held"
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2552,10 +2604,14 @@ msgstr "Amount held"
#~ msgid "Connect Wallet"
#~ msgstr "Connect Wallet"
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr "Gas Token"
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr "Once a farm has ended, you will continue to receive returns through LP Fees."
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2610,8 +2666,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr "Total Liquidity Amount<0/>(USD)"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr "Disclaimer: The information here should not be treated as any form of financial advice."
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2626,8 +2682,8 @@ msgstr "Disclaimer: The information here should not be treated as any form of fi
#~ msgstr "Pools | AMP"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr "Support & Resistance Levels"
+#~ msgid "Support & Resistance Levels"
+#~ msgstr "Support & Resistance Levels"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2683,8 +2739,8 @@ msgstr "Your voting power is calculated by [Your Staked KNC] / [Total Staked KNC
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr "Current price"
+#~ msgid "Current price"
+#~ msgstr "Current price"
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2692,16 +2748,14 @@ msgstr "Unsupported by your wallet."
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr "Add Liquidity Error"
+#~ msgid "Add Liquidity Error"
+#~ msgstr "Add Liquidity Error"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr "{0} users are ahead of you!"
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr "{0} users are ahead of you!"
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr "Maybe later"
@@ -2710,7 +2764,6 @@ msgstr "Maybe later"
#~ msgstr "Full Price Range"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr "Display Settings"
@@ -2721,8 +2774,17 @@ msgstr "Display Settings"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
-msgstr "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr "Last 3D KyberScores"
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr "You are currently claiming"
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
+msgstr "Rethink"
#: src/components/SwapForm/MultichainKNCNote.tsx
msgid "Multichain team ceased operations, and we discourage user interaction with the deployed Wrapped KNC token contracts on various chains. See more <0>here0>"
@@ -2741,12 +2803,12 @@ msgid "Hard Cancel Instead"
msgstr "Hard Cancel Instead"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr "Deposit Amounts"
+#~ msgid "Deposit Amounts"
+#~ msgstr "Deposit Amounts"
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr "Want to know the <0>KyberScore0> for {0}?"
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr "Want to know the <0>KyberScore0> for {0}?"
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2754,19 +2816,16 @@ msgstr "Want to know the <0>KyberScore0> for {0}?"
#~ msgstr "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed"
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr "Address"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr "<0>Harvest0> your farming rewards whenever you want."
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr "<0>Harvest0> your farming rewards whenever you want."
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2774,21 +2833,21 @@ msgstr "You have successfully turned on MEV Protection Mode. All transactions on
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr "Add liquidity"
+#~ msgid "Add liquidity"
+#~ msgstr "Add liquidity"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr "Daily Range"
+#~ msgid "Daily Range"
+#~ msgstr "Daily Range"
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr "Bullish:"
+#~ msgid "Bullish:"
+#~ msgstr "Bullish:"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2815,8 +2874,8 @@ msgid "Stake liquidity into farm"
msgstr "Stake liquidity into farm"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2833,23 +2892,23 @@ msgstr "Your Staked KNC"
#~ msgstr "No orders found"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr "Below is a list of your affected liquidity positions"
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr "Below is a list of your affected liquidity positions"
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr "Share this with your friends!"
+#~ msgid "Share this with your friends!"
+#~ msgstr "Share this with your friends!"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr "Add Liquidity ↗"
+#~ msgid "Add Liquidity ↗"
+#~ msgstr "Add Liquidity ↗"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2865,20 +2924,20 @@ msgstr "You can swap {0} for {1} (and vice versa)"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr "Eligible"
+#~ msgid "Eligible"
+#~ msgstr "Eligible"
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr "Trading Campaigns"
+#~ msgid "Trading Campaigns"
+#~ msgstr "Trading Campaigns"
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr "Top Bearish Tokens"
+#~ msgid "Top Bearish Tokens"
+#~ msgstr "Top Bearish Tokens"
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2889,8 +2948,8 @@ msgstr "Top Bearish Tokens"
#~ msgstr "The amount of rewards that are locked as they are currently vesting"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr "Reached max limit."
+#~ msgid "Reached max limit."
+#~ msgstr "Reached max limit."
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2924,8 +2983,8 @@ msgstr "Unwrap Error"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr "Trading Volume"
+#~ msgid "Trading Volume"
+#~ msgstr "Trading Volume"
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2933,17 +2992,17 @@ msgstr "Trading Volume"
#~ msgstr "Disclaimer: The information here should not be treated as any form of financial advice"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr "Update"
+#~ msgid "Update"
+#~ msgstr "Update"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr "1Y Range"
+#~ msgid "1Y Range"
+#~ msgstr "1Y Range"
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2955,14 +3014,7 @@ msgstr "An error occurred. Try refreshing the price rate or increase max slippag
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr "Max Price"
@@ -2971,8 +3023,8 @@ msgid "TOKEN UTILITY"
msgstr "TOKEN UTILITY"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -2993,18 +3045,18 @@ msgstr "If you wish to unstake your liquidity position from the farm, click on t
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr "Create a new pool or select another pair of tokens to view the available pools."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3017,8 +3069,8 @@ msgstr "Failed to switch network"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr "Stake your liquidity"
+#~ msgid "Stake your liquidity"
+#~ msgstr "Stake your liquidity"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3029,25 +3081,24 @@ msgid "{pendingLength} Pending"
msgstr "{pendingLength} Pending"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr "Welcome to <0/>KyberAI"
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr "Welcome to <0/>KyberAI"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr "Active"
+#~ msgid "Active"
+#~ msgstr "Active"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr "You will accumulate farming rewards as long as your liquidity position is active."
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr "Share of Pool"
@@ -3060,8 +3111,8 @@ msgstr "Share of Pool"
#~ msgstr "Max Price of your range is {maxPrice} USDT per stMatic"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3076,13 +3127,13 @@ msgstr "{0} Custom Tokens"
#~ msgstr "You can <0>Buy crypto easily with over 50+ currencies using a wide range of payment options!0> or <1>Easily transfer tokens from one chain to another1>"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr "Refresh the page then try to connect to {walletName} again"
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr "Refresh the page then try to connect to {walletName} again"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3091,8 +3142,8 @@ msgstr "Self-destruct"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr "Enter amp (>=1)"
+#~ msgid "Enter amp (>=1)"
+#~ msgstr "Enter amp (>=1)"
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3107,8 +3158,8 @@ msgstr "Loading topics ..."
#~ msgstr "Subscribe to receive email notifications on <0>all0> your liquidity positions. When your liquidity position goes <1>out-of-range1>, back <2>in-range2> or is <3>closed3> you will receive a notification"
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr "Go back Ranking page"
+#~ msgid "Go back Ranking page"
+#~ msgstr "Go back Ranking page"
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3123,8 +3174,8 @@ msgstr "Chain List"
#~ msgstr "You don't have any active orders yet"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3135,8 +3186,8 @@ msgstr "<0>With advanced machine learning algorithms to help you stay ahead of t
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr "Volume (24h)"
+#~ msgid "Volume (24h)"
+#~ msgstr "Volume (24h)"
#:
#:
@@ -3148,39 +3199,38 @@ msgid "Gasless Cancel All Orders"
msgstr "Gasless Cancel All Orders"
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr "The amount of rewards that are locked as they are currently vesting."
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr "The amount of rewards that are locked as they are currently vesting."
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr "Upcoming Farms"
+#~ msgid "Upcoming Farms"
+#~ msgstr "Upcoming Farms"
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr "Go to Farms ↗"
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr "Farm Ended"
+#~ msgid "Farm Ended"
+#~ msgstr "Farm Ended"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr "Zap Out"
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr "Create a new pool"
@@ -3194,8 +3244,8 @@ msgstr "Create a new pool"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr "Idle Range"
+#~ msgid "Idle Range"
+#~ msgstr "Idle Range"
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3219,8 +3269,8 @@ msgstr "Show closed positions"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3237,12 +3287,12 @@ msgstr "KyberSwap strives to offer its users the best DeFi experience on a singl
#~ msgstr "Your liquidity position needs to achieve the <0>required target volume0> (represented by a progress bar). You will accumulate farming rewards even if your liquidity position hasn't hit the required Target Volume. But as soon as your position hits the required Target Volume (i.e. progress bar is 100%), from thereafter, you will earn 100% of the rewards for that liquidity position."
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr "Trending Soon Tokens"
+#~ msgid "Trending Soon Tokens"
+#~ msgstr "Trending Soon Tokens"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr "Step 4: Claim Rewards"
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr "Step 4: Claim Rewards"
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3263,8 +3313,8 @@ msgstr "Anti Whale"
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr "Pool | AMP"
+#~ msgid "Pool | AMP"
+#~ msgstr "Pool | AMP"
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3283,22 +3333,25 @@ msgstr "Alerts Created: {totalAlerts}/{maxAlerts}"
#~ msgstr "<0>Option 20>: Remove your liquidity position from the pool, create a new liquidity position with an active price range, and stake in the farm again."
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr "Add {0} to {1}"
+#~ msgid "Add {0} to {1}"
+#~ msgstr "Add {0} to {1}"
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
-msgstr "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr "The amount of rewards you have already claimed"
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
+msgstr "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr "Live Chart"
+#~ msgid "Live Chart"
+#~ msgstr "Live Chart"
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr "Risky Item"
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3306,8 +3359,8 @@ msgstr "Price Alert"
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr "KyberScore is not applicable for stablecoins."
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr "KyberScore is not applicable for stablecoins."
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3319,8 +3372,8 @@ msgstr "My Positions"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr "Join KyberAI Waitlist"
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr "Join KyberAI Waitlist"
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3331,20 +3384,20 @@ msgid "User denied message signature"
msgstr "User denied message signature"
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr "Connect your wallet to view your earnings!"
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr "Connect your wallet to view your earnings!"
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr "You have successfully cancelled all orders."
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr "Trending soon"
+#~ msgid "Trending soon"
+#~ msgstr "Trending soon"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3355,16 +3408,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr "You are not signed in with this wallet address. If you wish, you can <0>sign-in0> to link your wallet to a profile. This will allow us to offer you a better experience."
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr "Collapse"
+#~ msgid "Collapse"
+#~ msgstr "Collapse"
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr "minutes"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3375,29 +3428,29 @@ msgstr "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
#~ msgstr "<0>PRICE RANGE <1>({0} per {1})1>0>"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr "Fee Range"
+#~ msgid "Fee Range"
+#~ msgstr "Fee Range"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr "profile <0>{currentProfileName}0>"
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr "Top Tokens by KyberAI"
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr "Top Tokens by KyberAI"
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr "Where you can store KNC"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr "MY REWARD ↑"
+#~ msgid "MY REWARD ↑"
+#~ msgstr "MY REWARD ↑"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr "Harvesting rewards"
+#~ msgid "Harvesting rewards"
+#~ msgstr "Harvesting rewards"
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3418,12 +3471,12 @@ msgstr "Invalid price input"
#~ "be trending soon!"
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr "Maintainance"
+#~ msgid "Maintainance"
+#~ msgstr "Maintainance"
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr "My liquidity"
+#~ msgid "My liquidity"
+#~ msgstr "My liquidity"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3438,8 +3491,8 @@ msgid "No price alerts created yet"
msgstr "No price alerts created yet"
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr "Full unlocked"
+#~ msgid "Full unlocked"
+#~ msgstr "Full unlocked"
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3448,8 +3501,8 @@ msgstr "Full unlocked"
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr "My Deposit"
+#~ msgid "My Deposit"
+#~ msgstr "My Deposit"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3473,27 +3526,27 @@ msgstr "Superior price guaranteed"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr "Example"
+#~ msgid "Example"
+#~ msgstr "Example"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr "Number"
+#~ msgid "Number"
+#~ msgstr "Number"
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr "New Amount Accepted"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr "Step 3: Stake in a farm"
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr "Step 3: Stake in a farm"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr "Token pair"
+#~ msgid "Token pair"
+#~ msgstr "Token pair"
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3514,12 +3567,12 @@ msgstr "Imported"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr "All Time Low"
+#~ msgid "All Time Low"
+#~ msgstr "All Time Low"
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr "Current Chain"
+#~ msgid "Current Chain"
+#~ msgstr "Current Chain"
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3538,13 +3591,14 @@ msgstr "Confirm Price"
msgid "Stake Information"
msgstr "Stake Information"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr "Recipient"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3554,17 +3608,19 @@ msgstr "Meet the team"
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
+msgstr "L2 execution fee"
+
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
-msgstr "Step 2. Choose Price Range"
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr "Step 2. Choose Price Range"
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr "Force Withdraw"
@@ -3574,37 +3630,40 @@ msgstr "Opt-out"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr "Last updated: {0}"
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr "TXN HASH"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr "New Liquidity Amount"
+#~ msgid "New Liquidity Amount"
+#~ msgstr "New Liquidity Amount"
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr "Download a wallet"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr "MY DEPOSIT ↑"
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr "MY DEPOSIT ↑"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
@@ -3614,16 +3673,16 @@ msgid "Market Info"
msgstr "Market Info"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr "Remove Watchlist"
+#~ msgid "Remove Watchlist"
+#~ msgstr "Remove Watchlist"
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr "Go to <0>Stake0>"
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr "APR for each Farming Range"
+#~ msgid "APR for each Farming Range"
+#~ msgstr "APR for each Farming Range"
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3642,8 +3701,8 @@ msgid "My Current Position"
msgstr "My Current Position"
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr "Unsupported Asset"
+#~ msgid "Unsupported Asset"
+#~ msgstr "Unsupported Asset"
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3659,8 +3718,12 @@ msgstr "Unsupported Asset"
#~ msgstr "Deposit your liquidity position (NFT token) and then stake it into the farm you identified earlier"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
-msgstr "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
+msgstr "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
#~ msgid "Our current farms are based on an innovative farming mechanism we call <0>Active Liquidity Time0>. Read the tips below to <1>maximize1> your rewards!"
@@ -3683,12 +3746,12 @@ msgid "Your Transactions"
msgstr "Your Transactions"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr "Wallets with more than $5m in assets across multiple chains."
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr "Wallets with more than $5m in assets across multiple chains."
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr "{feeApr}% LP Fee + {farmApr}% Rewards"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3709,16 +3772,16 @@ msgid "Your import token (click to copy)"
msgstr "Your import token (click to copy)"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr "Select Override Wallets"
+#~ msgid "Select Override Wallets"
+#~ msgstr "Select Override Wallets"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr "Spread the word, and get rewarded for it!"
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr "Spread the word, and get rewarded for it!"
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3745,8 +3808,8 @@ msgstr "Transaction History"
#~ msgstr "{0}"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr "VOLUME ↓"
+#~ msgid "VOLUME ↓"
+#~ msgstr "VOLUME ↓"
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3757,8 +3820,8 @@ msgstr "Bridge"
#~ msgstr "Harvest your farming rewards whenever you want"
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr "Get {pairSymbol} ↗"
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr "Get {pairSymbol} ↗"
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3774,11 +3837,10 @@ msgstr "Each user wallet address is eligible for gas refund of up to $200 within
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr "Levels"
+#~ msgid "Levels"
+#~ msgstr "Levels"
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr "Feature Request"
@@ -3791,12 +3853,12 @@ msgstr "Feature Request"
#~ msgstr "Unstake liquidity from farm"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr "Step 3: Deposit liquidity to Farming contract"
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr "Step 3: Deposit liquidity to Farming contract"
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr "Stablecoins"
+#~ msgid "Stablecoins"
+#~ msgstr "Stablecoins"
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3807,8 +3869,12 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr "KyberDAO is a community platform that allows KNC token holders to participate in governance. KNC holders can stake KNC to vote on proposals. In return, they receive rewards from fees generated on KyberSwap through trading activities in Kyber Network."
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
-msgstr "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
+msgstr "Trade"
#: src/pages/About/AboutKNC.tsx
msgid "Stake KNC, Vote, Earn Rewards."
@@ -3834,15 +3900,14 @@ msgstr "Hard Edit (<0>~{0}0> gas fees)"
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr "Orders refresh in"
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr "Alerts Created:"
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr "Stake"
@@ -3872,8 +3937,8 @@ msgid "Risky Item(s)"
msgstr "Risky Item(s)"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr "Invalid range selected. The min price must be lower than the max price."
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr "Invalid range selected. The min price must be lower than the max price."
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3895,8 +3960,8 @@ msgstr "Send"
#~ msgstr "in"
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr "24h Netflow"
+#~ msgid "24h Netflow"
+#~ msgstr "24h Netflow"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3914,22 +3979,26 @@ msgstr "The amount to bridge must be more than {amount} {symbol}."
#~ msgstr "You will receive at least this amount or your transaction will revert"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr "Identify the <0>Elastic farm0> you would like to participate in"
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr "Stake + Vote"
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr "My Dashboard"
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr "Step 2: Approve the Farming contract"
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr "Step 2: Approve the Farming contract"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3938,12 +4007,12 @@ msgstr "Category"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr "Liquidity providers will earn this trading fee for each trade that uses this pool"
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr "Static Fees"
+#~ msgid "Static Fees"
+#~ msgstr "Static Fees"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3954,24 +4023,24 @@ msgid "Where you can buy KNC"
msgstr "Where you can buy KNC"
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr "Best for stable pairs"
+#~ msgid "Best for stable pairs"
+#~ msgstr "Best for stable pairs"
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr "Checking data"
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr "Add liquidity to our Elastic Pools and earn trading fees automatically."
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr "You Sell"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr "Claim your farming rewards by clicking the harvest button."
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr "Claim your farming rewards by clicking the harvest button."
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3980,16 +4049,16 @@ msgstr "FILLED % | STATUS"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr "The token cannot be bridged to this chain"
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr "Here you can update your liquidity positions after you had increased its liquidity."
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4019,11 +4088,10 @@ msgid "Wrong Network"
msgstr "Wrong Network"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr "Identify the Classic farm you would like to participate in."
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr "Identify the Classic farm you would like to participate in."
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr "Staked LP Tokens"
@@ -4032,12 +4100,12 @@ msgid "VALUE"
msgstr "VALUE"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr "View Pool"
+#~ msgid "View Pool"
+#~ msgstr "View Pool"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr "You can claim your reward by clicking on the <0>Harvest0> button"
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4065,16 +4133,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr "Farm ended"
+#~ msgid "Farm ended"
+#~ msgstr "Farm ended"
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr "Active Alerts:"
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr "Available Farming Range"
+#~ msgid "Available Farming Range"
+#~ msgstr "Available Farming Range"
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4094,8 +4162,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Output amount you see above is inclusive of this fee. Read more about the fees {hereLink}"
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr "Rewards Breakdown"
+#~ msgid "Rewards Breakdown"
+#~ msgstr "Rewards Breakdown"
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4130,8 +4198,8 @@ msgid "Your import token"
msgstr "Your import token"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr "Feeling exhausted <0>managing your emotions?0>"
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr "Feeling exhausted <0>managing your emotions?0>"
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4152,11 +4220,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr "The contract address that will be executing the swap. You can verify the contract in the block explorer."
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4171,8 +4237,8 @@ msgid "Cross-chain rate is"
msgstr "Cross-chain rate is"
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr "<0>Unable to calculate0><1>Price Impact1>"
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4191,7 +4257,6 @@ msgid "Default Options"
msgstr "Default Options"
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4212,8 +4277,8 @@ msgstr "Your cancellation {summary} has been submitted"
#~ msgstr "What can KNC be used for?"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr "No KYC or sign-ups required."
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr "No KYC or sign-ups required."
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4224,7 +4289,6 @@ msgstr "No KYC or sign-ups required."
#~ msgstr "<0>Price Impact0><1>is <2>very2> high1>"
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr "Your position has 0 liquidity, and is not earning fees"
@@ -4237,8 +4301,8 @@ msgstr "Epoch {epochNumber} Start Date"
#~ msgstr "Sell {symbolIn} at rate"
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr "{numOfActivePositions} Active"
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr "{numOfActivePositions} Active"
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4249,12 +4313,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr "Are limit orders and cross-chain swaps eligible for gas refunds?"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr "Step 5: Harvest your farming rewards"
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr "Step 5: Harvest your farming rewards"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr "Live Trades"
+#~ msgid "Live Trades"
+#~ msgstr "Live Trades"
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4262,7 +4326,6 @@ msgstr "Live Trades"
#~ msgstr "Participants"
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr "No results found."
@@ -4271,8 +4334,8 @@ msgstr "No results found."
#~ msgstr "You haven't deposited any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first in our <2>Pools2> page. If you've done that, deposit your liquidity position (NFT tokens) before you stake"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr "BONUS REWARDS"
+#~ msgid "BONUS REWARDS"
+#~ msgstr "BONUS REWARDS"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4283,30 +4346,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr "Subscribe to receive notifications on your bridge transaction."
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr "Step 1. Deposit Your Liquidity"
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr "Step 1. Deposit Your Liquidity"
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr "Best for most pairs"
+#~ msgid "Best for most pairs"
+#~ msgstr "Best for most pairs"
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr "Approving {0}"
+#~ msgid "Approving {0}"
+#~ msgstr "Approving {0}"
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr "My Total Earnings"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr "Total earnings from both pool and farm (if applicable)."
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr "Total earnings from both pool and farm (if applicable)."
#: src/components/Header/web3/SelectWallet.tsx
#~ msgid "{0} Pending"
@@ -4327,14 +4389,16 @@ msgstr "instead?"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr "All Time High"
+#~ msgid "All Time High"
+#~ msgstr "All Time High"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4355,12 +4419,12 @@ msgstr "Participate in the Elastic farm to earn more rewards. Click <0>here0>
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr "Deposit Farm Error"
+#~ msgid "Deposit Farm Error"
+#~ msgstr "Deposit Farm Error"
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr "Connect your wallet to view this insight"
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr "Connect your wallet to view this insight"
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4398,34 +4462,36 @@ msgstr "Buy or sell tokens at the price you want."
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr "Insufficient Balance"
+#~ msgid "Insufficient Balance"
+#~ msgstr "Insufficient Balance"
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr "Last 3D Kyberscores"
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr "Last 3D Kyberscores"
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr "All"
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
-msgstr "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr "All Tokens ({totalToken})"
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
+msgstr "Choose option successfully"
#: src/state/mint/proamm/hooks.tsx
msgid "Position {0}: Invalid amount"
msgstr "Position {0}: Invalid amount"
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr "View all"
+#~ msgid "View all"
+#~ msgstr "View all"
#:
#~ msgid "Rewards: {0} {1}"
@@ -4499,8 +4565,8 @@ msgstr "Insufficient liquidity for this trade"
#~ msgstr "Average estimated return based on yearly fees of the pool plus bonus rewards from the farm"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4515,31 +4581,30 @@ msgid "Sell Tax"
msgstr "Sell Tax"
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr "Add liquidity to the pool using a single token"
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr "Add liquidity to the pool using a single token"
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr "Set"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr "Top CEX Negative Netflow"
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr "Top CEX Negative Netflow"
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr "Learn More"
+#~ msgid "Learn More"
+#~ msgstr "Learn More"
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr "Video Tutorial"
+#~ msgid "Video Tutorial"
+#~ msgstr "Video Tutorial"
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr "Others"
@@ -4547,10 +4612,15 @@ msgstr "Others"
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr "This campaign does not have a leaderboard yet."
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr "Claim Asset"
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr "Unstake Selected"
+#~ msgid "Unstake Selected"
+#~ msgstr "Unstake Selected"
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4561,8 +4631,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr "Are you sure you want to delete all {notificationName}?"
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4580,24 +4650,14 @@ msgstr "PRICE RANGE <0>({0} per {1})0>"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr "Unstake your liquidity"
+#~ msgid "Unstake your liquidity"
+#~ msgstr "Unstake your liquidity"
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Add Liquidity"
msgstr "Add Liquidity"
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr "here"
@@ -4606,19 +4666,13 @@ msgid "Find out more"
msgstr "Find out more"
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr "Share this list of pools with your friends"
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr "Share this list of pools with your friends"
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr "Modifiable Anti Whale"
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr "Unstake"
@@ -4632,14 +4686,14 @@ msgstr "Unstake"
#~ msgstr "KyberSwap offers the best prices for traders, attractive earning rewards & smart trading insights. Are you FOMOing yet?"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr "here ↗"
+#~ msgid "here ↗"
+#~ msgstr "here ↗"
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr "{0} seems to be <0>{1}0>"
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr "{0} seems to be <0>{1}0>"
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4660,8 +4714,13 @@ msgstr "Buy crypto easily with over 50+ currencies"
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
-msgstr "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr "Let's get started"
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
+msgstr "Phase 1"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms using this mechanism rely on the <0>total time0> your liquidity position is <1>active1> (i.e. in range) in the pool."
@@ -4684,8 +4743,8 @@ msgstr "Your position will appear here."
#~ msgstr "We got you a higher amount. The initial output amount was {0} {1}"
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr "Favourites"
+#~ msgid "Favourites"
+#~ msgstr "Favourites"
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4695,22 +4754,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr "Suitable for pairs with high price volatility. Although you always earn the fee, your capital efficiency is the lowest among all choices."
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr "Reset"
+#~ msgid "Reset"
+#~ msgstr "Reset"
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr "<0>Price Impact0> is very high. You will lose funds! {0}"
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr "Open scan explorer"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr "Under development and unsupported by most wallets."
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr "Under development and unsupported by most wallets."
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4718,8 +4775,8 @@ msgstr "Request"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr "Website"
+#~ msgid "Website"
+#~ msgstr "Website"
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4744,16 +4801,16 @@ msgstr "Withdraw"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr "Step 6: Unstake liquidity from a farm"
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr "Step 6: Unstake liquidity from a farm"
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr "No token found. Try turn off truesight."
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr "Token Rankings"
+#~ msgid "Token Rankings"
+#~ msgstr "Token Rankings"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4776,7 +4833,6 @@ msgstr "Any and all decisions made by KyberSwap in relation to every aspect of t
#~ msgstr "Your Transactions ({0})"
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
@@ -4812,7 +4868,6 @@ msgid "Favorite Chain(s)"
msgstr "Favorite Chain(s)"
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr "Collect Fees"
@@ -4825,8 +4880,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr "Find a token by searching for name, symbol or address.<0/>You can select and import any token on KyberSwap."
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4852,8 +4907,8 @@ msgstr "Filled Orders"
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr "Fee"
+#~ msgid "Fee"
+#~ msgstr "Fee"
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4874,24 +4929,23 @@ msgstr "Gas Fee"
#~ msgstr "Terms of Use"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr "END TIME ↑"
+#~ msgid "END TIME ↑"
+#~ msgstr "END TIME ↑"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr "Pool Ratio"
+#~ msgid "Pool Ratio"
+#~ msgstr "Pool Ratio"
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr "Please check the <0>Active Farms0> or come back later."
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr "Your position will be 100% composed of {baseSymbol} at this price."
@@ -4900,7 +4954,6 @@ msgstr "Your position will be 100% composed of {baseSymbol} at this price."
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr "Customize the layout & the look and feel of your trading interface!"
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4916,12 +4969,10 @@ msgid "I Understand"
msgstr "I Understand"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr "KyberScore will be updated every 4 hour."
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr "KyberScore will be updated every 4 hour."
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr "Circulating Supply"
@@ -4934,8 +4985,8 @@ msgid "Voting starts in:"
msgstr "Voting starts in:"
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
#:
#~ msgid "FULL UNLOCK"
@@ -4946,8 +4997,8 @@ msgid "Security Info"
msgstr "Security Info"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr "Turn on to display KyberAI banner."
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr "Turn on to display KyberAI banner."
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -4987,8 +5038,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr "Your available LP Token balance after staking (if applicable)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr "Want to <0>let AI do the work of sifting through a noisy market?0>"
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5019,8 +5070,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr "Cancel Limit Orders Submitted!"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5044,28 +5095,32 @@ msgstr "Unstake liquidity from farm."
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr "Try typing \"10 ETH to KNC\""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr "Try typing \"10 ETH to KNC\""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
+msgstr "Verified"
+
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
-msgstr "MY LIQUIDITY ↓"
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr "MY LIQUIDITY ↓"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr "The price of this pool is within your selected range. Your position is currently earning fees"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr "The more trading volume your position supports, the more farming rewards you will earn."
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr "Deposited Positions"
+#~ msgid "Deposited Positions"
+#~ msgstr "Deposited Positions"
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5088,7 +5143,6 @@ msgstr "Let’s get started"
#~ msgstr "Note: {warningToken} is now <10% of the pool. Pool might become inactive if {warningToken} reaches 0%"
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr "Approve Error"
@@ -5101,12 +5155,16 @@ msgid "Exchange rate is always 1 to 1."
msgstr "Exchange rate is always 1 to 1."
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr "Get alpha before it happens"
+#~ msgid "Get alpha before it happens"
+#~ msgstr "Get alpha before it happens"
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
-msgstr "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr "KyberAI Feedback Survey"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
+msgstr "Selecting Treasury Grant Option"
#: src/utils/time.ts
#~ msgid "{min} {0} ago"
@@ -5117,11 +5175,10 @@ msgstr "KyberAI Feedback Survey"
#~ msgstr "Unknown Source"
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr "Closed Positions"
+#~ msgid "Closed Positions"
+#~ msgstr "Closed Positions"
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr "Read more"
@@ -5131,8 +5188,8 @@ msgstr "Read more"
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr "We couldn't find any information for this token."
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr "We couldn't find any information for this token."
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5143,8 +5200,8 @@ msgid "Cannot vote at this moment"
msgstr "Cannot vote at this moment"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5155,17 +5212,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr "POSITION LIQUIDITY (USD)"
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr "Go to farm"
+#~ msgid "Go to farm"
+#~ msgstr "Go to farm"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr "Top 10 Holders"
+#~ msgid "Top 10 Holders"
+#~ msgstr "Top 10 Holders"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr "Static Farm"
+#~ msgid "Static Farm"
+#~ msgstr "Static Farm"
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5176,8 +5233,8 @@ msgstr "Static Farm"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr "View Positions"
+#~ msgid "View Positions"
+#~ msgstr "View Positions"
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5233,12 +5290,12 @@ msgid "Code will expire in {0}{1}"
msgstr "Code will expire in {0}{1}"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr "MY DEPOSIT"
+#~ msgid "MY DEPOSIT"
+#~ msgstr "MY DEPOSIT"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr "Bug Bounty"
+#~ msgid "Bug Bounty"
+#~ msgstr "Bug Bounty"
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5281,12 +5338,12 @@ msgstr "Username (Optional)"
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr "Withdraw Error"
+#~ msgid "Withdraw Error"
+#~ msgstr "Withdraw Error"
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr "Approve Farm Error"
+#~ msgid "Approve Farm Error"
+#~ msgstr "Approve Farm Error"
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5297,8 +5354,8 @@ msgid "Buy Tax"
msgstr "Buy Tax"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr "View Less"
+#~ msgid "View Less"
+#~ msgstr "View Less"
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5320,12 +5377,6 @@ msgstr "Looking to"
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr "Elastic Pools"
@@ -5336,13 +5387,17 @@ msgstr "You can’t use your own address as a receiver"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr "Invalid Input"
+#~ msgid "Invalid Input"
+#~ msgstr "Invalid Input"
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr "Share this campaign with your friends!"
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr "LOCAL TIME"
@@ -5352,8 +5407,8 @@ msgid "Can sell all"
msgstr "Can sell all"
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr "Token name"
+#~ msgid "Token name"
+#~ msgstr "Token name"
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5364,8 +5419,8 @@ msgstr "Unsubscribe"
#~ msgstr "Estimated return from additional rewards if you also participate in the farm"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr "Price | 24 Change"
+#~ msgid "Price | 24 Change"
+#~ msgstr "Price | 24 Change"
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5404,6 +5459,10 @@ msgstr "Honeypot"
#~ msgstr "Referral Commission"
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr "Error"
@@ -5417,8 +5476,8 @@ msgstr "Error"
#~ msgstr "You still have {0} liquidity to stake to earn more rewards"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr "Withdraw Selected"
+#~ msgid "Withdraw Selected"
+#~ msgstr "Withdraw Selected"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5428,6 +5487,10 @@ msgstr "Withdraw Selected"
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr "Tier {userTier} - {0}% Gas Refund"
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr "Legacy"
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr "AMP Liquidity"
@@ -5437,8 +5500,8 @@ msgstr "Tier {userTier} - {0}% Gas Refund"
#~ msgstr "Your position will not earn fees until the market price of the pool moves into your price range"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr "Supplying {text}"
+#~ msgid "Supplying {text}"
+#~ msgstr "Supplying {text}"
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5449,8 +5512,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr "Gas fees and Price Impact are very high. You will lose your funds."
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr "Chain on which the swap will be executed."
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr "Chain on which the swap will be executed."
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5465,7 +5528,6 @@ msgstr "Slippage is low. Your transaction may fail."
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5484,8 +5546,6 @@ msgstr "DEXs"
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr "Select a token"
@@ -5508,7 +5568,6 @@ msgstr "Price Impact is high. Please consider placing a {0}{limitOrderLink} to s
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr "Tutorial"
@@ -5525,8 +5584,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {tokenOutSymbol}."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5537,22 +5596,22 @@ msgstr "Your passcode or Import Token is invalid"
#~ msgstr "Token name or tag"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr "View More Stats"
+#~ msgid "View More Stats"
+#~ msgstr "View More Stats"
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr "Disconnect wallet"
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr "Token"
@@ -5561,8 +5620,8 @@ msgstr "Token"
#~ msgstr "You need to first allow KyberSwap's smart contract to use your {0}"
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr "Quickly zap and add liquidity using only one token."
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr "Quickly zap and add liquidity using only one token."
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5589,7 +5648,6 @@ msgstr "More information about KNC is available on:"
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr "Docs"
@@ -5618,8 +5676,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr "You are voting for <0>{options}0> on <1>{title}1> with your KIP voting power"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr "Step 5: Change Farming Range"
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr "Step 5: Change Farming Range"
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5634,8 +5692,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSymbolIn} and {tokenAmountOut} {tokenSymbolOut} of liquidity to the pool."
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr "Explore pool tokens in KyberAI"
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr "Explore pool tokens in KyberAI"
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5647,8 +5705,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%. You can earn fees even if the price goes up by 0.15% or goes down by 0.15%."
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5668,8 +5726,8 @@ msgid "Quorum Status"
msgstr "Quorum Status"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr "ENDING IN"
+#~ msgid "ENDING IN"
+#~ msgstr "ENDING IN"
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5681,8 +5739,8 @@ msgstr "Click Migrate to start the migration process from KNC Legacy to the new
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr "ACTIONS"
+#~ msgid "ACTIONS"
+#~ msgstr "ACTIONS"
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5698,20 +5756,16 @@ msgstr "Didn't receive code? <0>Resend0>"
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr "{0} {1} per {2}"
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr "Best for exotic pairs"
+#~ msgid "Best for exotic pairs"
+#~ msgstr "Best for exotic pairs"
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr "{0}% Claimed"
+#~ msgid "{0}% Claimed"
+#~ msgstr "{0}% Claimed"
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5722,22 +5776,21 @@ msgstr "Your passcode must be at least 6 characters long"
#~ msgstr "We automatically reinvest your trading fee earnings by adding it back into the pool. And so you earn even more with less effort due to compounding."
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr "Tag"
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr "MORE INFORMATION"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr "Farm has not started"
+#~ msgid "Farm has not started"
+#~ msgstr "Farm has not started"
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5745,19 +5798,14 @@ msgstr "Farm has not started"
msgid "Import Tokens"
msgstr "Import Tokens"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr "Details"
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr "Details"
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr "My Liquidity Balance"
@@ -5769,9 +5817,13 @@ msgstr "My Liquidity Balance"
#~ msgid "could be trending very soon!"
#~ msgstr "could be trending very soon!"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
+msgstr "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
+
#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
-msgstr "Target Volume"
+#~ msgid "Target Volume"
+#~ msgstr "Target Volume"
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
@@ -5782,8 +5834,8 @@ msgstr "Target Volume"
#~ msgstr "Okay"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr "Choose pool"
+#~ msgid "Choose pool"
+#~ msgstr "Choose pool"
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5826,8 +5878,8 @@ msgstr "Claim reward"
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr "Dynamic Fee Range"
+#~ msgid "Dynamic Fee Range"
+#~ msgstr "Dynamic Fee Range"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5855,8 +5907,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr "KyberSwap strives to offer its users the best DeFi experience on a single platform. In order to do that, KyberSwap partners with 3rd party platforms like Multichain."
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr "Brave wallet can only be used in Brave Browser. Download it"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5868,24 +5920,24 @@ msgstr "Sending token"
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr "{0}% Refund"
+#~ msgid "{0}% Refund"
+#~ msgstr "{0}% Refund"
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr "Routing through these tokens resulted in the best price for your trade"
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr "See more"
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr "3d Netflow"
+#~ msgid "3d Netflow"
+#~ msgstr "3d Netflow"
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5895,9 +5947,11 @@ msgstr "3d Netflow"
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr "Please check your inbox to verify your email account"
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr "Limit Order"
@@ -5905,17 +5959,21 @@ msgstr "Limit Order"
#~ msgid "- Remove send"
#~ msgstr "- Remove send"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
+msgstr "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
+
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
-msgstr "Set Starting Price"
+#~ msgid "Set Starting Price"
+#~ msgstr "Set Starting Price"
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr "Liquidations on CEX"
+#~ msgid "Liquidations on CEX"
+#~ msgstr "Liquidations on CEX"
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5934,14 +5992,12 @@ msgstr "Verify your email address."
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr "Connect wallet"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr "Do you want to remove <0>{0} ({1})0>"
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr "Do you want to remove <0>{0} ({1})0>"
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5949,8 +6005,8 @@ msgid "at"
msgstr "at"
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr "Trading Grant Campaign"
+#~ msgid "Trading Grant Campaign"
+#~ msgstr "Trading Grant Campaign"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5965,8 +6021,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr "AMP factor x Liquidity in the pool. Amplified pools have higher capital efficiency and liquidity."
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr "Support & Resistance Levels."
+#~ msgid "Support & Resistance Levels."
+#~ msgstr "Support & Resistance Levels."
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -5976,13 +6032,13 @@ msgstr "Support & Resistance Levels."
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr "Coming Soon"
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr "Coming Soon"
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr "Unstake Error"
+#~ msgid "Unstake Error"
+#~ msgstr "Unstake Error"
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6008,7 +6064,6 @@ msgstr "You already delegated your Voting power"
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr "No, go back"
@@ -6036,16 +6091,16 @@ msgid "Export Profile"
msgstr "Export Profile"
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr "My 1st Watchlist"
+#~ msgid "My 1st Watchlist"
+#~ msgstr "My 1st Watchlist"
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr "An error occurred"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr "We introduce to you, <0>KyberAI0>"
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr "We introduce to you, <0>KyberAI0>"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6053,27 +6108,26 @@ msgstr "You are connected to KyberSwap with wallet <0>{0}0> while your current
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr "Netflow to Whale Wallets"
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr "Netflow to Whale Wallets"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr "FOR LIQUIDITY PROVIDERS"
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr "FOR LIQUIDITY PROVIDERS"
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr "Your order to pay {mainMsg} is {filledPercent}% filled"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr "Netflow to CEX"
+#~ msgid "Netflow to CEX"
+#~ msgstr "Netflow to CEX"
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr "Farm Rewards"
@@ -6082,18 +6136,18 @@ msgstr "Farm Rewards"
#~ msgstr "This is based on calculation at <0>08:00 AM0> when the price of ETH was <1>$0.00000000011>"
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr "MY LIQUIDITY"
+#~ msgid "MY LIQUIDITY"
+#~ msgstr "MY LIQUIDITY"
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr "Rankings"
+#~ msgid "Rankings"
+#~ msgstr "Rankings"
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr "Timeframe"
+#~ msgid "Timeframe"
+#~ msgstr "Timeframe"
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6102,17 +6156,17 @@ msgid "Contract Address"
msgstr "Contract Address"
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr "Please select fee"
+#~ msgid "Please select fee"
+#~ msgstr "Please select fee"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr "to Whale Wallets"
+#~ msgid "to Whale Wallets"
+#~ msgstr "to Whale Wallets"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr "Stake Selected"
+#~ msgid "Stake Selected"
+#~ msgstr "Stake Selected"
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6123,8 +6177,8 @@ msgid "Holiday Mode"
msgstr "Holiday Mode"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6170,12 +6224,12 @@ msgstr "Selected Price Range"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr "Gas Price Tracker"
+#~ msgid "Gas Price Tracker"
+#~ msgstr "Gas Price Tracker"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6200,13 +6254,13 @@ msgid "Approve {tokenSymbol}"
msgstr "Approve {tokenSymbol}"
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr "Slippage is high. Your transaction may be front-run."
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr "Slippage is high. Your transaction may be front-run."
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr "Step 1: Select the Farm"
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr "Step 1: Select the Farm"
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6221,6 +6275,10 @@ msgstr "GAS REFUND REWARDS"
msgid "Max is {format}"
msgstr "Max is {format}"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr "You can <0>choose Grant Option once0>, please read and decide carefully"
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr "Disclaimer: This should not be considered as financial advice"
@@ -6230,8 +6288,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr "Gasless Cancel {0}/{1} Orders"
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr "Search by token name, symbol or contract address"
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr "Search by token name, symbol or contract address"
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6242,16 +6300,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr "For this pilot gas refund program, KyberSwap retains the right to cancel or amend the program's end date upon giving reasonable notice."
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr "Zap In"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr "Starting Price"
+#~ msgid "Starting Price"
+#~ msgstr "Starting Price"
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6266,8 +6324,8 @@ msgid "has been successfully transferred from"
msgstr "has been successfully transferred from"
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr "Best for very volatile pairs"
+#~ msgid "Best for very volatile pairs"
+#~ msgstr "Best for very volatile pairs"
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6307,8 +6365,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after deducting Active and Open orders."
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr "Subscribe to receive notifications on your limit orders."
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr "Subscribe to receive notifications on your limit orders."
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6323,12 +6381,12 @@ msgid "Signing in..."
msgstr "Signing in..."
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr "Create list"
+#~ msgid "Create list"
+#~ msgstr "Create list"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr "1 user is ahead of you"
+#~ msgid "1 user is ahead of you"
+#~ msgstr "1 user is ahead of you"
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6339,11 +6397,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr "Are you sure you want to cancel this limit order?"
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr "Verification code is wrong or expired. Please try again."
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr "Vesting"
@@ -6351,21 +6408,29 @@ msgstr "Vesting"
msgid "{0} price of {rateStr} {1}"
msgstr "{0} price of {rateStr} {1}"
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr "Support"
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr "+ Add a send (optional)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
-msgstr "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr "Search from over <0>4000+ tokens on 7 chains.0>"
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
+msgstr "Treasury Grant 2023"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Subscribe to receive daily emails on the top tokens as recommended by KyberAI"
#~ msgstr "Subscribe to receive daily emails on the top tokens as recommended by KyberAI"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr "Total Earnings"
+#~ msgid "Total Earnings"
+#~ msgstr "Total Earnings"
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6375,8 +6440,8 @@ msgstr "Delegate"
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr "AVG APR ↓"
+#~ msgid "AVG APR ↓"
+#~ msgstr "AVG APR ↓"
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6413,8 +6478,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr "Kyber Network Crystal <0>(KNC)0>"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr "STAKED TVL ↑"
+#~ msgid "STAKED TVL ↑"
+#~ msgstr "STAKED TVL ↑"
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6449,7 +6514,6 @@ msgstr "Hard Edit Instead"
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr "Make sure the URL is<0>KyberSwap.com0>"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr "More Information"
@@ -6459,12 +6523,12 @@ msgstr "More Information"
#~ msgstr "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr "You haven't added any tokens to your watchlist yet"
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr "You haven't added any tokens to your watchlist yet"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6476,18 +6540,11 @@ msgid "Price Range"
msgstr "Price Range"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6513,9 +6570,7 @@ msgstr "Step 1"
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr "Estimated return from trading fees if you participate in the pool."
@@ -6524,25 +6579,28 @@ msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the stan
msgstr "Disclaimer: KyberSwap is a permissionless protocol optimized for the standard ERC20 implementation only. Please do your own research before you provide liquidity using tokens with unique mechanics (e.g. FOT, Rebase, LP tokens, contract deposits, etc.). More info <0>here0>"
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
-msgstr "View analytics"
+#~ msgid "View analytics"
+#~ msgstr "View analytics"
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
+msgstr "ORDER STATUS"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr "Contact Us"
+#~ msgid "Contact Us"
+#~ msgstr "Contact Us"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr "Sign-In with Wallet"
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr "Feedback"
+#~ msgid "Feedback"
+#~ msgstr "Feedback"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr "Supplying {text} across {len} positions"
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr "Supplying {text} across {len} positions"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6561,16 +6619,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. You can earn fees even if the price goes up by 0.5% or goes down by 0.5%."
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr "Your Pool Allocation"
+#~ msgid "Your Pool Allocation"
+#~ msgstr "Your Pool Allocation"
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr "See All"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6608,13 +6666,6 @@ msgstr "On"
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr "Crosschain amount larger than {0} {1} could take up to 12 hours"
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6622,25 +6673,11 @@ msgstr "On"
msgid "Approve"
msgstr "Approve"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr "Share"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6661,28 +6698,32 @@ msgstr "No notifications found"
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr "Maximum Return"
+#~ msgid "Maximum Return"
+#~ msgstr "Maximum Return"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr "Subscribe to receive notifications on your limit orders"
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr "<0>Your 0><1>Slippage1><2> {msg}2>"
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr "Cancel Orders"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr "On-Chain Analysis"
+#~ msgid "On-Chain Analysis"
+#~ msgstr "On-Chain Analysis"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6709,7 +6750,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr "Your currently existing order is {filled}% filled."
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr "My Pool APR"
@@ -6718,8 +6758,8 @@ msgid "How to participate"
msgstr "How to participate"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr "Step 7: Withdraw your liquidty"
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr "Step 7: Withdraw your liquidty"
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6741,7 +6781,7 @@ msgstr "You agree that KyberSwap is using <0/> to facilitate transfer of tokens
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr "Analytics"
@@ -6751,8 +6791,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr "No. Limit orders and cross-chain swaps are not eligible for gas refunds. Only standard swaps on KyberSwap are eligible."
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr "Supplying {amountAText} and {amountBText}"
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr "Supplying {amountAText} and {amountBText}"
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6769,16 +6809,16 @@ msgid "Search by pool address"
msgstr "Search by pool address"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr "Select fee tier"
+#~ msgid "Select fee tier"
+#~ msgstr "Select fee tier"
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr "MY REWARD ↓"
+#~ msgid "MY REWARD ↓"
+#~ msgstr "MY REWARD ↓"
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6786,20 +6826,16 @@ msgstr "Voting Power next Epoch: {0}"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr "Netflow"
+#~ msgid "Netflow"
+#~ msgstr "Netflow"
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr "Price"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr "Earn more with your crypto assets"
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr "Earn more with your crypto assets"
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6835,32 +6871,32 @@ msgstr "Multichain doesn’t support this token yet. <0/>If you want to apply th
#~ msgstr "Buy or sell any token instantly at the best price"
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr "You are creating a pool"
+#~ msgid "You are creating a pool"
+#~ msgstr "You are creating a pool"
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr "Best for rare use cases"
+#~ msgid "Best for rare use cases"
+#~ msgstr "Best for rare use cases"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr "Less Effort <0/><1>More Signals1>"
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr "Less Effort <0/><1>More Signals1>"
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr "New Updates to KyberAI"
+#~ msgid "New Updates to KyberAI"
+#~ msgstr "New Updates to KyberAI"
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6869,16 +6905,16 @@ msgstr "New Updates to KyberAI"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr "Funding Rates"
+#~ msgid "Funding Rates"
+#~ msgstr "Funding Rates"
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr "Farming Positions"
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr "Error connecting to {walletName}."
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr "Error connecting to {walletName}."
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6914,8 +6950,8 @@ msgstr "Your orders below cancel failed:<0/>{listOrderName}"
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr "AVG APR ↑"
+#~ msgid "AVG APR ↑"
+#~ msgstr "AVG APR ↑"
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6929,23 +6965,23 @@ msgstr "Common"
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr "Average estimated return based on yearly fees of the pool"
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr "Blog"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr "Live Charts"
+#~ msgid "Live Charts"
+#~ msgstr "Live Charts"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr "Disable Metamask in C98"
+#~ msgid "Disable Metamask in C98"
+#~ msgstr "Disable Metamask in C98"
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6954,8 +6990,8 @@ msgstr "Off"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6967,43 +7003,41 @@ msgid "per"
msgstr "per"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr "Expand All"
+#~ msgid "Expand All"
+#~ msgstr "Expand All"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr "Bullish"
+#~ msgid "Bullish"
+#~ msgstr "Bullish"
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr "Alerts History"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr "Add liquidity error"
+#~ msgid "Add liquidity error"
+#~ msgstr "Add liquidity error"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr "MEV Protection Mode is on"
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr "Turn on to display trade route."
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr "Deposit your liquidity"
+#~ msgid "Deposit your liquidity"
+#~ msgstr "Deposit your liquidity"
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr "My Staked Balance"
@@ -7024,8 +7058,8 @@ msgstr "Your profile has been successfully updated"
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr "Learn More ↗"
+#~ msgid "Learn More ↗"
+#~ msgstr "Learn More ↗"
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7053,8 +7087,8 @@ msgid "Cooldown"
msgstr "Cooldown"
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr "Watchlist"
+#~ msgid "Watchlist"
+#~ msgstr "Watchlist"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7062,10 +7096,9 @@ msgstr "Watchlist"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
@@ -7083,8 +7116,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr "Stake KNC tokens to vote on proposals that shape Kyber's future and earn KNC rewards!"
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr "Locked Rewards"
+#~ msgid "Locked Rewards"
+#~ msgstr "Locked Rewards"
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7113,8 +7146,8 @@ msgstr "You haven't made any transactions yet"
#~ "timeperiod can indicate that the token is bullish and vice-versa."
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr "Top Traded"
+#~ msgid "Top Traded"
+#~ msgstr "Top Traded"
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7129,10 +7162,6 @@ msgstr "Verifying"
#~ msgstr "Important Announcement"
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr "Action"
@@ -7143,8 +7172,8 @@ msgstr "Action"
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr "Supply"
+#~ msgid "Supply"
+#~ msgstr "Supply"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7157,20 +7186,19 @@ msgstr "Participation Rewards"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr "Available Balance"
+#~ msgid "Available Balance"
+#~ msgstr "Available Balance"
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr "Total Fees Amount<0/>(USD)"
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr "Help"
+#~ msgid "Help"
+#~ msgstr "Help"
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr "Get Started"
@@ -7213,7 +7241,6 @@ msgstr "LIMIT ORDER(S)"
#~ msgstr "Notification Overview"
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr "Farming"
@@ -7226,8 +7253,8 @@ msgstr "Logging out"
#~ msgstr "There is an error while loading campaigns."
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr "Dynamic"
+#~ msgid "Dynamic"
+#~ msgstr "Dynamic"
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7247,8 +7274,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr "Insufficient liquidity available. Please reload page or increase max slippage and try again!"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr "You have {numberInRangePos} in-range position(s)"
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr "You have {numberInRangePos} in-range position(s)"
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7268,8 +7295,8 @@ msgstr "Unstaking {inputValue} KNC from KyberDAO"
#~ msgstr "Price impact is Very High!"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7284,8 +7311,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr "Get your orders filled without paying any gas fees."
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr "Community"
@@ -7293,6 +7318,11 @@ msgstr "Community"
#~ msgid "Tag:"
#~ msgstr "Tag:"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr "Step"
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr "Cancel an order"
@@ -7314,8 +7344,8 @@ msgid "Available"
msgstr "Available"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr "Last 7 days"
+#~ msgid "Last 7 days"
+#~ msgstr "Last 7 days"
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7330,22 +7360,26 @@ msgstr "Not Reached"
msgid "Axelar/Squid doesn't support this chain"
msgstr "Axelar/Squid doesn't support this chain"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr "Treasury Grant Options"
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr "Your transactions"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr "Spot Markets"
+#~ msgid "Spot Markets"
+#~ msgstr "Spot Markets"
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr "Created"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr "Funding rate"
+#~ msgid "Funding rate"
+#~ msgstr "Funding rate"
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7361,20 +7395,20 @@ msgstr "Unstaking KNC"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr "Holders (On-chain)"
+#~ msgid "Holders (On-chain)"
+#~ msgstr "Holders (On-chain)"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr "Liquidations on Centralized Exchanges."
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr "Liquidations on Centralized Exchanges."
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7384,11 +7418,11 @@ msgstr "We can amplify liquidity pools to provide much higher capital efficiency
#~ msgid "Acknowledge"
#~ msgstr "Acknowledge"
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr "Cancel"
@@ -7422,16 +7456,16 @@ msgstr "STATUS"
#~ msgstr "Funding rate is useful in identifying short-term trends.<0>Positive funding rates0> suggests traders are <1>bullish1> . Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3> . Extremely negative funding rates may result in short positions getting squeezed."
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr "Amount to remove"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr "Top CEX Negative Netflow Tokens"
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr "Top CEX Negative Netflow Tokens"
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7442,8 +7476,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr "Note: Once your order is filled, you will receive {currencyName} ({currencySymbol})"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr "Enable Metamask in C98"
+#~ msgid "Enable Metamask in C98"
+#~ msgstr "Enable Metamask in C98"
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7458,8 +7492,8 @@ msgstr "Farms"
#~ msgstr "Summary"
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr "No vesting schedule!"
+#~ msgid "No vesting schedule!"
+#~ msgstr "No vesting schedule!"
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7482,8 +7516,8 @@ msgstr "Place Order"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr "Deposited Liquidity"
+#~ msgid "Deposited Liquidity"
+#~ msgstr "Deposited Liquidity"
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7505,16 +7539,16 @@ msgstr "<0>Price Impact0><1>is high1>"
#~ msgstr "Referral Fee"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr "Centralized Exchanges"
+#~ msgid "Centralized Exchanges"
+#~ msgstr "Centralized Exchanges"
#:
#~ msgid "DEPOSIT"
#~ msgstr "DEPOSIT"
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr "LIQUIDITY INCENTIVES"
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr "LIQUIDITY INCENTIVES"
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7537,12 +7571,10 @@ msgstr "Insufficient {0} balance."
#~ msgstr "Starting in"
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr "Classic Pools"
@@ -7550,14 +7582,18 @@ msgstr "Classic Pools"
msgid "Your currently existing order is {filledPercent}% filled."
msgstr "Your currently existing order is {filledPercent}% filled."
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr "Unable to calculate <0>Price Impact.0>{0}"
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr "Use a referral code to get access to KyberAI faster!"
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr "Use a referral code to get access to KyberAI faster!"
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7572,14 +7608,17 @@ msgstr "Choose between Infinite or Custom allowance. <0>Read more ↗0>"
#~ msgstr "Lucky Winners"
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
-msgstr "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr "First Discovered"
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
+msgstr "Unlocked Amount (USDC)"
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr "Your Position"
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr "Edit"
@@ -7606,16 +7645,16 @@ msgid "Min"
msgstr "Min"
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr "Update Liquidity"
+#~ msgid "Update Liquidity"
+#~ msgstr "Update Liquidity"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr "LOWER SLIPPAGE"
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr "LOWER SLIPPAGE"
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7634,8 +7673,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr "No staked liquidity found. Check out our <0>Farms.0>"
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr "You have {numberInRangePos} in-range position(s)."
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr "You have {numberInRangePos} in-range position(s)."
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7688,22 +7727,23 @@ msgstr "No. You have to stake a minimum of 500 KNC in KyberDAO (on Ethereum) <0>
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr "Available for yield farming. Click <0>here0> to go to the farm."
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr "Note: There are existing pools for this token pair. Please check"
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr "Note: There are existing pools for this token pair. Please check"
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr "No liquidity found."
+#~ msgid "No liquidity found."
+#~ msgstr "No liquidity found."
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr "Swap Anyway"
@@ -7731,8 +7771,8 @@ msgstr "Your Wallet Address"
#~ msgstr "The amount to bridge must be less than {0} {1}"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7747,8 +7787,8 @@ msgstr "In order to enable MEV Protection with {name}, you must change the RPC e
#~ msgstr "Max {0} {1}"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr "Sort"
+#~ msgid "Sort"
+#~ msgstr "Sort"
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7760,16 +7800,16 @@ msgstr "Your passcode"
#~ msgstr "Fee Tier"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr "Referral code is invalid"
+#~ msgid "Referral code is invalid"
+#~ msgstr "Referral code is invalid"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr "Supplying {0} across {1} positions"
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr "All positions"
+#~ msgid "All positions"
+#~ msgstr "All positions"
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7777,20 +7817,20 @@ msgstr "Do you want to make a <0>Limit Order0> instead?"
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr "Show more"
+#~ msgid "Show more"
+#~ msgstr "Show more"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr "You need to withdraw your liquidity first"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr "Top All Tokens"
+#~ msgid "Top All Tokens"
+#~ msgstr "Top All Tokens"
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7809,15 +7849,15 @@ msgid "DAO Governance"
msgstr "DAO Governance"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr "Farming Ranges"
+#~ msgid "Farming Ranges"
+#~ msgstr "Farming Ranges"
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr "Something went wrong. Please try again."
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr "My Pools"
@@ -7841,10 +7881,6 @@ msgstr "Stands for amplification factor. Each pool can have its own AMP. Pools w
#~ msgstr "Minimum amount you will receive or your transaction will revert"
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr "Approve {0}"
@@ -7871,13 +7907,18 @@ msgstr "What is KNC used for?"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
-msgstr "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr "24H Volume"
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
+msgstr "Rate"
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr "My Elastic Pools"
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7889,8 +7930,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr "The total token amount ({0} {1}) you are trying to deposit across the {2} positions is more than your available token balance ({3} {4})"
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr "View all token markets across decentralized and centralized exchanges."
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr "View all token markets across decentralized and centralized exchanges."
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7901,20 +7942,20 @@ msgid "KYBER DAO"
msgstr "KYBER DAO"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr "Want to know more? Explore KNC in KyberAI!"
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr "Want to know more? Explore KNC in KyberAI!"
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr "Prices and Pool share"
+#~ msgid "Prices and Pool share"
+#~ msgstr "Prices and Pool share"
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr "{hour} hours ago"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr "Note: Live trades may be slightly delayed."
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr "Note: Live trades may be slightly delayed."
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7935,16 +7976,16 @@ msgid "Accept"
msgstr "Accept"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr "List your tokens permissionlessly."
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr "List your tokens permissionlessly."
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr "Cross-Chain Swaps"
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr "Update your liquidity"
+#~ msgid "Update your liquidity"
+#~ msgstr "Update your liquidity"
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7967,8 +8008,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -7982,6 +8023,10 @@ msgstr "To participate in KyberSwap's Gas Refund Program, you must first stake K
msgid "Vote - Earn Rewards"
msgstr "Vote - Earn Rewards"
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr "Limit Orders"
@@ -8004,12 +8049,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr "Something went wrong,<0/>please try again"
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr "Go to farm ↗"
+#~ msgid "Go to farm ↗"
+#~ msgstr "Go to farm ↗"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr "My Share of Pool"
+#~ msgid "My Share of Pool"
+#~ msgstr "My Share of Pool"
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8036,8 +8081,8 @@ msgstr "This alert will be disabled after its triggered once"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr "Approve Farming Contract"
+#~ msgid "Approve Farming Contract"
+#~ msgstr "Approve Farming Contract"
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8071,8 +8116,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr "Please ensure the selected token has been imported in your Brave wallet before sending. Otherwise, your transaction will be rejected. In this case, you can quickly import token with contract address below."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr "No extra deposit or withdrawal fees."
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr "No extra deposit or withdrawal fees."
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8098,6 +8143,10 @@ msgstr "Paste from clipboard"
msgid "Error when changing network."
msgstr "Error when changing network."
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
@@ -8115,8 +8164,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr "What is the maximum gas refund limit for a user?"
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8126,9 +8175,13 @@ msgstr "KNC is a utility and governance token and an integral part of Kyber Netw
msgid "Claimed"
msgstr "Claimed"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr "Next"
@@ -8137,8 +8190,8 @@ msgstr "Next"
#~ msgstr "More info"
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr "Create"
+#~ msgid "Create"
+#~ msgstr "Create"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8177,8 +8230,9 @@ msgstr "Wrap"
#~ msgstr "Qualified"
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8189,10 +8243,14 @@ msgstr "Claim"
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr "You can find the vesting details of each category of assets that were affected by the exploit below."
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr "Farming Range"
+#~ msgid "Farming Range"
+#~ msgstr "Farming Range"
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8219,16 +8277,16 @@ msgstr "Edit the order without paying gas."
#~ msgstr "Txn Hash"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr "Order Expired"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr "Staked Balance"
+#~ msgid "Staked Balance"
+#~ msgstr "Staked Balance"
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8243,16 +8301,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr "Create a new liquidity pool and earn fees on trades for this token pair."
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr "Support / Resistance Levels"
+#~ msgid "Support / Resistance Levels"
+#~ msgstr "Support / Resistance Levels"
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr "Save Error"
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr "Enter a recipient"
@@ -8264,7 +8320,6 @@ msgstr "Enter a recipient"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr "Out of range"
@@ -8289,13 +8344,17 @@ msgstr "These Terms and Conditions should be read in conjunction with the KyberS
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr "An error occurred. Try refreshing the price rate or increase max slippage"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
+msgstr "Expires in"
+
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
-msgstr "404"
+#~ msgid "404"
+#~ msgstr "404"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr "Dynamic Farm"
+#~ msgid "Dynamic Farm"
+#~ msgstr "Dynamic Farm"
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8309,11 +8368,10 @@ msgid "Notifications"
msgstr "Notifications"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr "<0>Identify0> the Elastic farm you would like to participate in."
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr "Back"
@@ -8322,16 +8380,16 @@ msgstr "Back"
#~ msgstr "Your Current Position"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr "Supplying {amountAText} and {amountBText} across {len} positions"
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr "Total estimated return based on yearly fees and bonus rewards of the pool."
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8341,8 +8399,11 @@ msgstr "Checking"
msgid "TVL From DEXs"
msgstr "TVL From DEXs"
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr "Share with your friends!"
@@ -8350,8 +8411,8 @@ msgstr "Share with your friends!"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr "24h volume"
+#~ msgid "24h volume"
+#~ msgstr "24h volume"
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8370,53 +8431,39 @@ msgstr "Alert when"
msgid "{0}% Transaction Fee"
msgstr "{0}% Transaction Fee"
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr "Enter an amount"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr "Top 25 Holders"
+#~ msgid "Top 25 Holders"
+#~ msgstr "Top 25 Holders"
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8428,8 +8475,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr "Suitable for pairs with low price volatility. Anticipating price to fluctuate within ~9%. You can earn fees even if the price goes up by 4.5% or goes down by 4.5%."
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr "Business Enquiries"
+#~ msgid "Business Enquiries"
+#~ msgstr "Business Enquiries"
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8439,13 +8486,21 @@ msgstr "Select a network"
#~ msgid "Earn more due to compounding"
#~ msgstr "Earn more due to compounding"
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr "Aggregator Trading"
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr "Approved {tokenSymbol}"
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8456,8 +8511,8 @@ msgstr "Insufficient W{nativeTokenSymbol} balance"
#~ msgstr "Upcoming"
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr "KyberAI Widget"
+#~ msgid "KyberAI Widget"
+#~ msgstr "KyberAI Widget"
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8472,16 +8527,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr "Your order to pay {mainMsg} was successfully filled"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr "Checking data..."
+#~ msgid "Checking data..."
+#~ msgstr "Checking data..."
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr "About Dynamic Farms"
+#~ msgid "About Dynamic Farms"
+#~ msgstr "About Dynamic Farms"
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8508,7 +8563,6 @@ msgstr "An error occurred. Refresh the page and try again."
#~ msgstr "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds"
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr "New"
@@ -8518,8 +8572,8 @@ msgstr "New"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr "Not Applicable"
+#~ msgid "Not Applicable"
+#~ msgstr "Not Applicable"
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8535,8 +8589,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr "Delegate is only available on Ethereum chain"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr "View Farms"
+#~ msgid "View Farms"
+#~ msgstr "View Farms"
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8547,15 +8601,7 @@ msgstr "View Farms"
#~ msgstr "Enables high slippage trades. Use at your own risk"
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8572,8 +8618,8 @@ msgid "Github"
msgstr "Github"
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8605,20 +8651,20 @@ msgid "You have already delegated your voting power to this address."
msgstr "You have already delegated your voting power to this address."
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr "Available for yield farming"
+#~ msgid "Available for yield farming"
+#~ msgstr "Available for yield farming"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
#~ msgstr "Click Get Started to subscribe to Telegram"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr "Token Name"
+#~ msgid "Token Name"
+#~ msgstr "Token Name"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8629,16 +8675,16 @@ msgstr "Sign in with the connected wallet"
#~ msgstr "Get pool {0} info"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr "On-chain & Open Source"
+#~ msgid "On-chain & Open Source"
+#~ msgstr "On-chain & Open Source"
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr "Price Impact is Very High"
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr "Tokens Breakdown"
+#~ msgid "Tokens Breakdown"
+#~ msgstr "Tokens Breakdown"
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8666,12 +8712,12 @@ msgstr "Insufficient {inSymbol} balance"
#~ msgstr "You can customize advanced settings like slippage and other display settings here."
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr "Your favourite pairs will appear here"
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr "Your favourite pairs will appear here"
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8679,14 +8725,7 @@ msgstr "Your favourite pairs will appear here"
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr "Min Price"
@@ -8699,8 +8738,8 @@ msgstr "Min Price"
#~ msgstr "View"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr "Ape Smart with <0>KyberAI0>"
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr "Ape Smart with <0>KyberAI0>"
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8720,24 +8759,24 @@ msgid "Review Order"
msgstr "Review Order"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr "Dynamic Farms"
+#~ msgid "Dynamic Farms"
+#~ msgstr "Dynamic Farms"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr "Total fee rewards"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr "Farming Guide"
+#~ msgid "Farming Guide"
+#~ msgstr "Farming Guide"
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr "Static"
+#~ msgid "Static"
+#~ msgstr "Static"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8749,17 +8788,17 @@ msgstr "Staking {inputValue} KNC to KyberDAO"
#~ msgstr "+ Add Liquidity"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr "You don't have any available position, Please deposit and stake first"
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr "You don't have any available position, Please deposit and stake first"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr "View Earnings"
+#~ msgid "View Earnings"
+#~ msgstr "View Earnings"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr "END TIME ↓"
+#~ msgid "END TIME ↓"
+#~ msgstr "END TIME ↓"
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8811,28 +8850,19 @@ msgstr "We suggest you increase the value of your limit order to at least <0>${t
#~ msgstr "No token found"
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr "Available for yield farming."
+#~ msgid "Available for yield farming."
+#~ msgstr "Available for yield farming."
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr "Current Price"
@@ -8842,8 +8872,8 @@ msgstr "Current Price"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr "View more ↗"
+#~ msgid "View more ↗"
+#~ msgstr "View more ↗"
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8869,13 +8899,15 @@ msgstr "My position"
msgid "Deposit"
msgstr "Deposit"
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr "Add {0} to {name}"
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr "One token is close to 0% in the pool ratio. Pool might go inactive."
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr "Invalid recipient"
@@ -8890,16 +8922,16 @@ msgstr "Total Gas Refund"
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr "You still have {0} in liquidity to stake to earn even more farming rewards"
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr "Your order to pay {mainMsg} has expired{filledComponent}"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8930,12 +8962,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr "On the “Pending” tab, there is a countdown timer showing when pending refunds become available for claiming. Refunds become available for claiming at the start of n+2 epoch. Each epoch lasts approximately 2 weeks. You can claim your rewards in the KNC Utility page or in the Wallet widget."
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr "Elastic is not supported on Aurora. Please switch to other chains"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr "AMP LIQUIDITY ↑"
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr "AMP LIQUIDITY ↑"
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8953,7 +8985,6 @@ msgstr "Due to market conditions, your output has been updated from {0} {1} to {
msgid "You don't have any balance token"
msgstr "You don't have any balance token"
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr "Zap will be available soon."
@@ -8975,7 +9006,6 @@ msgstr "Import"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr "Yes"
@@ -9015,7 +9045,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr "Due to a potential issue with our legacy <0>Elastic protocol0>, we have permanently paused our <1>Elastic {0} (Legacy)1>. If you wish to participate in our {1}, check out our new and audited <2>Elastic {2}2>."
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr "Vote"
@@ -9042,12 +9071,12 @@ msgstr "Minimum Received"
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr "Calculated at {0} when price was {1}"
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr "Calculated at {0} when price was {1}"
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr "Update Selected"
+#~ msgid "Update Selected"
+#~ msgstr "Update Selected"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9059,13 +9088,17 @@ msgid "I pay"
msgstr "I pay"
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr "{0}% claimable"
+#~ msgid "{0}% claimable"
+#~ msgstr "{0}% claimable"
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr "Here you can view all your liquidity and staked balances in the Classic Pools."
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr "<0><1>Price Impact1>0> is very high. You will lose funds!"
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr "Your verification link has expired!"
@@ -9076,8 +9109,8 @@ msgstr "Order Cancel Failed"
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr "Estimated Risk"
+#~ msgid "Estimated Risk"
+#~ msgstr "Estimated Risk"
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9099,12 +9132,12 @@ msgid "Liquidity Sources"
msgstr "Liquidity Sources"
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr "Fill survey"
+#~ msgid "Fill survey"
+#~ msgstr "Fill survey"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9133,14 +9166,13 @@ msgstr "An error occurred while attempting to authorize this token. Please appro
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr "Insufficient liquidity available. Please reload page and try again!"
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr "Insufficient liquidity available. Please reload page and try again!"
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr "Use this tool to find pairs that don't automatically appear in the interface"
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr "Your trade route"
@@ -9188,8 +9220,12 @@ msgstr "Voting Power this Epoch: {0}"
#~ msgstr "Discover more"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
-msgstr "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr "Top CEX Positive Netflow Tokens"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
+msgstr "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to 10 tokens"
@@ -9221,8 +9257,8 @@ msgstr "Insufficient {0} balance"
#~ msgstr "MAX PRICE"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr "You're first in line!"
+#~ msgid "You're first in line!"
+#~ msgstr "You're first in line!"
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9247,20 +9283,25 @@ msgstr "This token isn’t frequently swapped. Please do your own research befor
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr "KyberScore Delta"
+#~ msgid "KyberScore Delta"
+#~ msgstr "KyberScore Delta"
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr "Unstaked your liquidity"
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
-msgstr "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
+msgstr "Phase 2"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr "Top Trade Tokens"
+#~ msgid "Top Trade Tokens"
+#~ msgstr "Top Trade Tokens"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9271,8 +9312,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr "Fees charged by KyberSwap and Squid."
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr "MY DEPOSIT ↓"
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr "MY DEPOSIT ↓"
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9284,8 +9325,8 @@ msgstr "Insufficient {nativeTokenSymbol} balance"
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr "You can only favorite up to three token pairs."
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr "You can only favorite up to three token pairs."
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9311,8 +9352,12 @@ msgid "Copy address to clipboard"
msgstr "Copy address to clipboard"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
-msgstr "Expires In"
+#~ msgid "Expires In"
+#~ msgstr "Expires In"
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
+msgstr "Available assets for claiming"
#: src/components/Menu/index.tsx
msgid "Icons"
@@ -9320,8 +9365,8 @@ msgstr "Icons"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr "AVG APR"
+#~ msgid "AVG APR"
+#~ msgstr "AVG APR"
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9332,8 +9377,8 @@ msgstr "Select a token to find your liquidity."
#~ msgstr "delegated voting power to {0}...{1}"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr "Referral Code (Optional)"
+#~ msgid "Referral Code (Optional)"
+#~ msgstr "Referral Code (Optional)"
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9345,8 +9390,8 @@ msgstr "Referral Code (Optional)"
#~ msgstr "List your tokens permissionlessly"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr "Seamless liquidity."
+#~ msgid "Seamless liquidity."
+#~ msgstr "Seamless liquidity."
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9364,13 +9409,17 @@ msgstr "Source chain gas fee:"
#~ msgid "Update list"
#~ msgstr "Update list"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
+msgstr "No orders."
+
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
-msgstr "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9402,32 +9451,36 @@ msgstr "Suitable for pairs with low price volatility. Anticipating price to fluc
#~ msgstr "A token pair can have multiple pools, each with a different swap fee. Your swap fee earnings will be automatically reinvested in your pool"
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr "All {displayName}"
+#~ msgid "All {displayName}"
+#~ msgstr "All {displayName}"
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr "Zap will include DEX aggregator to find the best price."
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
-msgstr "Your Email"
+#~ msgid "Your Email"
+#~ msgstr "Your Email"
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
+msgstr "Classic is not supported on Blast. Please switch to other chains"
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr "Today, <0>{0}0>"
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr "Today, <0>{0}0>"
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr "Notice for Brave wallet users"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9438,20 +9491,20 @@ msgid "Email Verified"
msgstr "Email Verified"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr "You can only create up to 5 custom watchlists."
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr "You can only create up to 5 custom watchlists."
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr "Tier"
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr "Active Farms"
+#~ msgid "Active Farms"
+#~ msgstr "Active Farms"
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9463,16 +9516,16 @@ msgstr "Can be bought"
#~ msgstr "Information"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr "Low"
+#~ msgid "Low"
+#~ msgstr "Low"
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
#: src/components/TrendingSoonTokenBanner/index.tsx
#~ msgid "seems bullish right now."
@@ -9483,8 +9536,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr "Specify the amount of time that must pass before the alert can be fired again."
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9527,10 +9580,18 @@ msgstr "Position {0}: Enter an amount"
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
-msgstr "My Rewards"
+#~ msgid "My Rewards"
+#~ msgstr "My Rewards"
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
+msgstr "<0>Swap0> Tokens at Superior Rates"
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9545,8 +9606,8 @@ msgid "Open Source"
msgstr "Open Source"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9557,8 +9618,8 @@ msgstr "An intelligent platform that provides valuable insights on <0>4000+ Toke
#~ msgstr "Find a token by searching for its name or symbol or by pasting its address below<0/><1/>You can select and trade any token on KyberSwap."
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr "Get pool info"
+#~ msgid "Get pool info"
+#~ msgstr "Get pool info"
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9570,8 +9631,8 @@ msgstr "KNC Migration"
#~ msgstr "Max Slippage:"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr "View Pool Details"
+#~ msgid "View Pool Details"
+#~ msgstr "View Pool Details"
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9582,8 +9643,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr "Learn more about our limit orders <0>here0>."
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr "Stake Error"
+#~ msgid "Stake Error"
+#~ msgstr "Stake Error"
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9597,9 +9658,14 @@ msgstr "Your chain is mismatched, please make sure your wallet is switch to the
msgid "Confirm this transaction in your wallet"
msgstr "Confirm this transaction in your wallet"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
+msgstr "Opt Out"
+
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
-msgstr "Let's go!"
+#~ msgid "Let's go!"
+#~ msgstr "Let's go!"
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
@@ -9610,10 +9676,10 @@ msgstr "Let's go!"
#~ msgstr "Success!"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr "to Centralized Exchanges"
+#~ msgid "to Centralized Exchanges"
+#~ msgstr "to Centralized Exchanges"
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr "Campaigns"
@@ -9626,7 +9692,6 @@ msgstr "Wrap {inSymbol}"
#~ msgstr "Dark Mode"
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr "Total LP Tokens"
@@ -9651,7 +9716,6 @@ msgstr "<0>Multichain0> is a well-known cross-chain router protocol that facil
#~ msgstr "TrueSight"
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9689,7 +9753,6 @@ msgstr "Please review the details of your swap:"
#~ msgstr "Current Market Price is {currentPrice} USDT per stMatic"
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr "Pool"
@@ -9702,8 +9765,8 @@ msgstr "Pool"
#~ msgstr "Select a Wallet"
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr "Top traded pairs"
+#~ msgid "Top traded pairs"
+#~ msgstr "Top traded pairs"
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9714,7 +9777,6 @@ msgstr "Chart is unavailable right now"
#~ msgstr "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~150%. You can earn fees even if the price goes up by 75% or goes down by 75%."
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr "Create Pool"
@@ -9723,12 +9785,10 @@ msgstr "Create Pool"
#~ msgstr "Search name or paste address"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr "View All"
+#~ msgid "View All"
+#~ msgstr "View All"
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr "Volume (24H)"
@@ -9737,12 +9797,12 @@ msgstr "Volume (24H)"
#~ msgstr "Don't worry, your funds are <0>100% safe0>. And you are still earning farming rewards."
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr "AMP LIQUIDITY ↓"
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr "AMP LIQUIDITY ↓"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9769,8 +9829,8 @@ msgstr "Your limit order price is <0>{percentWithoutMinus}0> lower than the ma
#~ msgstr "Remove from watchlist"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr "HIGHER RETURNS"
+#~ msgid "HIGHER RETURNS"
+#~ msgstr "HIGHER RETURNS"
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9781,8 +9841,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr "Cancel all orders failed. Please try again."
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr "Number of Trades / Type of Trade"
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr "Number of Trades / Type of Trade"
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9804,6 +9864,7 @@ msgstr "Wallet address"
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9854,8 +9915,8 @@ msgstr "ACTION"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr "Increase"
+#~ msgid "Increase"
+#~ msgstr "Increase"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9889,16 +9950,16 @@ msgstr "Add liquidity for a token pair and earn fees on the trades that are in y
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr "Pool Information"
+#~ msgid "Pool Information"
+#~ msgstr "Pool Information"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr "The token list \"{0}\" has been updated to <0>{1}0>."
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr "Amount staked in a farm."
+#~ msgid "Amount staked in a farm."
+#~ msgstr "Amount staked in a farm."
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9909,8 +9970,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr "You are delegating your voting power to this address. Your stake balance will remain the same. The delegated address will be responsible for the transaction fee The delegated wallet will be able to vote from the <0>next epoch0> onward"
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr "Trending Soon:"
+#~ msgid "Trending Soon:"
+#~ msgstr "Trending Soon:"
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9922,8 +9983,8 @@ msgstr "Trending Soon:"
#~ msgstr "Staked"
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9941,7 +10002,6 @@ msgstr "contract"
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr "Try Again"
@@ -9951,8 +10011,8 @@ msgstr "Try Again"
#~ msgstr "Get {0}-{1} LP ↗"
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr "Decentralized Exchanges"
+#~ msgid "Decentralized Exchanges"
+#~ msgstr "Decentralized Exchanges"
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -9967,17 +10027,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr "{0} out of {numberOfDEXes} selected"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr "Code Audited"
+#~ msgid "Code Audited"
+#~ msgstr "Code Audited"
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr "Available for yield farming. Click {here} to go to the farm."
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr "Available for yield farming. Click {here} to go to the farm."
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr "Change network"
+#~ msgid "Change network"
+#~ msgstr "Change network"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -9987,10 +10047,18 @@ msgstr "Value of each trade (calculated at the point of the trade) on KyberSwap
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr "Token security info provided by Goplus. Please conduct your own research before trading"
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr "Total Vested Amount (USDC)"
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr "We may send multiple tx to complete the swap"
@@ -10000,8 +10068,8 @@ msgid "Buy"
msgstr "Buy"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr "Number of Trades & Type of Trades"
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr "Number of Trades & Type of Trades"
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10013,8 +10081,8 @@ msgstr "Number of Trades & Type of Trades"
#~ msgstr "Total Rewards"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr "New Positions"
+#~ msgid "New Positions"
+#~ msgstr "New Positions"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10025,12 +10093,12 @@ msgid "Completed"
msgstr "Completed"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr "TVL ↓"
+#~ msgid "TVL ↓"
+#~ msgstr "TVL ↓"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10038,16 +10106,16 @@ msgstr "<0>Deposit0> your liquidity position (NFT token) into the farming cont
#~ msgstr "You have no Transaction History"
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr "KyberAI Watchlist"
+#~ msgid "KyberAI Watchlist"
+#~ msgstr "KyberAI Watchlist"
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr "Search by token name or tag"
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr "Gas fees will be higher than usual due to initialization of the pool."
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10057,6 +10125,10 @@ msgstr "Gas fees will be higher than usual due to initialization of the pool."
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr "Thank you. You have chosen to Opt Out."
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr "ABOUT KNC"
@@ -10071,8 +10143,8 @@ msgstr "Cooldown: <0>{0}0>"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr "Number of Holders"
+#~ msgid "Number of Holders"
+#~ msgstr "Number of Holders"
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10111,20 +10183,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr "KyberSwap is a decentralized exchange (DEX) aggregator and an automated market maker (AMM). We provide our traders with the <0>superior token prices0> by analyzing rates across hundreds of exchanges instantly! On the other hand, our liquidity providers can add liquidity to our pools to <1>earn fees and rewards!1>"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr "Check out our latest trading campaigns and participate in them to earn rewards!"
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr "Detail"
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
#:
#:
@@ -10132,6 +10204,10 @@ msgstr "You are creating a new pool and will be the first liquidity provider. Th
#~ msgid "APY"
#~ msgstr "APY"
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr "Route"
@@ -10145,12 +10221,12 @@ msgid "this profile"
msgstr "this profile"
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr "View positions"
+#~ msgid "View positions"
+#~ msgstr "View positions"
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr "Share this token"
+#~ msgid "Share this token"
+#~ msgstr "Share this token"
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10160,10 +10236,6 @@ msgstr "Share this token"
msgid "Order has been successfully cancelled."
msgstr "Order has been successfully cancelled."
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr "Preview"
@@ -10181,12 +10253,12 @@ msgid "View less"
msgstr "View less"
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr "Price Range ({0} per {1})"
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr "Price Range ({0} per {1})"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10251,8 +10323,8 @@ msgstr "I want to cancel my order where"
#~ msgstr "*Required"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr "FEES ↑"
+#~ msgid "FEES ↑"
+#~ msgstr "FEES ↑"
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10264,9 +10336,13 @@ msgstr "Swap Error"
msgid "Confirm Swap Details"
msgstr "Confirm Swap Details"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
+msgstr "Insufficient ERC20 balance to pay gas fee"
+
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
-msgstr "KyberAI - Ape Smart!"
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr "KyberAI - Ape Smart!"
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
@@ -10285,8 +10361,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr "Farming Pools"
+#~ msgid "Farming Pools"
+#~ msgstr "Farming Pools"
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10298,8 +10374,8 @@ msgstr "Your {totalOrder} cancellation orders have been submitted"
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr "There are no pools for this token pair."
+#~ msgid "There are no pools for this token pair."
+#~ msgstr "There are no pools for this token pair."
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10310,8 +10386,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr "Place Limit Orders, Bridge Tokens or Buy Crypto"
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10319,8 +10395,8 @@ msgid "Permit Error"
msgstr "Permit Error"
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr "Connect your wallet to start trading"
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr "Connect your wallet to start trading"
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10343,27 +10419,26 @@ msgstr "Hard Edit"
msgid "Wallet"
msgstr "Wallet"
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr "Import it."
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr "Live DEX Trades"
+#~ msgid "Live DEX Trades"
+#~ msgstr "Live DEX Trades"
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr "Here are our top tokens by KyberAI:"
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr "Here are our top tokens by KyberAI:"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr "POOLS | AMP"
+#~ msgid "POOLS | AMP"
+#~ msgstr "POOLS | AMP"
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10374,12 +10449,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr "Your orders below has expired:<0/>{listOrderName}"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr "KyberAI Tutorial"
+#~ msgid "KyberAI Tutorial"
+#~ msgstr "KyberAI Tutorial"
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr "Your rewards may be automatically harvested a few days after the farm ends."
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10389,8 +10464,6 @@ msgstr "Profile updated"
msgid "Wrong Chain"
msgstr "Wrong Chain"
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10439,21 +10512,29 @@ msgid "I want to transfer"
msgstr "I want to transfer"
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr "{numOfInactivePositions} Inactive"
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr "{numOfInactivePositions} Inactive"
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr "Your orders below was successfully filled:<0/>{listOrderName}"
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
-msgstr "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr "{0} - {1}"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
+msgstr "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
-msgstr "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr "Dynamic Fees"
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
+msgstr "Once you make a selection, you are unable to change your choice."
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your email has already been linked to wallet {0}, it will be unlinked automatically if you proceed"
@@ -10470,13 +10551,17 @@ msgid "Undelegate"
msgstr "Undelegate"
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr "View Farm"
+#~ msgid "View Farm"
+#~ msgstr "View Farm"
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr "CURRENT PRICE"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr "Option {userSelectedOption}"
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
@@ -10491,8 +10576,8 @@ msgstr "View Farm"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr "Outflow"
+#~ msgid "Outflow"
+#~ msgstr "Outflow"
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10517,8 +10602,8 @@ msgid "Stake Amount"
msgstr "Stake Amount"
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr "Step 4: Stake in a farm"
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr "Step 4: Stake in a farm"
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10538,33 +10623,32 @@ msgstr "Save"
#~ msgstr "Choose your preferred network. KyberSwap is a multi chain platform that supports over 12 networks!"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr "Stake your LP tokens in the farm you identified earlier."
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr "Stake your LP tokens in the farm you identified earlier."
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr "This indicates change in the value of your earnings in the last 24H"
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr "This indicates change in the value of your earnings in the last 24H"
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr "FEES (24H)"
+#~ msgid "FEES (24H)"
+#~ msgstr "FEES (24H)"
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr "Sign-In with Email"
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr "Create Classic Pool Error"
+#~ msgid "Create Classic Pool Error"
+#~ msgstr "Create Classic Pool Error"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr "Create a watchlist of your favorite tokens, and analyze them quickly"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr "Claim your farming rewards! (Note: some farms may have a vesting period)."
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10578,6 +10662,10 @@ msgstr "Expected gas refund:"
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
@@ -10588,8 +10676,8 @@ msgid "All Chains"
msgstr "All Chains"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10605,8 +10693,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut} {tokenSymbolOut}"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr "Status"
+#~ msgid "Status"
+#~ msgstr "Status"
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10615,20 +10703,20 @@ msgstr "Status"
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr "To be extended soon"
+#~ msgid "To be extended soon"
+#~ msgstr "To be extended soon"
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr "My Pool Earnings"
+#~ msgid "My Pool Earnings"
+#~ msgstr "My Pool Earnings"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr "Signing In"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10647,8 +10735,6 @@ msgstr "Verify"
#~ msgid "via {0} token list"
#~ msgstr "via {0} token list"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10659,8 +10745,8 @@ msgstr "Output is estimated. If the price changes by more than {displaySlp}% you
#~ msgstr "PRICE RANGE ({0} per {1})"
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr "Ape Smart!"
+#~ msgid "Ape Smart!"
+#~ msgstr "Ape Smart!"
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10671,8 +10757,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr "Once an order expires, it will be cancelled automatically. No gas fees will be charged."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr "Wallets which hold 1% or more of the circulating supply of this token."
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10712,8 +10798,6 @@ msgid "Mint Function"
msgstr "Mint Function"
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr "About"
@@ -10746,7 +10830,6 @@ msgstr "Failed to switch to {name} RPC Endpoint"
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr "You have successfully subscribed with the email address {0}"
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10757,8 +10840,8 @@ msgstr "Insufficient Liquidity in the Liquidity Pool to Swap"
#~ msgstr "Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive"
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10769,12 +10852,12 @@ msgid "Cross-Chain Bridge"
msgstr "Cross-Chain Bridge"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr "STAKED TVL"
+#~ msgid "STAKED TVL"
+#~ msgstr "STAKED TVL"
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr "Add liquidity to our Classic Pools and earn trading fees automatically."
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10785,8 +10868,8 @@ msgid "Profile"
msgstr "Profile"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10799,21 +10882,15 @@ msgid "Notification Preferences"
msgstr "Notification Preferences"
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr "My Farm APR"
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr "Swap"
@@ -10830,17 +10907,21 @@ msgstr "Your email has been verified successfully! You can now customize your pr
#~ msgstr "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr "Your Referral Link"
+#~ msgid "Your Referral Link"
+#~ msgstr "Your Referral Link"
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr "Hide"
+#~ msgid "Hide"
+#~ msgstr "Hide"
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10856,21 +10937,20 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr "Since you have chosen to keep your current profile connected, we will keep it active whenever you switch wallets. If you ever wish to modify this setting, you can do so in your <0>user profile0>."
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr "In range"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10888,9 +10968,9 @@ msgstr "Sending {inputAmount} {inSymbol} to {recipient}"
msgid "Language"
msgstr "Language"
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr "Referral"
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr "Referral"
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10902,8 +10982,8 @@ msgstr "There was an issue while trying to confirm your price. Please try to swa
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr "Insufficient {symbol} balance."
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr "Insufficient {symbol} balance."
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10912,8 +10992,8 @@ msgstr "FOR TRADERS"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr "Unamplified Pool existed"
+#~ msgid "Unamplified Pool existed"
+#~ msgstr "Unamplified Pool existed"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10959,8 +11039,8 @@ msgstr "Send axlUSDC to {dstChainName}"
#~ msgstr "Maximum Sold"
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -10983,14 +11063,13 @@ msgstr "Order Placed"
#~ msgstr "You can add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr "Not Available"
+#~ msgid "Not Available"
+#~ msgstr "Not Available"
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr "Invalid input amount"
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr "Price impact is too high"
@@ -11000,8 +11079,8 @@ msgstr "Price impact is too high"
#~ msgstr "Latest"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11012,8 +11091,8 @@ msgstr "Transaction time limit"
#~ msgstr "Select your network"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11023,7 +11102,6 @@ msgstr "Looking to make a"
msgid "50%"
msgstr "50%"
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr "Price impact is high"
@@ -11033,16 +11111,16 @@ msgstr "Price impact is high"
#~ msgstr "Include Tokens"
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr "Deposit Selected"
+#~ msgid "Deposit Selected"
+#~ msgstr "Deposit Selected"
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr "Your pool share:"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr "Manage"
+#~ msgid "Manage"
+#~ msgstr "Manage"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11058,20 +11136,24 @@ msgstr "Copy Txn Hash"
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr "Your position will be 100% composed of {baseSymbol} at this price"
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
-msgstr "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr "24h Volume"
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
+msgstr "Choose Grant Option"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr "Click on the Settings icon"
+#~ msgid "Click on the Settings icon"
+#~ msgstr "Click on the Settings icon"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr "Open C98 Browser Extension"
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr "Open C98 Browser Extension"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11086,16 +11168,16 @@ msgstr "Order History"
#~ msgstr "Liquidity Pool Alert"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr "Key Features"
+#~ msgid "Key Features"
+#~ msgstr "Key Features"
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr "Swap fees charged by {clientId}."
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr "Select a Range"
+#~ msgid "Select a Range"
+#~ msgstr "Select a Range"
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11106,10 +11188,9 @@ msgstr "Select a Range"
#~ msgstr "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or<2>Bearish2> in the short term."
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr "<0>Price Impact0><1>is very high. You will lose funds!1>"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11136,8 +11217,8 @@ msgstr "Tier {0}"
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr "Manage Lists"
+#~ msgid "Manage Lists"
+#~ msgstr "Manage Lists"
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11151,17 +11232,21 @@ msgstr "Your KIP Voting Power"
msgid "All Closed Orders"
msgstr "All Closed Orders"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
+msgstr "Sign with your wallet"
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
-msgstr "About Static Farms"
+#~ msgid "About Static Farms"
+#~ msgstr "About Static Farms"
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr "We could not find anything. Try again."
+#~ msgid "We could not find anything. Try again."
+#~ msgstr "We could not find anything. Try again."
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11172,8 +11257,8 @@ msgid "has been failed to transferred from"
msgstr "has been failed to transferred from"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11184,16 +11269,20 @@ msgstr "Liquidity providers can earn passive income by participating in our Kybe
#~ msgstr "Wallets which hold more than 5% of the circulating supply of this token"
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr "Your Referral Code"
+#~ msgid "Your Referral Code"
+#~ msgstr "Your Referral Code"
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr "Regular"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
+msgstr "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
+
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
-msgstr "Chain"
+#~ msgid "Chain"
+#~ msgstr "Chain"
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
@@ -11208,8 +11297,8 @@ msgid "All Active Orders"
msgstr "All Active Orders"
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr "AMP LIQUIDITY"
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr "AMP LIQUIDITY"
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11221,17 +11310,13 @@ msgid "Keep Current Profile"
msgstr "Keep Current Profile"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr "Instantly buy or sell tokens at superior prices"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11245,8 +11330,8 @@ msgstr "Use Wrapped Token"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11256,12 +11341,12 @@ msgid "Migrate"
msgstr "Migrate"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr "My Watchlists"
+#~ msgid "My Watchlists"
+#~ msgstr "My Watchlists"
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr "Currently Trending"
+#~ msgid "Currently Trending"
+#~ msgstr "Currently Trending"
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11272,8 +11357,8 @@ msgstr "Currently Trending"
#~ msgstr "{featureText} is only available on Ethereum chain. Please switch network to continue."
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr "Last 7d price"
+#~ msgid "Last 7d price"
+#~ msgstr "Last 7d price"
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11305,22 +11390,17 @@ msgstr "Add liquidity into our Pools to earn trading fees & participate in our F
#~ msgid "{day} {0} ago"
#~ msgstr "{day} {0} ago"
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr "Loading"
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr "VOLUME (24H)"
+#~ msgid "VOLUME (24H)"
+#~ msgstr "VOLUME (24H)"
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr "Limit"
+#~ msgid "Limit"
+#~ msgstr "Limit"
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11332,8 +11412,8 @@ msgid "Snapshot"
msgstr "Snapshot"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr "Number / Volume of Tranfers"
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr "Number / Volume of Tranfers"
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11352,16 +11432,16 @@ msgstr "Here you can view all your liquidity and staked balances in the Elastic
#~ msgstr "Turn on to display token info"
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr "Bearish:"
+#~ msgid "Bearish:"
+#~ msgstr "Bearish:"
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr "Set a price alert"
+#~ msgid "Set a price alert"
+#~ msgstr "Set a price alert"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr "Fees Earned"
+#~ msgid "Fees Earned"
+#~ msgstr "Fees Earned"
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11381,16 +11461,16 @@ msgstr "Add a new position"
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr "Estimated Profit"
+#~ msgid "Estimated Profit"
+#~ msgstr "Estimated Profit"
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr "This order is not supported gasless cancel. Because it was created by our old contract"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr "High"
+#~ msgid "High"
+#~ msgstr "High"
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11399,6 +11479,7 @@ msgstr "High"
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr "Close"
@@ -11409,8 +11490,8 @@ msgstr "All Notifications"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11429,8 +11510,8 @@ msgstr "RECEIVED AMOUNT"
#~ msgstr "Enter Now"
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr "My Farms"
+#~ msgid "My Farms"
+#~ msgstr "My Farms"
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11441,15 +11522,14 @@ msgstr "View Price Alerts"
#~ msgstr "Create a new liquidity pool and earn fees on trades for this token pair"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr "Rainmaker Yield Farming"
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr "Rainmaker Yield Farming"
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr "100% Filled"
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr "Your position will be 100% composed of {quoteSymbol} at this price."
@@ -11498,7 +11578,6 @@ msgstr "Filled"
msgid "Swap Now"
msgstr "Swap Now"
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr "pool"
@@ -11524,8 +11603,8 @@ msgstr "Connect your Wallet"
#~ msgstr "If you purchase this token, you may not be able to sell it back"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr "Access deep insights & stay informed."
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr "Access deep insights & stay informed."
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/locales/ko-KR.po b/src/locales/ko-KR.po
index 2fb922b500..f3730937ad 100644
--- a/src/locales/ko-KR.po
+++ b/src/locales/ko-KR.po
@@ -14,16 +14,16 @@ msgstr ""
"X-Generator: Poedit 3.0.1\n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr ""
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr ""
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr ""
+#~ msgid "ENDED"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr ""
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr ""
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr ""
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,30 +122,27 @@ msgstr ""
msgid "Will cost more gas fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr ""
+#~ msgid "Type"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr ""
+#~ msgid "Custom Ranges"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -197,16 +194,16 @@ msgid "Token Info"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr ""
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr ""
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr ""
+#~ msgid "Funding Rate on CEX"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -214,11 +211,16 @@ msgid "Back in range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr ""
+#~ msgid "Volume"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr ""
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
msgstr ""
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
@@ -246,8 +248,8 @@ msgid "Service Fee"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr ""
+#~ msgid "Top Trending Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -290,13 +292,13 @@ msgid "Placing order"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr ""
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr ""
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -308,25 +310,29 @@ msgid "Loading token..."
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr ""
+#~ msgid "For everyone"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr ""
+#~ msgid "Removed Liquidity"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr "클레임된 보상"
+#~ msgid "Claimed Rewards"
+#~ msgstr "클레임된 보상"
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr ""
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -342,8 +348,8 @@ msgid "Position {0}"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr ""
+#~ msgid "This email address is already registered."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -353,6 +359,10 @@ msgstr ""
#~ msgid "Recent Transactions"
#~ msgstr "최근 거래"
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr ""
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr ""
@@ -433,8 +443,8 @@ msgstr ""
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -471,21 +481,25 @@ msgstr "귀하의 풀 점유율"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr ""
+#~ msgid "Discover new opportunities."
+#~ msgstr ""
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
-msgstr ""
+#~ msgid "Supply owned"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism - Active Liquidity Time"
#~ msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
+msgstr ""
+
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Point multiplier is in effect."
#~ msgstr ""
@@ -504,16 +518,16 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr "가장 낮은 가스"
+#~ msgid "Lowest Gas"
+#~ msgstr "가장 낮은 가스"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr ""
+#~ msgid "{0}% Locked"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -530,16 +544,16 @@ msgstr "무시"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr ""
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr ""
+#~ msgid "My Earnings"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -549,16 +563,20 @@ msgstr ""
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr ""
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr ""
+#~ msgid "No Farms found"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr ""
+#~ msgid "Best for very stable pairs"
+#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -581,16 +599,16 @@ msgid "Add Custom RPC Endpoint"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr ""
+#~ msgid "Watchlists name exist!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr ""
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr ""
+#~ msgid "Total Harvested Rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -610,6 +628,10 @@ msgstr ""
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr ""
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr ""
@@ -622,31 +644,29 @@ msgstr ""
msgid "All-Time High"
msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr "끝남"
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr ""
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr ""
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr ""
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr ""
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -666,8 +686,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr ""
+#~ msgid "Token Price"
+#~ msgstr ""
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -679,7 +699,6 @@ msgstr ""
msgid "goes"
msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -687,7 +706,11 @@ msgid "Free"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
@@ -698,7 +721,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
msgstr ""
#: src/pages/Bridge/SwapForm.tsx
@@ -707,8 +735,8 @@ msgid "Cannot get token info. Please try again later."
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -728,6 +756,10 @@ msgstr ""
#~ msgid "Other Details"
#~ msgstr ""
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -751,6 +783,10 @@ msgstr ""
msgid "The owner of this liquidity position is {0}"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr ""
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr ""
@@ -758,8 +794,8 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr ""
+#~ msgid "Est. Gas Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -779,8 +815,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr ""
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -790,13 +826,17 @@ msgstr ""
msgid "Welcome to KyberSwap!"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr ""
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr ""
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -835,15 +875,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr ""
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -874,13 +913,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr "모두 수확하기"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -888,8 +928,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -897,8 +937,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr ""
+#~ msgid "Average"
+#~ msgstr ""
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -908,6 +948,11 @@ msgstr ""
#~ msgid "Trending"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr ""
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr ""
@@ -942,8 +987,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr ""
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -975,8 +1020,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1003,8 +1048,8 @@ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr "내 보상"
+#~ msgid "Rewards"
+#~ msgstr "내 보상"
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1023,6 +1068,10 @@ msgstr ""
msgid "View more"
msgstr ""
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr ""
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr ""
@@ -1059,10 +1108,7 @@ msgstr ""
msgid "All-Time Low"
msgstr ""
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr ""
@@ -1070,21 +1116,21 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr ""
+#~ msgid "Ended at"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr "종료"
+#~ msgid "Ending In"
+#~ msgstr "종료"
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr ""
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1102,8 +1148,8 @@ msgstr ""
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr "현재 유동성 마이닝 풀이 없습니다."
+#~ msgid "Currently there are no Farms."
+#~ msgstr "현재 유동성 마이닝 풀이 없습니다."
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1113,8 +1159,8 @@ msgid "Pooled {0}"
msgstr "풀링된 {0}"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr ""
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1122,8 +1168,8 @@ msgid "Cross-Chain"
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr "공급합니다. "
+#~ msgid "Supply Anyway"
+#~ msgstr "공급합니다. "
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1149,8 +1195,8 @@ msgstr "자신의 풀 관리하기."
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr "수확하다"
+#~ msgid "Harvest"
+#~ msgstr "수확하다"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1177,8 +1223,6 @@ msgid "You haven't made any transfers yet"
msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr ""
@@ -1191,8 +1235,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr ""
+#~ msgid "Farming Contract"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1201,8 +1245,8 @@ msgstr "거래에 대한 예상 네트워크 수수료"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr ""
+#~ msgid "Insufficient Liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1221,24 +1265,24 @@ msgid "Forgot your Passcode?"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr ""
+#~ msgid "Referral code is invalid."
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr ""
+#~ msgid "Many"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr ""
+#~ msgid "Sign in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr ""
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1249,8 +1293,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr ""
+#~ msgid "Set a Custom Range"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1273,16 +1317,14 @@ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr "유효하지 않은 금액"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr ""
+#~ msgid "There was an error. Please try again later."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1293,8 +1335,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr ""
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1302,8 +1344,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr ""
+#~ msgid "Your liquidity"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1319,8 +1361,8 @@ msgid "Import Pool"
msgstr "풀 가져오기"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr ""
+#~ msgid "Top Bullish Tokens"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1335,8 +1377,16 @@ msgstr ""
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr ""
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1344,13 +1394,13 @@ msgid "Current Price in the market."
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr ""
+#~ msgid "Perpetual Markets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr ""
+#~ msgid "Start Earning"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1371,8 +1421,8 @@ msgid "Navigating My Pools Tutorial"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr ""
+#~ msgid "Technical Analysis"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1387,8 +1437,8 @@ msgid "Tokens"
msgstr "토큰"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr ""
+#~ msgid "TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1419,12 +1469,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr ""
+#~ msgid "Markets"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr ""
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1432,8 +1482,8 @@ msgid "Are you sure?"
msgstr "확실합니까?"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr ""
+#~ msgid "Withdraw your liquidity"
+#~ msgstr ""
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1444,8 +1494,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr ""
+#~ msgid "Current phase will end in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1457,8 +1507,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr ""
+#~ msgid "New phase will start in"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1474,15 +1524,13 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr ""
+#~ msgid "Inflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1491,8 +1539,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr "APR"
+#~ msgid "APR"
+#~ msgstr "APR"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1537,16 +1585,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr ""
+#~ msgid "Wallet Analytics"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr ""
+#~ msgid "Actions"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1561,12 +1609,12 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr "스테이킹된 TVL"
+#~ msgid "Staked TVL"
+#~ msgstr "스테이킹된 TVL"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr ""
+#~ msgid "Committed to Security"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1577,14 +1625,14 @@ msgstr ""
#~ msgstr "높은 가격 변동"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr ""
+#~ msgid "KyberAI"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1612,27 +1660,21 @@ msgstr "확인"
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr ""
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
@@ -1654,14 +1696,13 @@ msgid "the price of"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr ""
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr ""
+#~ msgid "STAKED TVL ↓"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1680,8 +1721,8 @@ msgid "Not selected option"
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr ""
+#~ msgid "Harvest Error"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1712,8 +1753,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr ""
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1748,12 +1789,12 @@ msgid "Gas Abuser"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr ""
+#~ msgid "View Less Stats"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr ""
+#~ msgid "Static Farms"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1768,8 +1809,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr ""
+#~ msgid "Token Pair | Fee"
+#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1781,8 +1822,8 @@ msgid "Custom"
msgstr "사용자 정의"
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr ""
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1841,8 +1882,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr ""
+#~ msgid "Not Eligible"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1873,8 +1914,8 @@ msgstr ""
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr ""
+#~ msgid "Explore"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1916,12 +1957,12 @@ msgstr ""
#~ msgstr "고급 모드"
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr ""
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr ""
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1949,8 +1990,8 @@ msgid "Claim your rewards"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr ""
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1976,6 +2017,10 @@ msgstr ""
msgid "KyberSwap Guide"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr ""
@@ -1986,16 +2031,16 @@ msgstr ""
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr ""
+#~ msgid "Analyze Wallet"
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr ""
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -2009,8 +2054,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2018,12 +2063,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr ""
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr ""
+#~ msgid "Turn on to display live chart."
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2031,15 +2076,19 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr ""
+#~ msgid "Trending Soon"
+#~ msgstr ""
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr ""
-#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-#~ msgid "Search"
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr ""
+
+#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
+#~ msgid "Search"
#~ msgstr ""
#: src/components/Tutorial/index.tsx
@@ -2063,23 +2112,23 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr "새 풀 만들기"
+#~ msgid "Create New Pool"
+#~ msgstr "새 풀 만들기"
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr "시중가와 많이 차이나는 가격이니 조심하세요!"
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr "시중가와 많이 차이나는 가격이니 조심하세요!"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr ""
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr ""
+#~ msgid "My Liquidity Positions"
+#~ msgstr ""
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2094,16 +2143,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr ""
+#~ msgid "Participate in our campaigns"
+#~ msgstr ""
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr ""
+#~ msgid "Market Price"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2122,12 +2175,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr ""
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr ""
+#~ msgid "KyberAI Banner"
+#~ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2135,8 +2188,6 @@ msgstr ""
msgid "Insufficient {s} balance"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr "다음 금액 만큼 받을 것입니다"
@@ -2146,12 +2197,16 @@ msgid "Wrap Error"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr ""
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2205,8 +2260,8 @@ msgid "Total Balance"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr ""
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2221,8 +2276,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr ""
+#~ msgid "FEES ↓"
+#~ msgstr ""
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2234,25 +2289,25 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr ""
+#~ msgid "Collapse All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr ""
+#~ msgid "Copy token address"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr ""
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr ""
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2270,8 +2325,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr ""
+#~ msgid "My Watchlist"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2282,12 +2337,12 @@ msgid "Delegate Address"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr ""
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr ""
+#~ msgid "Earning Charts"
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2298,21 +2353,21 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr ""
+#~ msgid "Fees (24h)"
+#~ msgstr ""
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr ""
+#~ msgid "VOLUME ↑"
+#~ msgstr ""
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr ""
+#~ msgid "Aggregator"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2321,8 +2376,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr ""
+#~ msgid "Share this pool with your friends!"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2330,12 +2385,12 @@ msgid "Faucet"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr ""
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr ""
+#~ msgid "Increase Amount"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2358,8 +2413,8 @@ msgid "Whitelisted Function"
msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr ""
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2393,12 +2448,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr ""
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr ""
+#~ msgid "Error occur, please try again."
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2449,8 +2504,8 @@ msgstr "최대"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr ""
+#~ msgid "Bearish"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2479,7 +2534,6 @@ msgid "Gasless Edit"
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr ""
@@ -2487,8 +2541,6 @@ msgstr ""
msgid "Est. Market Price"
msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2510,13 +2562,13 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr ""
+#~ msgid "Exchange"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr ""
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr ""
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2531,8 +2583,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr ""
+#~ msgid "Amount held"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2566,10 +2618,14 @@ msgstr ""
#~ msgid "Connect Wallet"
#~ msgstr "지갑 연결"
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr ""
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2622,8 +2678,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr ""
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2638,8 +2694,8 @@ msgstr ""
#~ msgstr "Pools | AMP"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr ""
+#~ msgid "Support & Resistance Levels"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2695,8 +2751,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr ""
+#~ msgid "Current price"
+#~ msgstr ""
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2704,16 +2760,14 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr ""
+#~ msgid "Add Liquidity Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr ""
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr ""
@@ -2722,7 +2776,6 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr ""
@@ -2733,7 +2786,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
msgstr ""
#: src/components/SwapForm/MultichainKNCNote.tsx
@@ -2753,12 +2815,12 @@ msgid "Hard Cancel Instead"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr ""
+#~ msgid "Deposit Amounts"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr ""
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2766,19 +2828,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr ""
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2786,21 +2845,21 @@ msgstr ""
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr "유동성 추가"
+#~ msgid "Add liquidity"
+#~ msgstr "유동성 추가"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr ""
+#~ msgid "Daily Range"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr ""
+#~ msgid "Bullish:"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2827,8 +2886,8 @@ msgid "Stake liquidity into farm"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2845,23 +2904,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr ""
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr ""
+#~ msgid "Share this with your friends!"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr ""
+#~ msgid "Add Liquidity ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr ""
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2877,20 +2936,20 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr ""
+#~ msgid "Eligible"
+#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr ""
+#~ msgid "Trading Campaigns"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr ""
+#~ msgid "Top Bearish Tokens"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2901,8 +2960,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr ""
+#~ msgid "Reached max limit."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2936,8 +2995,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr ""
+#~ msgid "Trading Volume"
+#~ msgstr ""
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2945,17 +3004,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr ""
+#~ msgid "Update"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr ""
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr ""
+#~ msgid "1Y Range"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2967,14 +3026,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr ""
@@ -2983,8 +3035,8 @@ msgid "TOKEN UTILITY"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -3005,15 +3057,15 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr "새 풀을 생성하거나 다른 토큰 쌍을 선택하시면 현재 예치가 가능한 풀을 확인 할 수 있습니다."
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr "새 풀을 생성하거나 다른 토큰 쌍을 선택하시면 현재 예치가 가능한 풀을 확인 할 수 있습니다."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3026,8 +3078,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr ""
+#~ msgid "Stake your liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3038,25 +3090,24 @@ msgid "{pendingLength} Pending"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr ""
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr "가동"
+#~ msgid "Active"
+#~ msgstr "가동"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr ""
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr ""
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr "풀 점유율"
@@ -3069,8 +3120,8 @@ msgstr "풀 점유율"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3085,13 +3136,13 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr ""
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr ""
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3100,8 +3151,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr "AMP 입력(>=1)"
+#~ msgid "Enter amp (>=1)"
+#~ msgstr "AMP 입력(>=1)"
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3116,8 +3167,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr ""
+#~ msgid "Go back Ranking page"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3132,8 +3183,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr ""
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3144,8 +3195,8 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr "볼륨(24시간)"
+#~ msgid "Volume (24h)"
+#~ msgstr "볼륨(24시간)"
#:
#:
@@ -3157,39 +3208,38 @@ msgid "Gasless Cancel All Orders"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr ""
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr ""
+#~ msgid "Upcoming Farms"
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr ""
+#~ msgid "Farm Ended"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr ""
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr "새 풀 만들기"
@@ -3203,8 +3253,8 @@ msgstr "새 풀 만들기"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr ""
+#~ msgid "Idle Range"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3228,8 +3278,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr ""
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3246,12 +3296,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr ""
+#~ msgid "Trending Soon Tokens"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr ""
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3272,8 +3322,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr ""
+#~ msgid "Pool | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3292,22 +3342,25 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr ""
+#~ msgid "Add {0} to {1}"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr ""
+#~ msgid "Live Chart"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr ""
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3315,8 +3368,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr ""
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3328,8 +3381,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr ""
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3340,20 +3393,20 @@ msgid "User denied message signature"
msgstr ""
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr ""
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr ""
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr ""
+#~ msgid "Trending soon"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3364,16 +3417,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr ""
+#~ msgid "Collapse"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr "분"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr ""
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3384,29 +3437,29 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr "수수료 범위"
+#~ msgid "Fee Range"
+#~ msgstr "수수료 범위"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr ""
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr ""
+#~ msgid "MY REWARD ↑"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr ""
+#~ msgid "Harvesting rewards"
+#~ msgstr ""
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3425,12 +3478,12 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr ""
+#~ msgid "Maintainance"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr "나의 유동성"
+#~ msgid "My liquidity"
+#~ msgstr "나의 유동성"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3445,8 +3498,8 @@ msgid "No price alerts created yet"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr ""
+#~ msgid "Full unlocked"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3455,8 +3508,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr "내 예치금"
+#~ msgid "My Deposit"
+#~ msgstr "내 예치금"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3480,27 +3533,27 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr ""
+#~ msgid "Example"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr ""
+#~ msgid "Number"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr ""
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr ""
+#~ msgid "Token pair"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3521,12 +3574,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr ""
+#~ msgid "All Time Low"
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr ""
+#~ msgid "Current Chain"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3545,13 +3598,14 @@ msgstr ""
msgid "Stake Information"
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr ""
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3561,17 +3615,19 @@ msgstr ""
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
msgstr ""
+#: src/components/ElasticZap/QuickZap.tsx
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr ""
+
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr ""
@@ -3581,37 +3637,40 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr ""
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr ""
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr ""
+#~ msgid "New Liquidity Amount"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr ""
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr ""
@@ -3621,16 +3680,16 @@ msgid "Market Info"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr ""
+#~ msgid "Remove Watchlist"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr ""
+#~ msgid "APR for each Farming Range"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3649,8 +3708,8 @@ msgid "My Current Position"
msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr ""
+#~ msgid "Unsupported Asset"
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3666,7 +3725,11 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
@@ -3690,12 +3753,12 @@ msgid "Your Transactions"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr ""
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr ""
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3716,16 +3779,16 @@ msgid "Your import token (click to copy)"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr ""
+#~ msgid "Select Override Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr ""
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr ""
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3752,8 +3815,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr ""
+#~ msgid "VOLUME ↓"
+#~ msgstr ""
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3764,8 +3827,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr ""
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3781,11 +3844,10 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr ""
+#~ msgid "Levels"
+#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr ""
@@ -3798,12 +3860,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr ""
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr ""
+#~ msgid "Stablecoins"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3814,7 +3876,11 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr ""
+
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
msgstr ""
#: src/pages/About/AboutKNC.tsx
@@ -3841,15 +3907,14 @@ msgstr ""
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr ""
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr ""
@@ -3879,8 +3944,8 @@ msgid "Risky Item(s)"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr ""
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3906,8 +3971,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr ""
+#~ msgid "24h Netflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3925,22 +3990,26 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr ""
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr ""
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3949,12 +4018,12 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr ""
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr ""
+#~ msgid "Static Fees"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3965,24 +4034,24 @@ msgid "Where you can buy KNC"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr ""
+#~ msgid "Best for stable pairs"
+#~ msgstr ""
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr ""
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3991,16 +4060,16 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr ""
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr ""
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4030,11 +4099,10 @@ msgid "Wrong Network"
msgstr "잘못된 네트워크"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr ""
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr ""
@@ -4043,12 +4111,12 @@ msgid "VALUE"
msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr ""
+#~ msgid "View Pool"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr ""
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4076,16 +4144,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr ""
+#~ msgid "Farm ended"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr ""
+#~ msgid "Available Farming Range"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4105,8 +4173,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr ""
+#~ msgid "Rewards Breakdown"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4141,8 +4209,8 @@ msgid "Your import token"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr ""
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4163,11 +4231,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr ""
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4182,8 +4248,8 @@ msgid "Cross-chain rate is"
msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr ""
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4202,7 +4268,6 @@ msgid "Default Options"
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4223,8 +4288,8 @@ msgstr ""
#~ msgstr "KNC의 사용처"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr ""
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4235,7 +4300,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr ""
@@ -4248,8 +4312,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr ""
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4260,12 +4324,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr ""
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr ""
+#~ msgid "Live Trades"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4273,7 +4337,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr "결과를 발견하지 못했습니다."
@@ -4282,8 +4345,8 @@ msgstr "결과를 발견하지 못했습니다."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr ""
+#~ msgid "BONUS REWARDS"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4294,30 +4357,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr ""
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr ""
+#~ msgid "Best for most pairs"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr ""
+#~ msgid "Approving {0}"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr ""
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "<0>Advanced Mode0> turns off the 'Confirm' transaction prompt and allows high slippage trades that can result in bad rates and lost funds."
@@ -4342,14 +4404,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr ""
+#~ msgid "All Time High"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4370,12 +4434,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr ""
+#~ msgid "Deposit Farm Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr ""
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr ""
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4413,25 +4477,27 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr ""
+#~ msgid "Insufficient Balance"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr ""
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
msgstr ""
#: src/state/mint/proamm/hooks.tsx
@@ -4439,8 +4505,8 @@ msgid "Position {0}: Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr ""
+#~ msgid "View all"
+#~ msgstr ""
#:
#~ msgid "Rewards: {0} {1}"
@@ -4514,8 +4580,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr ""
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4530,31 +4596,30 @@ msgid "Sell Tax"
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr ""
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr ""
+#~ msgid "Learn More"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr ""
+#~ msgid "Video Tutorial"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr ""
@@ -4562,10 +4627,15 @@ msgstr ""
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr ""
+#~ msgid "Unstake Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4576,8 +4646,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr ""
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4593,26 +4663,16 @@ msgstr ""
msgid "PRICE RANGE <0>({0} per {1})0>"
msgstr ""
-#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr ""
-
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
+#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
+#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
+#~ msgid "Unstake your liquidity"
+#~ msgstr ""
+
+#: src/components/NavigationTabs/index.tsx
msgid "Add Liquidity"
msgstr "유동성 추가"
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr "여기"
@@ -4621,19 +4681,13 @@ msgid "Find out more"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr ""
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr ""
@@ -4647,14 +4701,14 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr ""
+#~ msgid "here ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr ""
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4675,7 +4729,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
@@ -4699,8 +4758,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr ""
+#~ msgid "Favourites"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4710,22 +4769,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr ""
+#~ msgid "Reset"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr ""
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr ""
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4733,8 +4790,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr ""
+#~ msgid "Website"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4759,16 +4816,16 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr ""
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr ""
+#~ msgid "Token Rankings"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4791,7 +4848,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr ""
@@ -4827,7 +4883,6 @@ msgid "Favorite Chain(s)"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr ""
@@ -4840,8 +4895,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr ""
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4867,8 +4922,8 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr ""
+#~ msgid "Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4889,24 +4944,23 @@ msgstr "가스비"
#~ msgstr "이용 약관"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr ""
+#~ msgid "END TIME ↑"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr "풀 비율"
+#~ msgid "Pool Ratio"
+#~ msgstr "풀 비율"
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr ""
@@ -4915,7 +4969,6 @@ msgstr ""
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4931,12 +4984,10 @@ msgid "I Understand"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr ""
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr ""
@@ -4949,8 +5000,8 @@ msgid "Voting starts in:"
msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr ""
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr ""
#:
#~ msgid "FULL UNLOCK"
@@ -4961,8 +5012,8 @@ msgid "Security Info"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr ""
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr ""
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -5002,8 +5053,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr ""
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5034,8 +5085,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5059,28 +5110,32 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr ""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr ""
-#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
msgstr ""
+#: src/components/YieldPools/FarmPoolSort.tsx
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr ""
+
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr ""
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr ""
+#~ msgid "Deposited Positions"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5103,7 +5158,6 @@ msgstr ""
#~ msgstr "참고: {warningToken}은 이제 풀의 <10% 입니다. {warningToken}가 0%에 도달하면 풀이 비활성화될 수 있습니다"
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr ""
@@ -5116,11 +5170,15 @@ msgid "Exchange rate is always 1 to 1."
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr ""
+#~ msgid "Get alpha before it happens"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
msgstr ""
#: src/utils/time.ts
@@ -5132,11 +5190,10 @@ msgstr ""
#~ msgstr "불분명 한 출처"
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr ""
+#~ msgid "Closed Positions"
+#~ msgstr ""
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr ""
@@ -5146,8 +5203,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr ""
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr ""
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5158,8 +5215,8 @@ msgid "Cannot vote at this moment"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr ""
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5170,17 +5227,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr ""
+#~ msgid "Go to farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr ""
+#~ msgid "Top 10 Holders"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr ""
+#~ msgid "Static Farm"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5191,8 +5248,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr ""
+#~ msgid "View Positions"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5252,12 +5309,12 @@ msgid "Code will expire in {0}{1}"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr ""
+#~ msgid "MY DEPOSIT"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr ""
+#~ msgid "Bug Bounty"
+#~ msgstr ""
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5304,12 +5361,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr ""
+#~ msgid "Withdraw Error"
+#~ msgstr ""
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr ""
+#~ msgid "Approve Farm Error"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5320,8 +5377,8 @@ msgid "Buy Tax"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr ""
+#~ msgid "View Less"
+#~ msgstr ""
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5343,12 +5400,6 @@ msgstr ""
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr ""
@@ -5359,13 +5410,17 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr ""
+#~ msgid "Invalid Input"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr ""
@@ -5379,8 +5434,8 @@ msgid "Can sell all"
msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr ""
+#~ msgid "Token name"
+#~ msgstr ""
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5391,8 +5446,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr ""
+#~ msgid "Price | 24 Change"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5431,6 +5486,10 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr "오류"
@@ -5444,8 +5503,8 @@ msgstr "오류"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr ""
+#~ msgid "Withdraw Selected"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5455,6 +5514,10 @@ msgstr ""
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr ""
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr ""
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr "증폭된 유동성"
@@ -5464,8 +5527,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr ""
+#~ msgid "Supplying {text}"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5476,8 +5539,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr ""
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5492,7 +5555,6 @@ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5511,8 +5573,6 @@ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr "토큰 선택"
@@ -5535,7 +5595,6 @@ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr ""
@@ -5552,8 +5611,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr ""
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5564,22 +5623,22 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr ""
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr ""
+#~ msgid "View More Stats"
+#~ msgstr ""
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr "토큰"
@@ -5588,8 +5647,8 @@ msgstr "토큰"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr ""
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5616,7 +5675,6 @@ msgstr ""
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr "문서"
@@ -5645,8 +5703,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr ""
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5661,8 +5719,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr ""
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5674,8 +5732,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr ""
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5695,8 +5753,8 @@ msgid "Quorum Status"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr ""
+#~ msgid "ENDING IN"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5708,8 +5766,8 @@ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr ""
+#~ msgid "ACTIONS"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5725,20 +5783,16 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr ""
+#~ msgid "Best for exotic pairs"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr ""
+#~ msgid "{0}% Claimed"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5749,22 +5803,21 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr ""
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr ""
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr "추가 정보"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr ""
+#~ msgid "Farm has not started"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5772,19 +5825,14 @@ msgstr ""
msgid "Import Tokens"
msgstr "토큰 가져오기"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr ""
@@ -5796,10 +5844,14 @@ msgstr ""
#~ msgid "could be trending very soon!"
#~ msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
msgstr ""
+#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
+#~ msgid "Target Volume"
+#~ msgstr ""
+
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
#~ msgstr ""
@@ -5809,8 +5861,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr ""
+#~ msgid "Choose pool"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5853,8 +5905,8 @@ msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr "다이나믹 수수료 범위"
+#~ msgid "Dynamic Fee Range"
+#~ msgstr "다이나믹 수수료 범위"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5880,8 +5932,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5893,24 +5945,24 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr ""
+#~ msgid "{0}% Refund"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr ""
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr ""
+#~ msgid "3d Netflow"
+#~ msgstr ""
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5920,9 +5972,11 @@ msgstr ""
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr ""
@@ -5930,17 +5984,21 @@ msgstr ""
#~ msgid "- Remove send"
#~ msgstr "- 보내기 제거"
-#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
msgstr ""
+#: src/pages/AddLiquidityV2/index.tsx
+#~ msgid "Set Starting Price"
+#~ msgstr ""
+
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr ""
+#~ msgid "Liquidations on CEX"
+#~ msgstr ""
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5959,14 +6017,12 @@ msgstr ""
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr "지갑 연결"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr ""
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5974,8 +6030,8 @@ msgid "at"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr ""
+#~ msgid "Trading Grant Campaign"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5990,8 +6046,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr "AMP 계수와 풀에 있는 유동성을 곱한 값."
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr ""
+#~ msgid "Support & Resistance Levels."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -6001,13 +6057,13 @@ msgstr ""
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr ""
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr ""
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr ""
+#~ msgid "Unstake Error"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6033,7 +6089,6 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr ""
@@ -6061,16 +6116,16 @@ msgid "Export Profile"
msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr ""
+#~ msgid "My 1st Watchlist"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr ""
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6078,27 +6133,26 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr ""
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr ""
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr ""
+#~ msgid "Netflow to CEX"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr ""
@@ -6107,18 +6161,18 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr ""
+#~ msgid "MY LIQUIDITY"
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr ""
+#~ msgid "Rankings"
+#~ msgstr ""
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr ""
+#~ msgid "Timeframe"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6127,17 +6181,17 @@ msgid "Contract Address"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr ""
+#~ msgid "Please select fee"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr ""
+#~ msgid "to Whale Wallets"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr ""
+#~ msgid "Stake Selected"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6148,8 +6202,8 @@ msgid "Holiday Mode"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr ""
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr ""
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6195,12 +6249,12 @@ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr ""
+#~ msgid "Gas Price Tracker"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr ""
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6225,13 +6279,13 @@ msgid "Approve {tokenSymbol}"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr ""
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr ""
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6246,6 +6300,10 @@ msgstr ""
msgid "Max is {format}"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr ""
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr ""
@@ -6255,8 +6313,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr ""
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6267,16 +6325,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr ""
+#~ msgid "Starting Price"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6291,8 +6349,8 @@ msgid "has been successfully transferred from"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr ""
+#~ msgid "Best for very volatile pairs"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6336,8 +6394,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr ""
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6352,12 +6410,12 @@ msgid "Signing in..."
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr ""
+#~ msgid "Create list"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr ""
+#~ msgid "1 user is ahead of you"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6368,11 +6426,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr ""
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr ""
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr ""
@@ -6380,12 +6437,20 @@ msgstr ""
msgid "{0} price of {rateStr} {1}"
msgstr ""
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr ""
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr "+ 보내기 추가 (선택 사항)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr ""
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
@@ -6393,8 +6458,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr ""
+#~ msgid "Total Earnings"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6404,8 +6469,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr ""
+#~ msgid "AVG APR ↓"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6442,8 +6507,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr ""
+#~ msgid "STAKED TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6478,7 +6543,6 @@ msgstr ""
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr "URL이 <0>KyberSwap.com인지 확인하십시오.0>"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr ""
@@ -6488,12 +6552,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr ""
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr ""
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6505,18 +6569,11 @@ msgid "Price Range"
msgstr "가격대"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr ""
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6542,9 +6599,7 @@ msgstr ""
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr ""
@@ -6553,25 +6608,28 @@ msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the stan
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
+#~ msgid "View analytics"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr "연락처"
+#~ msgid "Contact Us"
+#~ msgstr "연락처"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr ""
+#~ msgid "Feedback"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6590,16 +6648,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr "귀하의 풀 할당"
+#~ msgid "Your Pool Allocation"
+#~ msgstr "귀하의 풀 할당"
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6637,13 +6695,6 @@ msgstr "켜기"
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6651,25 +6702,11 @@ msgstr "켜기"
msgid "Approve"
msgstr "승인"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6690,28 +6727,32 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr ""
+#~ msgid "Maximum Return"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr ""
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr ""
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr ""
+#~ msgid "On-Chain Analysis"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr ""
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr ""
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6738,7 +6779,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr ""
@@ -6747,8 +6787,8 @@ msgid "How to participate"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr ""
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6770,7 +6810,7 @@ msgstr ""
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr "애널리틱스"
@@ -6780,8 +6820,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6798,16 +6838,16 @@ msgid "Search by pool address"
msgstr "풀 주소로 검색"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr ""
+#~ msgid "Select fee tier"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr ""
+#~ msgid "MY REWARD ↓"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6815,20 +6855,16 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr ""
+#~ msgid "Netflow"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr ""
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr ""
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6864,32 +6900,32 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr "풀 생성 중"
+#~ msgid "You are creating a pool"
+#~ msgstr "풀 생성 중"
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr ""
+#~ msgid "Best for rare use cases"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr ""
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr ""
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr ""
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr ""
+#~ msgid "New Updates to KyberAI"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6898,16 +6934,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr ""
+#~ msgid "Funding Rates"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr ""
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6943,8 +6979,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr ""
+#~ msgid "AVG APR ↑"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6958,23 +6994,23 @@ msgstr ""
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr ""
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr ""
+#~ msgid "Live Charts"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr ""
+#~ msgid "Disable Metamask in C98"
+#~ msgstr ""
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6983,8 +7019,8 @@ msgstr "끄기"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6996,43 +7032,41 @@ msgid "per"
msgstr "당"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr ""
+#~ msgid "Expand All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr ""
+#~ msgid "Bullish"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr ""
+#~ msgid "Add liquidity error"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr ""
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr ""
+#~ msgid "Deposit your liquidity"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr ""
@@ -7053,8 +7087,8 @@ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr ""
+#~ msgid "Learn More ↗"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7082,8 +7116,8 @@ msgid "Cooldown"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr ""
+#~ msgid "Watchlist"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7091,10 +7125,9 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr ""
@@ -7112,8 +7145,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr "잠긴 보상"
+#~ msgid "Locked Rewards"
+#~ msgstr "잠긴 보상"
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7139,8 +7172,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr ""
+#~ msgid "Top Traded"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7155,10 +7188,6 @@ msgstr ""
#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr ""
@@ -7169,8 +7198,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr "공급"
+#~ msgid "Supply"
+#~ msgstr "공급"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7183,20 +7212,19 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr ""
+#~ msgid "Available Balance"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr ""
+#~ msgid "Help"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr ""
@@ -7239,7 +7267,6 @@ msgstr ""
#~ msgstr ""
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr ""
@@ -7252,8 +7279,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr ""
+#~ msgid "Dynamic"
+#~ msgstr ""
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7273,8 +7300,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7294,8 +7321,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr ""
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr ""
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7310,8 +7337,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr ""
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr ""
@@ -7319,6 +7344,11 @@ msgstr ""
#~ msgid "Tag:"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr ""
@@ -7340,8 +7370,8 @@ msgid "Available"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr ""
+#~ msgid "Last 7 days"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7356,22 +7386,26 @@ msgstr ""
msgid "Axelar/Squid doesn't support this chain"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr ""
+#~ msgid "Spot Markets"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr ""
+#~ msgid "Funding rate"
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7387,20 +7421,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr ""
+#~ msgid "Holders (On-chain)"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr ""
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr ""
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7410,11 +7444,11 @@ msgstr ""
#~ msgid "Acknowledge"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr "취소"
@@ -7448,16 +7482,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr ""
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7468,8 +7502,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr ""
+#~ msgid "Enable Metamask in C98"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7484,8 +7518,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr "베스팅 일정이 존재하지 않습니다!"
+#~ msgid "No vesting schedule!"
+#~ msgstr "베스팅 일정이 존재하지 않습니다!"
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7508,8 +7542,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr ""
+#~ msgid "Deposited Liquidity"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7531,16 +7565,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr ""
+#~ msgid "Centralized Exchanges"
+#~ msgstr ""
#:
#~ msgid "DEPOSIT"
#~ msgstr "내 예치금"
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr ""
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7563,12 +7597,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr ""
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr ""
@@ -7576,14 +7608,18 @@ msgstr ""
msgid "Your currently existing order is {filledPercent}% filled."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr ""
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr ""
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7598,14 +7634,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr ""
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr ""
@@ -7632,16 +7671,16 @@ msgid "Min"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr ""
+#~ msgid "Update Liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr ""
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7660,8 +7699,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7710,22 +7749,23 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr "참고: 이 토큰 쌍에 대한 풀이 존재합니다. 확인해주십시오"
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr "참고: 이 토큰 쌍에 대한 풀이 존재합니다. 확인해주십시오"
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr ""
+#~ msgid "No liquidity found."
+#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr "스왑하기"
@@ -7753,8 +7793,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr ""
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7769,8 +7809,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr ""
+#~ msgid "Sort"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7782,16 +7822,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr ""
+#~ msgid "Referral code is invalid"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr ""
+#~ msgid "All positions"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7799,20 +7839,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr ""
+#~ msgid "Show more"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr ""
+#~ msgid "Top All Tokens"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7831,15 +7871,15 @@ msgid "DAO Governance"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr ""
+#~ msgid "Farming Ranges"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr "내 풀"
@@ -7863,10 +7903,6 @@ msgstr ""
#~ msgstr "최소 수령 금액을 받을 수 없다면 거래는 진행 되지 않을 것입니다. "
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr "승인{0}"
@@ -7893,13 +7929,18 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr ""
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
msgstr ""
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7911,8 +7952,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr ""
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7923,20 +7964,20 @@ msgid "KYBER DAO"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr ""
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr "가격 및 풀 비중"
+#~ msgid "Prices and Pool share"
+#~ msgstr "가격 및 풀 비중"
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr ""
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7957,16 +7998,16 @@ msgid "Accept"
msgstr "승인"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr ""
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr ""
+#~ msgid "Update your liquidity"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7989,8 +8030,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr ""
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -8004,6 +8045,10 @@ msgstr ""
msgid "Vote - Earn Rewards"
msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr ""
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr ""
@@ -8026,12 +8071,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr ""
+#~ msgid "Go to farm ↗"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr ""
+#~ msgid "My Share of Pool"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8058,8 +8103,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr ""
+#~ msgid "Approve Farming Contract"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8093,8 +8138,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr ""
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8125,6 +8170,10 @@ msgstr ""
msgid "Error when changing network."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr ""
@@ -8142,8 +8191,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr ""
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8153,9 +8202,13 @@ msgstr ""
msgid "Claimed"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr ""
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr ""
@@ -8164,8 +8217,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr "생성"
+#~ msgid "Create"
+#~ msgstr "생성"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8204,8 +8257,9 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8216,10 +8270,14 @@ msgstr "클레임하기"
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr ""
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr ""
+#~ msgid "Farming Range"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8246,16 +8304,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr ""
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr ""
+#~ msgid "Staked Balance"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8270,16 +8328,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr ""
+#~ msgid "Support / Resistance Levels"
+#~ msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr "받는 사람을 입력하세요"
@@ -8291,7 +8347,6 @@ msgstr "받는 사람을 입력하세요"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr ""
@@ -8316,13 +8371,17 @@ msgstr ""
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
msgstr ""
+#: src/pages/IncreaseLiquidity/index.tsx
+#~ msgid "404"
+#~ msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr ""
+#~ msgid "Dynamic Farm"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8336,11 +8395,10 @@ msgid "Notifications"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr ""
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr "뒤로"
@@ -8349,16 +8407,16 @@ msgstr "뒤로"
#~ msgstr "귀하의 현 포지션"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr ""
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr ""
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8368,8 +8426,11 @@ msgstr ""
msgid "TVL From DEXs"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr ""
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr ""
@@ -8377,8 +8438,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr ""
+#~ msgid "24h volume"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8397,53 +8458,39 @@ msgstr ""
msgid "{0}% Transaction Fee"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr "금액을 입력"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr ""
+#~ msgid "Top 25 Holders"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8455,8 +8502,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr ""
+#~ msgid "Business Enquiries"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8466,13 +8513,21 @@ msgstr ""
#~ msgid "Earn more due to compounding"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr ""
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr ""
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8483,8 +8538,8 @@ msgstr ""
#~ msgstr "예정"
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr ""
+#~ msgid "KyberAI Widget"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8499,16 +8554,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr ""
+#~ msgid "Checking data..."
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr ""
+#~ msgid "About Dynamic Farms"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8535,7 +8590,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr "신규"
@@ -8545,8 +8599,8 @@ msgstr "신규"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr ""
+#~ msgid "Not Applicable"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8562,8 +8616,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr ""
+#~ msgid "View Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8574,15 +8628,7 @@ msgstr ""
#~ msgstr ""
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8599,8 +8645,8 @@ msgid "Github"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr ""
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr ""
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8632,20 +8678,20 @@ msgid "You have already delegated your voting power to this address."
msgstr ""
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr "유동성 마이닝 지정 풀"
+#~ msgid "Available for yield farming"
+#~ msgstr "유동성 마이닝 지정 풀"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr ""
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr ""
+#~ msgid "Token Name"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8656,16 +8702,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr ""
+#~ msgid "On-chain & Open Source"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr "가격 영향이 매우 높음"
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr ""
+#~ msgid "Tokens Breakdown"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8693,12 +8739,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr ""
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr ""
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8706,14 +8752,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr ""
@@ -8726,8 +8765,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr ""
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8747,24 +8786,24 @@ msgid "Review Order"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr ""
+#~ msgid "Dynamic Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr ""
+#~ msgid "Farming Guide"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr ""
+#~ msgid "Static"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8776,17 +8815,17 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr ""
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr ""
+#~ msgid "View Earnings"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr ""
+#~ msgid "END TIME ↓"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8838,28 +8877,19 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr ""
+#~ msgid "Available for yield farming."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr "현재 가격"
@@ -8869,8 +8899,8 @@ msgstr "현재 가격"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr ""
+#~ msgid "View more ↗"
+#~ msgstr ""
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8896,13 +8926,15 @@ msgstr ""
msgid "Deposit"
msgstr ""
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr ""
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr "하나의 토큰은 풀 비율이 0% i에 가깝습니다. 풀이 비활성화될 수 있습니다."
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr "잘못된 수신자"
@@ -8917,16 +8949,16 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr ""
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr ""
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8957,12 +8989,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr ""
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr ""
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8980,7 +9012,6 @@ msgstr ""
msgid "You don't have any balance token"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr ""
@@ -9002,7 +9033,6 @@ msgstr "가져오기"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr ""
@@ -9042,7 +9072,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr ""
@@ -9069,12 +9098,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr ""
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr ""
+#~ msgid "Update Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9086,13 +9115,17 @@ msgid "I pay"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr ""
+#~ msgid "{0}% claimable"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr ""
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr ""
@@ -9103,8 +9136,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr ""
+#~ msgid "Estimated Risk"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9126,12 +9159,12 @@ msgid "Liquidity Sources"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr ""
+#~ msgid "Fill survey"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr ""
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9160,14 +9193,13 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr "사용 가능한 유동성이 부족합니다. 페이지를 새로고침하고 다시 시도하세요!"
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr "사용 가능한 유동성이 부족합니다. 페이지를 새로고침하고 다시 시도하세요!"
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr "이 도구를 사용하여 인터페이스에 자동으로 나타나지 않는 토큰 쌍을 찾을 수 잇습니다."
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr "거래 경로"
@@ -9215,7 +9247,11 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
@@ -9248,8 +9284,8 @@ msgstr "{0} 잔액 부족"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr ""
+#~ msgid "You're first in line!"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9274,20 +9310,25 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr ""
+#~ msgid "KyberScore Delta"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr ""
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr ""
+#~ msgid "Top Trade Tokens"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9298,8 +9339,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr ""
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9311,8 +9352,8 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr ""
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9338,7 +9379,11 @@ msgid "Copy address to clipboard"
msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
+#~ msgid "Expires In"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
msgstr ""
#: src/components/Menu/index.tsx
@@ -9347,8 +9392,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr ""
+#~ msgid "AVG APR"
+#~ msgstr ""
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9359,8 +9404,8 @@ msgstr "유동성을 찾기 위해 토큰을 선택하십시오."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr ""
+#~ msgid "Referral Code (Optional)"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9372,8 +9417,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr ""
+#~ msgid "Seamless liquidity."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9391,13 +9436,17 @@ msgstr ""
#~ msgid "Update list"
#~ msgstr "목록 업데이트"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr ""
+
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9429,32 +9478,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr ""
+#~ msgid "All {displayName}"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
+#~ msgid "Your Email"
+#~ msgstr ""
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
msgstr ""
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr ""
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr ""
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr ""
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9465,20 +9518,20 @@ msgid "Email Verified"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr ""
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr ""
+#~ msgid "Active Farms"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9490,16 +9543,16 @@ msgstr ""
#~ msgstr "정보"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr ""
+#~ msgid "Low"
+#~ msgstr ""
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr ""
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr ""
#: src/components/TrendingSoonTokenBanner/index.tsx
#~ msgid "seems bullish right now."
@@ -9510,8 +9563,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr ""
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9554,10 +9607,18 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
-msgstr "내 보상"
+#~ msgid "My Rewards"
+#~ msgstr "내 보상"
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
+msgstr ""
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9572,8 +9633,8 @@ msgid "Open Source"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr ""
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9584,8 +9645,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr ""
+#~ msgid "Get pool info"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9597,8 +9658,8 @@ msgstr ""
#~ msgstr "최대 슬립피지: "
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr ""
+#~ msgid "View Pool Details"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9609,8 +9670,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr ""
+#~ msgid "Stake Error"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9620,10 +9681,15 @@ msgstr ""
msgid "Confirm this transaction in your wallet"
msgstr "지갑에서 이 거래를 승인하세요"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "Let's go!"
+#~ msgstr ""
+
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
#~ msgstr ""
@@ -9633,10 +9699,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr ""
+#~ msgid "to Centralized Exchanges"
+#~ msgstr ""
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr ""
@@ -9649,7 +9715,6 @@ msgstr ""
#~ msgstr "다크 모드"
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr "총 LP 토큰"
@@ -9674,7 +9739,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9712,7 +9776,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr "풀"
@@ -9725,8 +9788,8 @@ msgstr "풀"
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr ""
+#~ msgid "Top traded pairs"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9737,7 +9800,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr ""
@@ -9746,12 +9808,10 @@ msgstr ""
#~ msgstr "이름 검색 또는 주소 붙여넣기"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr ""
+#~ msgid "View All"
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr ""
@@ -9760,12 +9820,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr ""
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr ""
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9792,8 +9852,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr ""
+#~ msgid "HIGHER RETURNS"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9804,8 +9864,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr ""
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9827,6 +9887,7 @@ msgstr ""
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr "증폭 계수를 뜻합니다. AMP가 더 높은 풀은 더 높은 자본 효율성을 제공하지만 운영되는 토큰 가격범위가 좁습니다. 스테이블 같은 안정적인 토큰 쌍에는 더 높은 AMP를, 변동성이 큰 토큰 쌍에는 더 낮은 AMP를 권장합니다."
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9877,8 +9938,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr ""
+#~ msgid "Increase"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9912,16 +9973,16 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr "풀 정보"
+#~ msgid "Pool Information"
+#~ msgstr "풀 정보"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr "토큰 목록 \"{0}\"이(가) <0>{1}(으)로 업데이트되었습니다.0> ."
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr ""
+#~ msgid "Amount staked in a farm."
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9932,8 +9993,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr ""
+#~ msgid "Trending Soon:"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9945,8 +10006,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr ""
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9964,7 +10025,6 @@ msgstr ""
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr ""
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr "다시 시도"
@@ -9974,8 +10034,8 @@ msgstr "다시 시도"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr ""
+#~ msgid "Decentralized Exchanges"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -9990,17 +10050,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr ""
+#~ msgid "Code Audited"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr ""
+#~ msgid "Change network"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -10010,10 +10070,18 @@ msgstr ""
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr ""
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr ""
@@ -10023,8 +10091,8 @@ msgid "Buy"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr ""
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10036,8 +10104,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr ""
+#~ msgid "New Positions"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10048,12 +10116,12 @@ msgid "Completed"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr ""
+#~ msgid "TVL ↓"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr ""
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10061,16 +10129,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr ""
+#~ msgid "KyberAI Watchlist"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr ""
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10080,6 +10148,10 @@ msgstr ""
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr ""
@@ -10094,8 +10166,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr ""
+#~ msgid "Number of Holders"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10134,20 +10206,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr ""
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr ""
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr ""
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr "이 토큰 풀을 생성 하는 첫 번째 유동성 공급자 입니다. 아래에서 제공하는 토큰의 비율에 맞춰 이 풀의 초기 가격이 설정됩니다. 원하는 토큰 비율에 맞춰 세팅 한 후 유동성 공급을 진행하십시오."
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr "이 토큰 풀을 생성 하는 첫 번째 유동성 공급자 입니다. 아래에서 제공하는 토큰의 비율에 맞춰 이 풀의 초기 가격이 설정됩니다. 원하는 토큰 비율에 맞춰 세팅 한 후 유동성 공급을 진행하십시오."
#:
#:
@@ -10155,6 +10227,10 @@ msgstr "이 토큰 풀을 생성 하는 첫 번째 유동성 공급자 입니다
#~ msgid "APY"
#~ msgstr ""
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr ""
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr "경로"
@@ -10168,12 +10244,12 @@ msgid "this profile"
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr ""
+#~ msgid "View positions"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr ""
+#~ msgid "Share this token"
+#~ msgstr ""
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10183,10 +10259,6 @@ msgstr ""
msgid "Order has been successfully cancelled."
msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr ""
@@ -10204,12 +10276,12 @@ msgid "View less"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr ""
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10274,8 +10346,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr ""
+#~ msgid "FEES ↑"
+#~ msgstr ""
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10287,10 +10359,14 @@ msgstr ""
msgid "Confirm Swap Details"
msgstr ""
-#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
msgstr ""
+#: src/components/Tutorial/TutorialSwap/constant.ts
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
msgstr ""
@@ -10308,8 +10384,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr ""
+#~ msgid "Farming Pools"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10321,8 +10397,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr "이 토큰 쌍에 대한 풀이 없습니다."
+#~ msgid "There are no pools for this token pair."
+#~ msgstr "이 토큰 쌍에 대한 풀이 없습니다."
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10333,8 +10409,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr ""
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr ""
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10342,8 +10418,8 @@ msgid "Permit Error"
msgstr ""
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr ""
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10366,27 +10442,26 @@ msgstr ""
msgid "Wallet"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr "가져오기."
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr ""
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr ""
+#~ msgid "Live DEX Trades"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr ""
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr ""
+#~ msgid "POOLS | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10397,12 +10472,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr ""
+#~ msgid "KyberAI Tutorial"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr ""
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10412,8 +10487,6 @@ msgstr ""
msgid "Wrong Chain"
msgstr ""
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10462,20 +10535,28 @@ msgid "I want to transfer"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr ""
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
@@ -10493,13 +10574,17 @@ msgid "Undelegate"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr ""
+#~ msgid "View Farm"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr ""
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr ""
@@ -10514,8 +10599,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr ""
+#~ msgid "Outflow"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10540,8 +10625,8 @@ msgid "Stake Amount"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr ""
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10561,33 +10646,32 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr ""
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr ""
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr ""
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr ""
+#~ msgid "FEES (24H)"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr ""
+#~ msgid "Create Classic Pool Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr ""
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10601,6 +10685,10 @@ msgstr ""
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr ""
@@ -10611,8 +10699,8 @@ msgid "All Chains"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10628,8 +10716,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr ""
+#~ msgid "Status"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10638,20 +10726,20 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr ""
+#~ msgid "To be extended soon"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr ""
+#~ msgid "My Pool Earnings"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10674,8 +10762,6 @@ msgstr ""
#~ msgid "via {0} token list"
#~ msgstr "{0} 토큰 목록을 통해"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10686,8 +10772,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr ""
+#~ msgid "Ape Smart!"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10698,8 +10784,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr ""
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr ""
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10739,8 +10825,6 @@ msgid "Mint Function"
msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr "About"
@@ -10771,7 +10855,6 @@ msgstr ""
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10782,8 +10865,8 @@ msgstr "교환할 유동성 풀의 유동성 부족"
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10794,12 +10877,12 @@ msgid "Cross-Chain Bridge"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr ""
+#~ msgid "STAKED TVL"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10810,8 +10893,8 @@ msgid "Profile"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr ""
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10824,21 +10907,15 @@ msgid "Notification Preferences"
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr "토큰 스왑"
@@ -10855,17 +10932,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr ""
+#~ msgid "Your Referral Link"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr ""
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr ""
+#~ msgid "Hide"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10881,17 +10962,16 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10909,9 +10989,9 @@ msgstr ""
msgid "Language"
msgstr "언어"
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10923,8 +11003,8 @@ msgstr ""
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr ""
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10933,8 +11013,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr "증폭되지 않은 풀이 이미 존재합니다. "
+#~ msgid "Unamplified Pool existed"
+#~ msgstr "증폭되지 않은 풀이 이미 존재합니다. "
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10980,8 +11060,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr ""
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -11004,14 +11084,13 @@ msgstr ""
#~ msgstr "단일 토큰(토큰 쌍의 토큰)을 제공하여 풀에 유동성을 추가할 수 있습니다. 한번의 트랜잭션으로 유동성 풀을 추가하고 LP 토큰을 생성합니다. "
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr ""
+#~ msgid "Not Available"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr "가격 영향이 매우 높음"
@@ -11021,8 +11100,8 @@ msgstr "가격 영향이 매우 높음"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr ""
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11033,8 +11112,8 @@ msgstr "거래 시간 제한"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr ""
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11044,7 +11123,6 @@ msgstr ""
msgid "50%"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr "가격 영향이 매우 높음"
@@ -11054,16 +11132,16 @@ msgstr "가격 영향이 매우 높음"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr ""
+#~ msgid "Deposit Selected"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr "풀 비중:"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr "관리"
+#~ msgid "Manage"
+#~ msgstr "관리"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11079,20 +11157,24 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr ""
+#~ msgid "Click on the Settings icon"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr ""
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11107,16 +11189,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr ""
+#~ msgid "Key Features"
+#~ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr ""
+#~ msgid "Select a Range"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11127,10 +11209,9 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr ""
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11157,8 +11238,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr ""
+#~ msgid "Manage Lists"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11172,17 +11253,21 @@ msgstr ""
msgid "All Closed Orders"
msgstr ""
-#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
msgstr ""
+#: src/components/YieldPools/FarmStepGuide/index.tsx
+#~ msgid "About Static Farms"
+#~ msgstr ""
+
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr ""
+#~ msgid "We could not find anything. Try again."
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11193,8 +11278,8 @@ msgid "has been failed to transferred from"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr ""
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11205,17 +11290,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr ""
+#~ msgid "Your Referral Code"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+#~ msgid "Chain"
+#~ msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
#~ msgstr "예치된 자산 가치"
@@ -11229,8 +11318,8 @@ msgid "All Active Orders"
msgstr ""
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr ""
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr ""
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11242,17 +11331,13 @@ msgid "Keep Current Profile"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr ""
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11266,8 +11351,8 @@ msgstr "Wrapped token 사용"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr ""
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11277,12 +11362,12 @@ msgid "Migrate"
msgstr "이전"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr ""
+#~ msgid "My Watchlists"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr ""
+#~ msgid "Currently Trending"
+#~ msgstr ""
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11293,8 +11378,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr ""
+#~ msgid "Last 7d price"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11326,22 +11411,17 @@ msgstr ""
#~ msgid "{day} {0} ago"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr "로딩중"
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr ""
+#~ msgid "VOLUME (24H)"
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr ""
+#~ msgid "Limit"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11353,8 +11433,8 @@ msgid "Snapshot"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr ""
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr ""
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11373,16 +11453,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr ""
+#~ msgid "Bearish:"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr ""
+#~ msgid "Set a price alert"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr ""
+#~ msgid "Fees Earned"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11402,16 +11482,16 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr ""
+#~ msgid "Estimated Profit"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr ""
+#~ msgid "High"
+#~ msgstr ""
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11420,6 +11500,7 @@ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr "닫기"
@@ -11430,8 +11511,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr ""
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11450,8 +11531,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr ""
+#~ msgid "My Farms"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11462,15 +11543,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr ""
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr ""
@@ -11519,7 +11599,6 @@ msgstr ""
msgid "Swap Now"
msgstr ""
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr "풀"
@@ -11545,8 +11624,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr ""
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/locales/tl-PH.po b/src/locales/tl-PH.po
index fa6a2a70eb..bbcbd77f25 100644
--- a/src/locales/tl-PH.po
+++ b/src/locales/tl-PH.po
@@ -14,16 +14,16 @@ msgstr ""
"Plural-Forms: \n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr ""
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr ""
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr ""
+#~ msgid "ENDED"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr ""
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr ""
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr ""
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,18 +122,14 @@ msgstr ""
msgid "Will cost more gas fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr ""
+#~ msgid "Type"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
@@ -144,12 +140,13 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr ""
+#~ msgid "Custom Ranges"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -201,16 +198,16 @@ msgid "Token Info"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr ""
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr ""
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr ""
+#~ msgid "Funding Rate on CEX"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -218,11 +215,16 @@ msgid "Back in range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr ""
+#~ msgid "Volume"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr ""
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
msgstr ""
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
@@ -250,8 +252,8 @@ msgid "Service Fee"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr ""
+#~ msgid "Top Trending Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -294,13 +296,13 @@ msgid "Placing order"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr ""
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr ""
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -312,25 +314,29 @@ msgid "Loading token..."
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr ""
+#~ msgid "For everyone"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr ""
+#~ msgid "Removed Liquidity"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr ""
+#~ msgid "Claimed Rewards"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr ""
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -346,8 +352,8 @@ msgid "Position {0}"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr ""
+#~ msgid "This email address is already registered."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -357,6 +363,10 @@ msgstr ""
#~ msgid "Recent Transactions"
#~ msgstr ""
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr ""
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr ""
@@ -442,8 +452,8 @@ msgstr ""
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -480,15 +490,19 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr ""
+#~ msgid "Discover new opportunities."
+#~ msgstr ""
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
+#~ msgid "Supply owned"
+#~ msgstr ""
+
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
@@ -509,16 +523,16 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr ""
+#~ msgid "Lowest Gas"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr ""
+#~ msgid "{0}% Locked"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -531,16 +545,16 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr ""
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr ""
+#~ msgid "My Earnings"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -550,16 +564,20 @@ msgstr ""
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr ""
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr ""
+#~ msgid "No Farms found"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr ""
+#~ msgid "Best for very stable pairs"
+#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -582,16 +600,16 @@ msgid "Add Custom RPC Endpoint"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr ""
+#~ msgid "Watchlists name exist!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr ""
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr ""
+#~ msgid "Total Harvested Rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -611,6 +629,10 @@ msgstr ""
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr ""
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr ""
@@ -623,31 +645,29 @@ msgstr ""
msgid "All-Time High"
msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr ""
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr ""
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr ""
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr ""
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr ""
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -667,8 +687,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr ""
+#~ msgid "Token Price"
+#~ msgstr ""
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -680,7 +700,6 @@ msgstr ""
msgid "goes"
msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -688,7 +707,11 @@ msgid "Free"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
@@ -699,7 +722,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
msgstr ""
#: src/pages/Bridge/SwapForm.tsx
@@ -708,8 +736,8 @@ msgid "Cannot get token info. Please try again later."
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -729,6 +757,10 @@ msgstr ""
#~ msgid "Other Details"
#~ msgstr ""
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -752,6 +784,10 @@ msgstr ""
msgid "The owner of this liquidity position is {0}"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr ""
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr ""
@@ -759,8 +795,8 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr ""
+#~ msgid "Est. Gas Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -780,8 +816,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr ""
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -791,13 +827,17 @@ msgstr ""
msgid "Welcome to KyberSwap!"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr ""
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr ""
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -836,15 +876,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr ""
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -875,13 +914,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -889,8 +929,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -898,8 +938,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr ""
+#~ msgid "Average"
+#~ msgstr ""
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -909,6 +949,11 @@ msgstr ""
#~ msgid "Trending"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr ""
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr ""
@@ -943,8 +988,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr ""
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -976,8 +1021,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1004,8 +1049,8 @@ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr ""
+#~ msgid "Rewards"
+#~ msgstr ""
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1024,6 +1069,10 @@ msgstr ""
msgid "View more"
msgstr ""
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr ""
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr ""
@@ -1060,10 +1109,7 @@ msgstr ""
msgid "All-Time Low"
msgstr ""
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr ""
@@ -1071,21 +1117,21 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr ""
+#~ msgid "Ended at"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr ""
+#~ msgid "Ending In"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr ""
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1103,8 +1149,8 @@ msgstr ""
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr ""
+#~ msgid "Currently there are no Farms."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1114,8 +1160,8 @@ msgid "Pooled {0}"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr ""
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1123,8 +1169,8 @@ msgid "Cross-Chain"
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr ""
+#~ msgid "Supply Anyway"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1150,8 +1196,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr ""
+#~ msgid "Harvest"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1178,8 +1224,6 @@ msgid "You haven't made any transfers yet"
msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr ""
@@ -1192,8 +1236,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr ""
+#~ msgid "Farming Contract"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1202,8 +1246,8 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr ""
+#~ msgid "Insufficient Liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1222,24 +1266,24 @@ msgid "Forgot your Passcode?"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr ""
+#~ msgid "Referral code is invalid."
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr ""
+#~ msgid "Many"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr ""
+#~ msgid "Sign in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr ""
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1250,8 +1294,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr ""
+#~ msgid "Set a Custom Range"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1274,16 +1318,14 @@ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr ""
+#~ msgid "There was an error. Please try again later."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1294,8 +1336,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr ""
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1303,8 +1345,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr ""
+#~ msgid "Your liquidity"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1320,8 +1362,8 @@ msgid "Import Pool"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr ""
+#~ msgid "Top Bullish Tokens"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1336,8 +1378,16 @@ msgstr ""
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr ""
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1345,13 +1395,13 @@ msgid "Current Price in the market."
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr ""
+#~ msgid "Perpetual Markets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr ""
+#~ msgid "Start Earning"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1372,8 +1422,8 @@ msgid "Navigating My Pools Tutorial"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr ""
+#~ msgid "Technical Analysis"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1388,8 +1438,8 @@ msgid "Tokens"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr ""
+#~ msgid "TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1416,12 +1466,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr ""
+#~ msgid "Markets"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr ""
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1429,8 +1479,8 @@ msgid "Are you sure?"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr ""
+#~ msgid "Withdraw your liquidity"
+#~ msgstr ""
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1441,8 +1491,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr ""
+#~ msgid "Current phase will end in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1454,8 +1504,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr ""
+#~ msgid "New phase will start in"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1471,15 +1521,13 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr ""
+#~ msgid "Inflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1488,8 +1536,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr ""
+#~ msgid "APR"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1534,16 +1582,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr ""
+#~ msgid "Wallet Analytics"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr ""
+#~ msgid "Actions"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1558,12 +1606,12 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr ""
+#~ msgid "Staked TVL"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr ""
+#~ msgid "Committed to Security"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1574,14 +1622,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr ""
+#~ msgid "KyberAI"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1609,27 +1657,21 @@ msgstr ""
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr ""
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
@@ -1651,14 +1693,13 @@ msgid "the price of"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr ""
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr ""
+#~ msgid "STAKED TVL ↓"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1677,8 +1718,8 @@ msgid "Not selected option"
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr ""
+#~ msgid "Harvest Error"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1705,8 +1746,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr ""
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1741,12 +1782,12 @@ msgid "Gas Abuser"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr ""
+#~ msgid "View Less Stats"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr ""
+#~ msgid "Static Farms"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1761,8 +1802,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr ""
+#~ msgid "Token Pair | Fee"
+#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1774,8 +1815,8 @@ msgid "Custom"
msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr ""
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1834,8 +1875,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr ""
+#~ msgid "Not Eligible"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1866,8 +1907,8 @@ msgstr ""
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr ""
+#~ msgid "Explore"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1909,12 +1950,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr ""
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr ""
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1942,8 +1983,8 @@ msgid "Claim your rewards"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr ""
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1969,6 +2010,10 @@ msgstr ""
msgid "KyberSwap Guide"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr ""
@@ -1979,16 +2024,16 @@ msgstr ""
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr ""
+#~ msgid "Analyze Wallet"
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr ""
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -2002,8 +2047,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2011,12 +2056,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr ""
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr ""
+#~ msgid "Turn on to display live chart."
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2024,13 +2069,17 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr ""
+#~ msgid "Trending Soon"
+#~ msgstr ""
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr ""
+
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
#~ msgid "Search"
#~ msgstr ""
@@ -2056,23 +2105,23 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr ""
+#~ msgid "Create New Pool"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr ""
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr ""
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr ""
+#~ msgid "My Liquidity Positions"
+#~ msgstr ""
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2087,16 +2136,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr ""
+#~ msgid "Participate in our campaigns"
+#~ msgstr ""
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr ""
+#~ msgid "Market Price"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2115,12 +2168,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr ""
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr ""
+#~ msgid "KyberAI Banner"
+#~ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2128,8 +2181,6 @@ msgstr ""
msgid "Insufficient {s} balance"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr ""
@@ -2139,12 +2190,16 @@ msgid "Wrap Error"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr ""
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2198,8 +2253,8 @@ msgid "Total Balance"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr ""
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2214,8 +2269,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr ""
+#~ msgid "FEES ↓"
+#~ msgstr ""
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2227,25 +2282,25 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr ""
+#~ msgid "Collapse All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr ""
+#~ msgid "Copy token address"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr ""
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr ""
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2263,8 +2318,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr ""
+#~ msgid "My Watchlist"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2275,12 +2330,12 @@ msgid "Delegate Address"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr ""
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr ""
+#~ msgid "Earning Charts"
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2291,21 +2346,21 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr ""
+#~ msgid "Fees (24h)"
+#~ msgstr ""
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr ""
+#~ msgid "VOLUME ↑"
+#~ msgstr ""
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr ""
+#~ msgid "Aggregator"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2314,8 +2369,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr ""
+#~ msgid "Share this pool with your friends!"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2323,12 +2378,12 @@ msgid "Faucet"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr ""
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr ""
+#~ msgid "Increase Amount"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2351,8 +2406,8 @@ msgid "Whitelisted Function"
msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr ""
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2386,12 +2441,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr ""
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr ""
+#~ msgid "Error occur, please try again."
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2442,8 +2497,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr ""
+#~ msgid "Bearish"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2472,7 +2527,6 @@ msgid "Gasless Edit"
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr ""
@@ -2480,8 +2534,6 @@ msgstr ""
msgid "Est. Market Price"
msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2503,13 +2555,13 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr ""
+#~ msgid "Exchange"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr ""
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr ""
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2524,8 +2576,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr ""
+#~ msgid "Amount held"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2559,10 +2611,14 @@ msgstr ""
#~ msgid "Connect Wallet"
#~ msgstr ""
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr ""
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2615,8 +2671,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr ""
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2631,8 +2687,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr ""
+#~ msgid "Support & Resistance Levels"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2688,8 +2744,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr ""
+#~ msgid "Current price"
+#~ msgstr ""
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2697,16 +2753,14 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr ""
+#~ msgid "Add Liquidity Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr ""
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr ""
@@ -2715,7 +2769,6 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr ""
@@ -2726,7 +2779,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
msgstr ""
#: src/components/SwapForm/MultichainKNCNote.tsx
@@ -2746,12 +2808,12 @@ msgid "Hard Cancel Instead"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr ""
+#~ msgid "Deposit Amounts"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr ""
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2759,19 +2821,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr ""
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2779,21 +2838,21 @@ msgstr ""
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr ""
+#~ msgid "Add liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr ""
+#~ msgid "Daily Range"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr ""
+#~ msgid "Bullish:"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2820,8 +2879,8 @@ msgid "Stake liquidity into farm"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2838,23 +2897,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr ""
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr ""
+#~ msgid "Share this with your friends!"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr ""
+#~ msgid "Add Liquidity ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr ""
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2870,20 +2929,20 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr ""
+#~ msgid "Eligible"
+#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr ""
+#~ msgid "Trading Campaigns"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr ""
+#~ msgid "Top Bearish Tokens"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2894,8 +2953,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr ""
+#~ msgid "Reached max limit."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2929,8 +2988,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr ""
+#~ msgid "Trading Volume"
+#~ msgstr ""
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2938,17 +2997,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr ""
+#~ msgid "Update"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr ""
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr ""
+#~ msgid "1Y Range"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2960,14 +3019,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr ""
@@ -2976,8 +3028,8 @@ msgid "TOKEN UTILITY"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -2998,15 +3050,15 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr ""
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3019,8 +3071,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr ""
+#~ msgid "Stake your liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3031,25 +3083,24 @@ msgid "{pendingLength} Pending"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr ""
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr ""
+#~ msgid "Active"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr ""
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr ""
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr ""
@@ -3062,8 +3113,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3078,13 +3129,13 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr ""
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr ""
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3093,8 +3144,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr ""
+#~ msgid "Enter amp (>=1)"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3109,8 +3160,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr ""
+#~ msgid "Go back Ranking page"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3125,8 +3176,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr ""
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3137,8 +3188,8 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr ""
+#~ msgid "Volume (24h)"
+#~ msgstr ""
#:
#:
@@ -3150,39 +3201,38 @@ msgid "Gasless Cancel All Orders"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr ""
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr ""
+#~ msgid "Upcoming Farms"
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr ""
+#~ msgid "Farm Ended"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr ""
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr ""
@@ -3196,8 +3246,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr ""
+#~ msgid "Idle Range"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3221,8 +3271,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr ""
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3239,12 +3289,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr ""
+#~ msgid "Trending Soon Tokens"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr ""
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3265,8 +3315,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr ""
+#~ msgid "Pool | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3285,22 +3335,25 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr ""
+#~ msgid "Add {0} to {1}"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr ""
+#~ msgid "Live Chart"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr ""
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3308,8 +3361,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr ""
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3321,8 +3374,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr ""
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3333,20 +3386,20 @@ msgid "User denied message signature"
msgstr ""
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr ""
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr ""
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr ""
+#~ msgid "Trending soon"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3357,16 +3410,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr ""
+#~ msgid "Collapse"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr ""
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3377,29 +3430,29 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr ""
+#~ msgid "Fee Range"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr ""
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr ""
+#~ msgid "MY REWARD ↑"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr ""
+#~ msgid "Harvesting rewards"
+#~ msgstr ""
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3418,12 +3471,12 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr ""
+#~ msgid "Maintainance"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr ""
+#~ msgid "My liquidity"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3438,8 +3491,8 @@ msgid "No price alerts created yet"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr ""
+#~ msgid "Full unlocked"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3448,8 +3501,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr ""
+#~ msgid "My Deposit"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3473,27 +3526,27 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr ""
+#~ msgid "Example"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr ""
+#~ msgid "Number"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr ""
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr ""
+#~ msgid "Token pair"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3514,12 +3567,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr ""
+#~ msgid "All Time Low"
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr ""
+#~ msgid "Current Chain"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3538,13 +3591,14 @@ msgstr ""
msgid "Stake Information"
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr ""
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3554,17 +3608,19 @@ msgstr ""
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
msgstr ""
+#: src/components/ElasticZap/QuickZap.tsx
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr ""
+
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr ""
@@ -3574,37 +3630,40 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr ""
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr ""
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr ""
+#~ msgid "New Liquidity Amount"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr ""
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr ""
@@ -3614,16 +3673,16 @@ msgid "Market Info"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr ""
+#~ msgid "Remove Watchlist"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr ""
+#~ msgid "APR for each Farming Range"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3642,8 +3701,8 @@ msgid "My Current Position"
msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr ""
+#~ msgid "Unsupported Asset"
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3659,7 +3718,11 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
@@ -3683,12 +3746,12 @@ msgid "Your Transactions"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr ""
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr ""
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3709,16 +3772,16 @@ msgid "Your import token (click to copy)"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr ""
+#~ msgid "Select Override Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr ""
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr ""
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3745,8 +3808,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr ""
+#~ msgid "VOLUME ↓"
+#~ msgstr ""
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3757,8 +3820,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr ""
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3774,11 +3837,10 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr ""
+#~ msgid "Levels"
+#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr ""
@@ -3791,12 +3853,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr ""
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr ""
+#~ msgid "Stablecoins"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3807,13 +3869,17 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
-msgstr ""
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr ""
#:
#~ msgid "We gives liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
#~ msgstr ""
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
+msgstr ""
+
#: src/pages/About/AboutKNC.tsx
msgid "Stake KNC, Vote, Earn Rewards."
msgstr ""
@@ -3838,15 +3904,14 @@ msgstr ""
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr ""
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr ""
@@ -3876,8 +3941,8 @@ msgid "Risky Item(s)"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr ""
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3903,8 +3968,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr ""
+#~ msgid "24h Netflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3922,22 +3987,26 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr ""
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr ""
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3946,12 +4015,12 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr ""
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr ""
+#~ msgid "Static Fees"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3962,24 +4031,24 @@ msgid "Where you can buy KNC"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr ""
+#~ msgid "Best for stable pairs"
+#~ msgstr ""
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr ""
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3988,16 +4057,16 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr ""
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr ""
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4027,11 +4096,10 @@ msgid "Wrong Network"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr ""
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr ""
@@ -4040,12 +4108,12 @@ msgid "VALUE"
msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr ""
+#~ msgid "View Pool"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr ""
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4073,16 +4141,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr ""
+#~ msgid "Farm ended"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr ""
+#~ msgid "Available Farming Range"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4102,8 +4170,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr ""
+#~ msgid "Rewards Breakdown"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4138,8 +4206,8 @@ msgid "Your import token"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr ""
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4160,11 +4228,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr ""
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4179,8 +4245,8 @@ msgid "Cross-chain rate is"
msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr ""
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4199,7 +4265,6 @@ msgid "Default Options"
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4220,8 +4285,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr ""
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4232,7 +4297,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr ""
@@ -4245,8 +4309,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr ""
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4257,12 +4321,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr ""
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr ""
+#~ msgid "Live Trades"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4270,7 +4334,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr ""
@@ -4279,8 +4342,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr ""
+#~ msgid "BONUS REWARDS"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4291,30 +4354,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr ""
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr ""
+#~ msgid "Best for most pairs"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr ""
+#~ msgid "Approving {0}"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr ""
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "<0>Advanced Mode0> turns off the 'Confirm' transaction prompt and allows high slippage trades that can result in bad rates and lost funds."
@@ -4339,14 +4401,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr ""
+#~ msgid "All Time High"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4367,12 +4431,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr ""
+#~ msgid "Deposit Farm Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr ""
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr ""
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4410,25 +4474,27 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr ""
+#~ msgid "Insufficient Balance"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr ""
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
msgstr ""
#: src/state/mint/proamm/hooks.tsx
@@ -4436,8 +4502,8 @@ msgid "Position {0}: Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr ""
+#~ msgid "View all"
+#~ msgstr ""
#:
#~ msgid "Rewards: {0} {1}"
@@ -4511,8 +4577,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr ""
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4527,31 +4593,30 @@ msgid "Sell Tax"
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr ""
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr ""
+#~ msgid "Learn More"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr ""
+#~ msgid "Video Tutorial"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr ""
@@ -4559,10 +4624,15 @@ msgstr ""
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr ""
+#~ msgid "Unstake Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4573,8 +4643,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr ""
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4592,24 +4662,14 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr ""
+#~ msgid "Unstake your liquidity"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Add Liquidity"
msgstr ""
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr ""
@@ -4618,19 +4678,13 @@ msgid "Find out more"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr ""
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr ""
@@ -4644,14 +4698,14 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr ""
+#~ msgid "here ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr ""
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4672,7 +4726,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
@@ -4696,8 +4755,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr ""
+#~ msgid "Favourites"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4707,22 +4766,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr ""
+#~ msgid "Reset"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr ""
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr ""
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4730,8 +4787,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr ""
+#~ msgid "Website"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4756,16 +4813,16 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr ""
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr ""
+#~ msgid "Token Rankings"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4788,7 +4845,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr ""
@@ -4824,7 +4880,6 @@ msgid "Favorite Chain(s)"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr ""
@@ -4837,8 +4892,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr ""
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4864,8 +4919,8 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr ""
+#~ msgid "Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4886,24 +4941,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr ""
+#~ msgid "END TIME ↑"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr ""
+#~ msgid "Pool Ratio"
+#~ msgstr ""
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr ""
@@ -4912,7 +4966,6 @@ msgstr ""
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4928,12 +4981,10 @@ msgid "I Understand"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr ""
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr ""
@@ -4946,16 +4997,16 @@ msgid "Voting starts in:"
msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr ""
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/index.tsx
msgid "Security Info"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr ""
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr ""
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -4995,8 +5046,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr ""
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5027,8 +5078,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5052,28 +5103,32 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr ""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr ""
-#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
msgstr ""
+#: src/components/YieldPools/FarmPoolSort.tsx
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr ""
+
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr ""
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr ""
+#~ msgid "Deposited Positions"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5096,7 +5151,6 @@ msgstr ""
#~ msgstr ""
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr ""
@@ -5109,11 +5163,15 @@ msgid "Exchange rate is always 1 to 1."
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr ""
+#~ msgid "Get alpha before it happens"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
msgstr ""
#: src/utils/time.ts
@@ -5125,11 +5183,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr ""
+#~ msgid "Closed Positions"
+#~ msgstr ""
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr ""
@@ -5139,8 +5196,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr ""
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr ""
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5151,8 +5208,8 @@ msgid "Cannot vote at this moment"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr ""
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5163,17 +5220,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr ""
+#~ msgid "Go to farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr ""
+#~ msgid "Top 10 Holders"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr ""
+#~ msgid "Static Farm"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5184,8 +5241,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr ""
+#~ msgid "View Positions"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5241,12 +5298,12 @@ msgid "Code will expire in {0}{1}"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr ""
+#~ msgid "MY DEPOSIT"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr ""
+#~ msgid "Bug Bounty"
+#~ msgstr ""
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5289,12 +5346,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr ""
+#~ msgid "Withdraw Error"
+#~ msgstr ""
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr ""
+#~ msgid "Approve Farm Error"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5305,8 +5362,8 @@ msgid "Buy Tax"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr ""
+#~ msgid "View Less"
+#~ msgstr ""
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5328,12 +5385,6 @@ msgstr ""
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr ""
@@ -5344,13 +5395,17 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr ""
+#~ msgid "Invalid Input"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr ""
@@ -5360,8 +5415,8 @@ msgid "Can sell all"
msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr ""
+#~ msgid "Token name"
+#~ msgstr ""
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5372,8 +5427,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr ""
+#~ msgid "Price | 24 Change"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5412,6 +5467,10 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr ""
@@ -5425,8 +5484,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr ""
+#~ msgid "Withdraw Selected"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5436,6 +5495,10 @@ msgstr ""
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr ""
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr ""
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr ""
@@ -5445,8 +5508,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr ""
+#~ msgid "Supplying {text}"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5457,8 +5520,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr ""
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5473,7 +5536,6 @@ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5492,8 +5554,6 @@ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr ""
@@ -5516,7 +5576,6 @@ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr ""
@@ -5533,8 +5592,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr ""
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5545,22 +5604,22 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr ""
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr ""
+#~ msgid "View More Stats"
+#~ msgstr ""
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr ""
@@ -5569,8 +5628,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr ""
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5597,7 +5656,6 @@ msgstr ""
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr ""
@@ -5626,8 +5684,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr ""
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5642,8 +5700,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr ""
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5655,8 +5713,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr ""
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5676,8 +5734,8 @@ msgid "Quorum Status"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr ""
+#~ msgid "ENDING IN"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5689,8 +5747,8 @@ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr ""
+#~ msgid "ACTIONS"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5706,20 +5764,16 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr ""
+#~ msgid "Best for exotic pairs"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr ""
+#~ msgid "{0}% Claimed"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5730,22 +5784,21 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr ""
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr ""
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr ""
+#~ msgid "Farm has not started"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5753,19 +5806,14 @@ msgstr ""
msgid "Import Tokens"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr ""
@@ -5777,10 +5825,14 @@ msgstr ""
#~ msgid "could be trending very soon!"
#~ msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
msgstr ""
+#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
+#~ msgid "Target Volume"
+#~ msgstr ""
+
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
#~ msgstr ""
@@ -5790,8 +5842,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr ""
+#~ msgid "Choose pool"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5834,8 +5886,8 @@ msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr ""
+#~ msgid "Dynamic Fee Range"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5861,8 +5913,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5874,24 +5926,24 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr ""
+#~ msgid "{0}% Refund"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr ""
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr ""
+#~ msgid "3d Netflow"
+#~ msgstr ""
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5901,9 +5953,11 @@ msgstr ""
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr ""
@@ -5911,17 +5965,21 @@ msgstr ""
#~ msgid "- Remove send"
#~ msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
msgstr ""
+#: src/pages/AddLiquidityV2/index.tsx
+#~ msgid "Set Starting Price"
+#~ msgstr ""
+
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr ""
+#~ msgid "Liquidations on CEX"
+#~ msgstr ""
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5940,14 +5998,12 @@ msgstr ""
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr ""
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5955,8 +6011,8 @@ msgid "at"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr ""
+#~ msgid "Trading Grant Campaign"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5971,8 +6027,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr ""
+#~ msgid "Support & Resistance Levels."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -5982,13 +6038,13 @@ msgstr ""
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr ""
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr ""
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr ""
+#~ msgid "Unstake Error"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6014,7 +6070,6 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr ""
@@ -6042,16 +6097,16 @@ msgid "Export Profile"
msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr ""
+#~ msgid "My 1st Watchlist"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr ""
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6059,27 +6114,26 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr ""
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr ""
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr ""
+#~ msgid "Netflow to CEX"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr ""
@@ -6088,18 +6142,18 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr ""
+#~ msgid "MY LIQUIDITY"
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr ""
+#~ msgid "Rankings"
+#~ msgstr ""
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr ""
+#~ msgid "Timeframe"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6108,17 +6162,17 @@ msgid "Contract Address"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr ""
+#~ msgid "Please select fee"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr ""
+#~ msgid "to Whale Wallets"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr ""
+#~ msgid "Stake Selected"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6129,8 +6183,8 @@ msgid "Holiday Mode"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr ""
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr ""
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6176,12 +6230,12 @@ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr ""
+#~ msgid "Gas Price Tracker"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr ""
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6206,13 +6260,13 @@ msgid "Approve {tokenSymbol}"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr ""
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr ""
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6227,6 +6281,10 @@ msgstr ""
msgid "Max is {format}"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr ""
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr ""
@@ -6236,8 +6294,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr ""
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6248,16 +6306,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr ""
+#~ msgid "Starting Price"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6272,8 +6330,8 @@ msgid "has been successfully transferred from"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr ""
+#~ msgid "Best for very volatile pairs"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6313,8 +6371,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr ""
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6329,12 +6387,12 @@ msgid "Signing in..."
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr ""
+#~ msgid "Create list"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr ""
+#~ msgid "1 user is ahead of you"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6345,11 +6403,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr ""
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr ""
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr ""
@@ -6357,12 +6414,20 @@ msgstr ""
msgid "{0} price of {rateStr} {1}"
msgstr ""
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr ""
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr ""
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
@@ -6370,8 +6435,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr ""
+#~ msgid "Total Earnings"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6381,8 +6446,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr ""
+#~ msgid "AVG APR ↓"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6419,8 +6484,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr ""
+#~ msgid "STAKED TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6455,7 +6520,6 @@ msgstr ""
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr ""
@@ -6465,12 +6529,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr ""
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr ""
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6482,18 +6546,11 @@ msgid "Price Range"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr ""
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6519,9 +6576,7 @@ msgstr ""
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr ""
@@ -6529,26 +6584,29 @@ msgstr ""
msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the standard ERC20 implementation only. Please do your own research before you provide liquidity using tokens with unique mechanics (e.g. FOT, Rebase, LP tokens, contract deposits, etc.). More info <0>here0>"
msgstr ""
-#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
+#: src/pages/ProAmmPools/ListItem.tsx
+#~ msgid "View analytics"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr ""
+#~ msgid "Contact Us"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr ""
+#~ msgid "Feedback"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6567,16 +6625,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr ""
+#~ msgid "Your Pool Allocation"
+#~ msgstr ""
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6614,13 +6672,6 @@ msgstr ""
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6628,25 +6679,11 @@ msgstr ""
msgid "Approve"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6667,28 +6704,32 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr ""
+#~ msgid "Maximum Return"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr ""
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr ""
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr ""
+#~ msgid "On-Chain Analysis"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr ""
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr ""
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6715,7 +6756,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr ""
@@ -6724,8 +6764,8 @@ msgid "How to participate"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr ""
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6747,7 +6787,7 @@ msgstr ""
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr ""
@@ -6757,8 +6797,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6779,16 +6819,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr ""
+#~ msgid "Select fee tier"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr ""
+#~ msgid "MY REWARD ↓"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6796,20 +6836,16 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr ""
+#~ msgid "Netflow"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr ""
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr ""
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6845,36 +6881,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr ""
+#~ msgid "You are creating a pool"
+#~ msgstr ""
#:
#~ msgid "Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists."
#~ msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr ""
+#~ msgid "Best for rare use cases"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr ""
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr ""
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr ""
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr ""
+#~ msgid "New Updates to KyberAI"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6883,16 +6919,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr ""
+#~ msgid "Funding Rates"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr ""
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6928,8 +6964,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr ""
+#~ msgid "AVG APR ↑"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6943,23 +6979,23 @@ msgstr ""
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr ""
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr ""
+#~ msgid "Live Charts"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr ""
+#~ msgid "Disable Metamask in C98"
+#~ msgstr ""
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6968,8 +7004,8 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6981,43 +7017,41 @@ msgid "per"
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr ""
+#~ msgid "Expand All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr ""
+#~ msgid "Bullish"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr ""
+#~ msgid "Add liquidity error"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr ""
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr ""
+#~ msgid "Deposit your liquidity"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr ""
@@ -7038,8 +7072,8 @@ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr ""
+#~ msgid "Learn More ↗"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7067,8 +7101,8 @@ msgid "Cooldown"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr ""
+#~ msgid "Watchlist"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7076,10 +7110,9 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr ""
@@ -7097,8 +7130,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr ""
+#~ msgid "Locked Rewards"
+#~ msgstr ""
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7124,8 +7157,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr ""
+#~ msgid "Top Traded"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7140,10 +7173,6 @@ msgstr ""
#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr ""
@@ -7154,8 +7183,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr ""
+#~ msgid "Supply"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7168,20 +7197,19 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr ""
+#~ msgid "Available Balance"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr ""
+#~ msgid "Help"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr ""
@@ -7224,7 +7252,6 @@ msgstr ""
#~ msgstr ""
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr ""
@@ -7237,8 +7264,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr ""
+#~ msgid "Dynamic"
+#~ msgstr ""
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7258,8 +7285,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7279,8 +7306,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr ""
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr ""
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7295,8 +7322,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr ""
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr ""
@@ -7304,6 +7329,11 @@ msgstr ""
#~ msgid "Tag:"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr ""
@@ -7325,8 +7355,8 @@ msgid "Available"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr ""
+#~ msgid "Last 7 days"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7341,22 +7371,26 @@ msgstr ""
msgid "Axelar/Squid doesn't support this chain"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr ""
+#~ msgid "Spot Markets"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr ""
+#~ msgid "Funding rate"
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7372,20 +7406,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr ""
+#~ msgid "Holders (On-chain)"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr ""
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr ""
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7395,11 +7429,11 @@ msgstr ""
#~ msgid "Acknowledge"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr ""
@@ -7433,16 +7467,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr ""
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7453,8 +7487,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr ""
+#~ msgid "Enable Metamask in C98"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7469,8 +7503,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr ""
+#~ msgid "No vesting schedule!"
+#~ msgstr ""
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7493,8 +7527,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr ""
+#~ msgid "Deposited Liquidity"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7516,16 +7550,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr ""
+#~ msgid "Centralized Exchanges"
+#~ msgstr ""
#:
#~ msgid "DEPOSIT"
#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr ""
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7548,12 +7582,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr ""
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr ""
@@ -7561,14 +7593,18 @@ msgstr ""
msgid "Your currently existing order is {filledPercent}% filled."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr ""
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr ""
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7583,14 +7619,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr ""
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr ""
@@ -7617,16 +7656,16 @@ msgid "Min"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr ""
+#~ msgid "Update Liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr ""
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7645,8 +7684,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7695,22 +7734,23 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr ""
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr ""
+#~ msgid "No liquidity found."
+#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr ""
@@ -7738,8 +7778,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr ""
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7754,8 +7794,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr ""
+#~ msgid "Sort"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7767,16 +7807,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr ""
+#~ msgid "Referral code is invalid"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr ""
+#~ msgid "All positions"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7784,20 +7824,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr ""
+#~ msgid "Show more"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr ""
+#~ msgid "Top All Tokens"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7816,15 +7856,15 @@ msgid "DAO Governance"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr ""
+#~ msgid "Farming Ranges"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr ""
@@ -7848,10 +7888,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr ""
@@ -7878,13 +7914,18 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr ""
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
msgstr ""
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7896,8 +7937,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr ""
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7908,20 +7949,20 @@ msgid "KYBER DAO"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr ""
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr ""
+#~ msgid "Prices and Pool share"
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr ""
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7942,16 +7983,16 @@ msgid "Accept"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr ""
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr ""
+#~ msgid "Update your liquidity"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7974,8 +8015,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr ""
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -7989,6 +8030,10 @@ msgstr ""
msgid "Vote - Earn Rewards"
msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr ""
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr ""
@@ -8011,12 +8056,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr ""
+#~ msgid "Go to farm ↗"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr ""
+#~ msgid "My Share of Pool"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8043,8 +8088,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr ""
+#~ msgid "Approve Farming Contract"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8078,8 +8123,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr ""
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8105,6 +8150,10 @@ msgstr ""
msgid "Error when changing network."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr ""
@@ -8122,8 +8171,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr ""
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8133,9 +8182,13 @@ msgstr ""
msgid "Claimed"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr ""
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr ""
@@ -8144,8 +8197,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr ""
+#~ msgid "Create"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8180,8 +8233,9 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8192,10 +8246,14 @@ msgstr ""
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr ""
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr ""
+#~ msgid "Farming Range"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8222,16 +8280,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr ""
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr ""
+#~ msgid "Staked Balance"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8246,16 +8304,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr ""
+#~ msgid "Support / Resistance Levels"
+#~ msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr ""
@@ -8267,7 +8323,6 @@ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr ""
@@ -8292,13 +8347,17 @@ msgstr ""
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
msgstr ""
+#: src/pages/IncreaseLiquidity/index.tsx
+#~ msgid "404"
+#~ msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr ""
+#~ msgid "Dynamic Farm"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8312,11 +8371,10 @@ msgid "Notifications"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr ""
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr ""
@@ -8325,16 +8383,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr ""
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr ""
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8344,8 +8402,11 @@ msgstr ""
msgid "TVL From DEXs"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr ""
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr ""
@@ -8353,8 +8414,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr ""
+#~ msgid "24h volume"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8373,53 +8434,39 @@ msgstr ""
msgid "{0}% Transaction Fee"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr ""
+#~ msgid "Top 25 Holders"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8431,8 +8478,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr ""
+#~ msgid "Business Enquiries"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8442,13 +8489,21 @@ msgstr ""
#~ msgid "Earn more due to compounding"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr ""
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr ""
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8459,8 +8514,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr ""
+#~ msgid "KyberAI Widget"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8475,16 +8530,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr ""
+#~ msgid "Checking data..."
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr ""
+#~ msgid "About Dynamic Farms"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8511,7 +8566,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr ""
@@ -8521,8 +8575,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr ""
+#~ msgid "Not Applicable"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8538,8 +8592,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr ""
+#~ msgid "View Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8550,15 +8604,7 @@ msgstr ""
#~ msgstr ""
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8575,8 +8621,8 @@ msgid "Github"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr ""
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr ""
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8608,12 +8654,12 @@ msgid "You have already delegated your voting power to this address."
msgstr ""
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr ""
+#~ msgid "Available for yield farming"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr ""
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
@@ -8625,8 +8671,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr ""
+#~ msgid "Token Name"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8637,16 +8683,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr ""
+#~ msgid "On-chain & Open Source"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr ""
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr ""
+#~ msgid "Tokens Breakdown"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8674,12 +8720,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr ""
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr ""
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8687,14 +8733,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr ""
@@ -8707,8 +8746,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr ""
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8728,24 +8767,24 @@ msgid "Review Order"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr ""
+#~ msgid "Dynamic Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr ""
+#~ msgid "Farming Guide"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr ""
+#~ msgid "Static"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8757,17 +8796,17 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr ""
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr ""
+#~ msgid "View Earnings"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr ""
+#~ msgid "END TIME ↓"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8819,28 +8858,19 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr ""
+#~ msgid "Available for yield farming."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr ""
@@ -8850,8 +8880,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr ""
+#~ msgid "View more ↗"
+#~ msgstr ""
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8877,13 +8907,15 @@ msgstr ""
msgid "Deposit"
msgstr ""
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr ""
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr ""
@@ -8898,16 +8930,16 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr ""
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr ""
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8938,12 +8970,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr ""
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr ""
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8961,7 +8993,6 @@ msgstr ""
msgid "You don't have any balance token"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr ""
@@ -8983,7 +9014,6 @@ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr ""
@@ -9027,7 +9057,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr ""
@@ -9054,12 +9083,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr ""
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr ""
+#~ msgid "Update Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9071,13 +9100,17 @@ msgid "I pay"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr ""
+#~ msgid "{0}% claimable"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr ""
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr ""
@@ -9088,8 +9121,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr ""
+#~ msgid "Estimated Risk"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9111,12 +9144,12 @@ msgid "Liquidity Sources"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr ""
+#~ msgid "Fill survey"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr ""
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9145,14 +9178,13 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr ""
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr ""
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr ""
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr ""
@@ -9200,7 +9232,11 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
@@ -9233,8 +9269,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr ""
+#~ msgid "You're first in line!"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9259,20 +9295,25 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr ""
+#~ msgid "KyberScore Delta"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr ""
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr ""
+#~ msgid "Top Trade Tokens"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9283,8 +9324,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr ""
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9296,8 +9337,8 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr ""
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9323,7 +9364,11 @@ msgid "Copy address to clipboard"
msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
+#~ msgid "Expires In"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
msgstr ""
#: src/components/Menu/index.tsx
@@ -9332,8 +9377,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr ""
+#~ msgid "AVG APR"
+#~ msgstr ""
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9344,8 +9389,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr ""
+#~ msgid "Referral Code (Optional)"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9357,8 +9402,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr ""
+#~ msgid "Seamless liquidity."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9376,13 +9421,17 @@ msgstr ""
#~ msgid "Update list"
#~ msgstr ""
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr ""
+
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9414,32 +9463,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr ""
+#~ msgid "All {displayName}"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
+#~ msgid "Your Email"
+#~ msgstr ""
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
msgstr ""
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr ""
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr ""
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr ""
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9450,20 +9503,20 @@ msgid "Email Verified"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr ""
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr ""
+#~ msgid "Active Farms"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9475,16 +9528,16 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr ""
+#~ msgid "Low"
+#~ msgstr ""
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr ""
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr ""
#:
#~ msgid "Max APR Available ↗️"
@@ -9499,8 +9552,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr ""
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9543,10 +9596,18 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
+#~ msgid "My Rewards"
+#~ msgstr ""
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
msgstr ""
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9561,8 +9622,8 @@ msgid "Open Source"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr ""
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9573,8 +9634,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr ""
+#~ msgid "Get pool info"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9586,8 +9647,8 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr ""
+#~ msgid "View Pool Details"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9598,8 +9659,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr ""
+#~ msgid "Stake Error"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9609,10 +9670,15 @@ msgstr ""
msgid "Confirm this transaction in your wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "Let's go!"
+#~ msgstr ""
+
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
#~ msgstr ""
@@ -9627,10 +9693,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr ""
+#~ msgid "to Centralized Exchanges"
+#~ msgstr ""
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr ""
@@ -9643,7 +9709,6 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr ""
@@ -9668,7 +9733,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9706,7 +9770,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr ""
@@ -9719,8 +9782,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr ""
+#~ msgid "Top traded pairs"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9731,7 +9794,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr ""
@@ -9740,12 +9802,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr ""
+#~ msgid "View All"
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr ""
@@ -9754,12 +9814,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr ""
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr ""
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9786,8 +9846,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr ""
+#~ msgid "HIGHER RETURNS"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9798,8 +9858,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr ""
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9821,6 +9881,7 @@ msgstr ""
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9871,8 +9932,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr ""
+#~ msgid "Increase"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9906,16 +9967,16 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr ""
+#~ msgid "Pool Information"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr ""
+#~ msgid "Amount staked in a farm."
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9926,8 +9987,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr ""
+#~ msgid "Trending Soon:"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9939,8 +10000,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr ""
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9958,7 +10019,6 @@ msgstr ""
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr ""
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr ""
@@ -9968,8 +10028,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr ""
+#~ msgid "Decentralized Exchanges"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -9984,17 +10044,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr ""
+#~ msgid "Code Audited"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr ""
+#~ msgid "Change network"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -10004,10 +10064,18 @@ msgstr ""
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr ""
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr ""
@@ -10017,8 +10085,8 @@ msgid "Buy"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr ""
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10030,8 +10098,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr ""
+#~ msgid "New Positions"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10042,12 +10110,12 @@ msgid "Completed"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr ""
+#~ msgid "TVL ↓"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr ""
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10055,16 +10123,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr ""
+#~ msgid "KyberAI Watchlist"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr ""
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10074,6 +10142,10 @@ msgstr ""
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr ""
@@ -10088,8 +10160,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr ""
+#~ msgid "Number of Holders"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10128,20 +10200,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr ""
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr ""
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr ""
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr ""
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr ""
#:
#:
@@ -10149,6 +10221,10 @@ msgstr ""
#~ msgid "APY"
#~ msgstr ""
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr ""
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr ""
@@ -10162,12 +10238,12 @@ msgid "this profile"
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr ""
+#~ msgid "View positions"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr ""
+#~ msgid "Share this token"
+#~ msgstr ""
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10177,10 +10253,6 @@ msgstr ""
msgid "Order has been successfully cancelled."
msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr ""
@@ -10198,12 +10270,12 @@ msgid "View less"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr ""
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10268,8 +10340,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr ""
+#~ msgid "FEES ↑"
+#~ msgstr ""
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10281,10 +10353,14 @@ msgstr ""
msgid "Confirm Swap Details"
msgstr ""
-#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
msgstr ""
+#: src/components/Tutorial/TutorialSwap/constant.ts
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
msgstr ""
@@ -10302,8 +10378,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr ""
+#~ msgid "Farming Pools"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10315,8 +10391,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr ""
+#~ msgid "There are no pools for this token pair."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10327,8 +10403,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr ""
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr ""
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10336,8 +10412,8 @@ msgid "Permit Error"
msgstr ""
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr ""
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10360,27 +10436,26 @@ msgstr ""
msgid "Wallet"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr ""
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr ""
+#~ msgid "Live DEX Trades"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr ""
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr ""
+#~ msgid "POOLS | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10391,12 +10466,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr ""
+#~ msgid "KyberAI Tutorial"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr ""
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10406,8 +10481,6 @@ msgstr ""
msgid "Wrong Chain"
msgstr ""
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10456,20 +10529,28 @@ msgid "I want to transfer"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr ""
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
@@ -10487,13 +10568,17 @@ msgid "Undelegate"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr ""
+#~ msgid "View Farm"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr ""
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr ""
@@ -10508,8 +10593,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr ""
+#~ msgid "Outflow"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10534,8 +10619,8 @@ msgid "Stake Amount"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr ""
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10555,33 +10640,32 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr ""
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr ""
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr ""
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr ""
+#~ msgid "FEES (24H)"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr ""
+#~ msgid "Create Classic Pool Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr ""
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10595,6 +10679,10 @@ msgstr ""
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr ""
@@ -10605,8 +10693,8 @@ msgid "All Chains"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10622,8 +10710,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr ""
+#~ msgid "Status"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10632,20 +10720,20 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr ""
+#~ msgid "To be extended soon"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr ""
+#~ msgid "My Pool Earnings"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10668,8 +10756,6 @@ msgstr ""
#~ msgid "via {0} token list"
#~ msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10680,8 +10766,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr ""
+#~ msgid "Ape Smart!"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10692,8 +10778,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr ""
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr ""
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10738,8 +10824,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr ""
@@ -10770,7 +10854,6 @@ msgstr ""
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10781,8 +10864,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10793,12 +10876,12 @@ msgid "Cross-Chain Bridge"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr ""
+#~ msgid "STAKED TVL"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10809,8 +10892,8 @@ msgid "Profile"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr ""
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10823,21 +10906,15 @@ msgid "Notification Preferences"
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr ""
@@ -10854,17 +10931,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr ""
+#~ msgid "Your Referral Link"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr ""
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr ""
+#~ msgid "Hide"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10880,17 +10961,16 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10908,9 +10988,9 @@ msgstr ""
msgid "Language"
msgstr ""
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10922,8 +11002,8 @@ msgstr ""
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr ""
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10932,8 +11012,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr ""
+#~ msgid "Unamplified Pool existed"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10979,8 +11059,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr ""
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -11003,14 +11083,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr ""
+#~ msgid "Not Available"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr ""
@@ -11020,8 +11099,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr ""
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11032,8 +11111,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr ""
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11043,7 +11122,6 @@ msgstr ""
msgid "50%"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr ""
@@ -11053,16 +11131,16 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr ""
+#~ msgid "Deposit Selected"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr ""
+#~ msgid "Manage"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11078,20 +11156,24 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr ""
+#~ msgid "Click on the Settings icon"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr ""
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11106,16 +11188,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr ""
+#~ msgid "Key Features"
+#~ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr ""
+#~ msgid "Select a Range"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11126,10 +11208,9 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr ""
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11160,8 +11241,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr ""
+#~ msgid "Manage Lists"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11175,17 +11256,21 @@ msgstr ""
msgid "All Closed Orders"
msgstr ""
-#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
msgstr ""
+#: src/components/YieldPools/FarmStepGuide/index.tsx
+#~ msgid "About Static Farms"
+#~ msgstr ""
+
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr ""
+#~ msgid "We could not find anything. Try again."
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11196,8 +11281,8 @@ msgid "has been failed to transferred from"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr ""
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11208,17 +11293,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr ""
+#~ msgid "Your Referral Code"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+#~ msgid "Chain"
+#~ msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
#~ msgstr ""
@@ -11232,8 +11321,8 @@ msgid "All Active Orders"
msgstr ""
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr ""
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr ""
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11245,17 +11334,13 @@ msgid "Keep Current Profile"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr ""
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11269,8 +11354,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr ""
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11280,12 +11365,12 @@ msgid "Migrate"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr ""
+#~ msgid "My Watchlists"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr ""
+#~ msgid "Currently Trending"
+#~ msgstr ""
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11296,8 +11381,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr ""
+#~ msgid "Last 7d price"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11329,22 +11414,17 @@ msgstr ""
#~ msgid "{day} {0} ago"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr ""
+#~ msgid "VOLUME (24H)"
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr ""
+#~ msgid "Limit"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11356,8 +11436,8 @@ msgid "Snapshot"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr ""
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr ""
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11376,16 +11456,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr ""
+#~ msgid "Bearish:"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr ""
+#~ msgid "Set a price alert"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr ""
+#~ msgid "Fees Earned"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11405,16 +11485,16 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr ""
+#~ msgid "Estimated Profit"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr ""
+#~ msgid "High"
+#~ msgstr ""
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11423,6 +11503,7 @@ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr ""
@@ -11433,8 +11514,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr ""
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11453,8 +11534,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr ""
+#~ msgid "My Farms"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11465,15 +11546,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr ""
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr ""
@@ -11522,7 +11602,6 @@ msgstr ""
msgid "Swap Now"
msgstr ""
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr ""
@@ -11548,8 +11627,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr ""
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/locales/tr-TR.po b/src/locales/tr-TR.po
index 64c9c4cf98..be6a6acbb4 100644
--- a/src/locales/tr-TR.po
+++ b/src/locales/tr-TR.po
@@ -14,16 +14,16 @@ msgstr ""
"Plural-Forms: \n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr ""
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr ""
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr ""
+#~ msgid "ENDED"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr ""
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr ""
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr ""
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,18 +122,14 @@ msgstr ""
msgid "Will cost more gas fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr ""
+#~ msgid "Type"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
@@ -144,12 +140,13 @@ msgstr ""
#~ msgstr "Bu havuzu yönetin."
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr ""
+#~ msgid "Custom Ranges"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -201,16 +198,16 @@ msgid "Token Info"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr ""
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr ""
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr ""
+#~ msgid "Funding Rate on CEX"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -218,11 +215,16 @@ msgid "Back in range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr ""
+#~ msgid "Volume"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr ""
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
msgstr ""
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
@@ -250,8 +252,8 @@ msgid "Service Fee"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr ""
+#~ msgid "Top Trending Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -294,13 +296,13 @@ msgid "Placing order"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr ""
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr ""
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -312,25 +314,29 @@ msgid "Loading token..."
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr ""
+#~ msgid "For everyone"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr ""
+#~ msgid "Removed Liquidity"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr "Talep Edilen Ödüller"
+#~ msgid "Claimed Rewards"
+#~ msgstr "Talep Edilen Ödüller"
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr ""
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -346,8 +352,8 @@ msgid "Position {0}"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr ""
+#~ msgid "This email address is already registered."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -357,6 +363,10 @@ msgstr ""
#~ msgid "Recent Transactions"
#~ msgstr "Son İşlemler"
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr ""
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr ""
@@ -442,8 +452,8 @@ msgstr ""
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -480,21 +490,25 @@ msgstr "Havuz Payınız"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr ""
+#~ msgid "Discover new opportunities."
+#~ msgstr ""
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
-msgstr ""
+#~ msgid "Supply owned"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism - Active Liquidity Time"
#~ msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
+msgstr ""
+
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Point multiplier is in effect."
#~ msgstr ""
@@ -513,16 +527,16 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr "En Düşük Gas"
+#~ msgid "Lowest Gas"
+#~ msgstr "En Düşük Gas"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr ""
+#~ msgid "{0}% Locked"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -535,16 +549,16 @@ msgstr "Reddet"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr ""
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr ""
+#~ msgid "My Earnings"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -554,16 +568,20 @@ msgstr ""
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr ""
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr ""
+#~ msgid "No Farms found"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr ""
+#~ msgid "Best for very stable pairs"
+#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -586,16 +604,16 @@ msgid "Add Custom RPC Endpoint"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr ""
+#~ msgid "Watchlists name exist!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr ""
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr ""
+#~ msgid "Total Harvested Rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -615,6 +633,10 @@ msgstr ""
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr ""
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr ""
@@ -627,31 +649,29 @@ msgstr ""
msgid "All-Time High"
msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr "Sonlandı"
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr ""
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr ""
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr ""
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr ""
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -671,8 +691,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr ""
+#~ msgid "Token Price"
+#~ msgstr ""
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -684,7 +704,6 @@ msgstr ""
msgid "goes"
msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -692,7 +711,11 @@ msgid "Free"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
@@ -703,7 +726,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
msgstr ""
#: src/pages/Bridge/SwapForm.tsx
@@ -712,8 +740,8 @@ msgid "Cannot get token info. Please try again later."
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -733,6 +761,10 @@ msgstr ""
#~ msgid "Other Details"
#~ msgstr ""
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -756,6 +788,10 @@ msgstr ""
msgid "The owner of this liquidity position is {0}"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr ""
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr ""
@@ -763,8 +799,8 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr ""
+#~ msgid "Est. Gas Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -784,8 +820,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr ""
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -795,13 +831,17 @@ msgstr ""
msgid "Welcome to KyberSwap!"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr ""
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr ""
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -840,15 +880,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr ""
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -879,13 +918,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr "Tümünü Topla"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -893,8 +933,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -902,8 +942,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr ""
+#~ msgid "Average"
+#~ msgstr ""
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -913,6 +953,11 @@ msgstr ""
#~ msgid "Trending"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr ""
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr ""
@@ -947,8 +992,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr ""
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -980,8 +1025,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1008,8 +1053,8 @@ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr "Ödüllerim"
+#~ msgid "Rewards"
+#~ msgstr "Ödüllerim"
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1028,6 +1073,10 @@ msgstr ""
msgid "View more"
msgstr ""
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr ""
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr ""
@@ -1064,10 +1113,7 @@ msgstr ""
msgid "All-Time Low"
msgstr ""
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr ""
@@ -1075,21 +1121,21 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr ""
+#~ msgid "Ended at"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr "Bitiş Zamanı"
+#~ msgid "Ending In"
+#~ msgstr "Bitiş Zamanı"
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr ""
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1107,8 +1153,8 @@ msgstr ""
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr "Şu anda Farm yok."
+#~ msgid "Currently there are no Farms."
+#~ msgstr "Şu anda Farm yok."
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1118,8 +1164,8 @@ msgid "Pooled {0}"
msgstr "{0} havuza alındı"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr ""
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1127,8 +1173,8 @@ msgid "Cross-Chain"
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr "Yine de Temin Et"
+#~ msgid "Supply Anyway"
+#~ msgstr "Yine de Temin Et"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1154,8 +1200,8 @@ msgstr "Havuzlarınızı yönetin."
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr "Topla"
+#~ msgid "Harvest"
+#~ msgstr "Topla"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1182,8 +1228,6 @@ msgid "You haven't made any transfers yet"
msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr ""
@@ -1196,8 +1240,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr ""
+#~ msgid "Farming Contract"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1206,8 +1250,8 @@ msgstr "İşleminiz için tahmini ağ ücreti"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr ""
+#~ msgid "Insufficient Liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1226,24 +1270,24 @@ msgid "Forgot your Passcode?"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr ""
+#~ msgid "Referral code is invalid."
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr ""
+#~ msgid "Many"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr ""
+#~ msgid "Sign in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr ""
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1254,8 +1298,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr ""
+#~ msgid "Set a Custom Range"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1278,16 +1322,14 @@ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr "Geçersiz miktar"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr ""
+#~ msgid "There was an error. Please try again later."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1298,8 +1340,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr ""
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1307,8 +1349,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr ""
+#~ msgid "Your liquidity"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1324,8 +1366,8 @@ msgid "Import Pool"
msgstr "Havuzu İçe Aktar"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr ""
+#~ msgid "Top Bullish Tokens"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1340,8 +1382,16 @@ msgstr ""
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr ""
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1349,13 +1399,13 @@ msgid "Current Price in the market."
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr ""
+#~ msgid "Perpetual Markets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr ""
+#~ msgid "Start Earning"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1376,8 +1426,8 @@ msgid "Navigating My Pools Tutorial"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr ""
+#~ msgid "Technical Analysis"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1392,8 +1442,8 @@ msgid "Tokens"
msgstr "Token Varlıkları"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr ""
+#~ msgid "TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1420,12 +1470,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr ""
+#~ msgid "Markets"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr ""
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1433,8 +1483,8 @@ msgid "Are you sure?"
msgstr "Emin misiniz?"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr ""
+#~ msgid "Withdraw your liquidity"
+#~ msgstr ""
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1445,8 +1495,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr ""
+#~ msgid "Current phase will end in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1458,8 +1508,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr ""
+#~ msgid "New phase will start in"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1475,15 +1525,13 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr ""
+#~ msgid "Inflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1492,8 +1540,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr "YYO"
+#~ msgid "APR"
+#~ msgstr "YYO"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1538,16 +1586,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr ""
+#~ msgid "Wallet Analytics"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr ""
+#~ msgid "Actions"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1562,12 +1610,12 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr "Stake edilen TVL"
+#~ msgid "Staked TVL"
+#~ msgstr "Stake edilen TVL"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr ""
+#~ msgid "Committed to Security"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1578,14 +1626,14 @@ msgstr ""
#~ msgstr "Fiyat Etkisi Yüksek"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr ""
+#~ msgid "KyberAI"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1613,27 +1661,21 @@ msgstr "Onayla"
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr ""
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
@@ -1655,14 +1697,13 @@ msgid "the price of"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr ""
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr ""
+#~ msgid "STAKED TVL ↓"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1681,8 +1722,8 @@ msgid "Not selected option"
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr ""
+#~ msgid "Harvest Error"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1709,8 +1750,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr ""
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1745,12 +1786,12 @@ msgid "Gas Abuser"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr ""
+#~ msgid "View Less Stats"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr ""
+#~ msgid "Static Farms"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1765,8 +1806,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr ""
+#~ msgid "Token Pair | Fee"
+#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1778,8 +1819,8 @@ msgid "Custom"
msgstr "Özel"
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr ""
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1838,8 +1879,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr ""
+#~ msgid "Not Eligible"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1870,8 +1911,8 @@ msgstr ""
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr ""
+#~ msgid "Explore"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1913,12 +1954,12 @@ msgstr ""
#~ msgstr "Gelişmiş Mod"
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr ""
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr ""
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1946,8 +1987,8 @@ msgid "Claim your rewards"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr ""
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1973,6 +2014,10 @@ msgstr ""
msgid "KyberSwap Guide"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr ""
@@ -1983,16 +2028,16 @@ msgstr ""
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr ""
+#~ msgid "Analyze Wallet"
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr ""
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -2006,8 +2051,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2015,12 +2060,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr ""
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr ""
+#~ msgid "Turn on to display live chart."
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2028,15 +2073,19 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr ""
+#~ msgid "Trending Soon"
+#~ msgstr ""
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr ""
-#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-#~ msgid "Search"
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr ""
+
+#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
+#~ msgid "Search"
#~ msgstr ""
#: src/components/Tutorial/index.tsx
@@ -2060,23 +2109,23 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr ""
+#~ msgid "Create New Pool"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr "Fiyat, bu piyasa fiyatından oldukça farklı, lütfen dikkatli olun!"
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr "Fiyat, bu piyasa fiyatından oldukça farklı, lütfen dikkatli olun!"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr ""
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr ""
+#~ msgid "My Liquidity Positions"
+#~ msgstr ""
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2091,16 +2140,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr ""
+#~ msgid "Participate in our campaigns"
+#~ msgstr ""
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr ""
+#~ msgid "Market Price"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2119,12 +2172,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr ""
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr ""
+#~ msgid "KyberAI Banner"
+#~ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2132,8 +2185,6 @@ msgstr ""
msgid "Insufficient {s} balance"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr "Alacaksınız"
@@ -2143,12 +2194,16 @@ msgid "Wrap Error"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr ""
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2202,8 +2257,8 @@ msgid "Total Balance"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr ""
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2218,8 +2273,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr ""
+#~ msgid "FEES ↓"
+#~ msgstr ""
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2231,25 +2286,25 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr ""
+#~ msgid "Collapse All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr ""
+#~ msgid "Copy token address"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr ""
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr ""
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2267,8 +2322,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr ""
+#~ msgid "My Watchlist"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2279,12 +2334,12 @@ msgid "Delegate Address"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr ""
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr ""
+#~ msgid "Earning Charts"
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2295,21 +2350,21 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr ""
+#~ msgid "Fees (24h)"
+#~ msgstr ""
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr ""
+#~ msgid "VOLUME ↑"
+#~ msgstr ""
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr ""
+#~ msgid "Aggregator"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2318,8 +2373,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr ""
+#~ msgid "Share this pool with your friends!"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2327,12 +2382,12 @@ msgid "Faucet"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr ""
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr ""
+#~ msgid "Increase Amount"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2355,8 +2410,8 @@ msgid "Whitelisted Function"
msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr ""
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2390,12 +2445,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr ""
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr ""
+#~ msgid "Error occur, please try again."
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2446,8 +2501,8 @@ msgstr "Maksimum"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr ""
+#~ msgid "Bearish"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2476,7 +2531,6 @@ msgid "Gasless Edit"
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr ""
@@ -2484,8 +2538,6 @@ msgstr ""
msgid "Est. Market Price"
msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2507,13 +2559,13 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr ""
+#~ msgid "Exchange"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr ""
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr ""
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2528,8 +2580,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr ""
+#~ msgid "Amount held"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2563,10 +2615,14 @@ msgstr ""
#~ msgid "Connect Wallet"
#~ msgstr "Cüzdanı Bağla"
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr ""
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2619,8 +2675,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr ""
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2635,8 +2691,8 @@ msgstr ""
#~ msgstr "Havuzlar | AMP"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr ""
+#~ msgid "Support & Resistance Levels"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2692,8 +2748,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr ""
+#~ msgid "Current price"
+#~ msgstr ""
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2701,16 +2757,14 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr ""
+#~ msgid "Add Liquidity Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr ""
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr ""
@@ -2719,7 +2773,6 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr ""
@@ -2730,7 +2783,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
msgstr ""
#: src/components/SwapForm/MultichainKNCNote.tsx
@@ -2750,12 +2812,12 @@ msgid "Hard Cancel Instead"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr ""
+#~ msgid "Deposit Amounts"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr ""
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2763,19 +2825,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr ""
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2783,21 +2842,21 @@ msgstr ""
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr "Likidite ekle"
+#~ msgid "Add liquidity"
+#~ msgstr "Likidite ekle"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr ""
+#~ msgid "Daily Range"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr ""
+#~ msgid "Bullish:"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2824,8 +2883,8 @@ msgid "Stake liquidity into farm"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2842,23 +2901,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr ""
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr ""
+#~ msgid "Share this with your friends!"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr ""
+#~ msgid "Add Liquidity ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr ""
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2874,20 +2933,20 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr ""
+#~ msgid "Eligible"
+#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr ""
+#~ msgid "Trading Campaigns"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr ""
+#~ msgid "Top Bearish Tokens"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2898,8 +2957,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr ""
+#~ msgid "Reached max limit."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2933,8 +2992,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr ""
+#~ msgid "Trading Volume"
+#~ msgstr ""
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2942,17 +3001,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr ""
+#~ msgid "Update"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr ""
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr ""
+#~ msgid "1Y Range"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2964,14 +3023,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr ""
@@ -2980,8 +3032,8 @@ msgid "TOKEN UTILITY"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -3002,15 +3054,15 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr "Mevcut havuzları görüntülemek için yeni bir havuz oluşturun veya başka bir token çifti seçin."
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr "Mevcut havuzları görüntülemek için yeni bir havuz oluşturun veya başka bir token çifti seçin."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3023,8 +3075,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr ""
+#~ msgid "Stake your liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3035,25 +3087,24 @@ msgid "{pendingLength} Pending"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr ""
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr "Aktif"
+#~ msgid "Active"
+#~ msgstr "Aktif"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr ""
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr ""
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr "Havuz Payı"
@@ -3066,8 +3117,8 @@ msgstr "Havuz Payı"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3082,13 +3133,13 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr ""
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr ""
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3097,8 +3148,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr "Amp girin (>=1)"
+#~ msgid "Enter amp (>=1)"
+#~ msgstr "Amp girin (>=1)"
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3113,8 +3164,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr ""
+#~ msgid "Go back Ranking page"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3129,8 +3180,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr ""
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3141,8 +3192,8 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr "Hacim (24s)"
+#~ msgid "Volume (24h)"
+#~ msgstr "Hacim (24s)"
#:
#:
@@ -3154,39 +3205,38 @@ msgid "Gasless Cancel All Orders"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr ""
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr ""
+#~ msgid "Upcoming Farms"
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr ""
+#~ msgid "Farm Ended"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr ""
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr "Yeni bir havuz oluştur"
@@ -3200,8 +3250,8 @@ msgstr "Yeni bir havuz oluştur"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr ""
+#~ msgid "Idle Range"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3225,8 +3275,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr ""
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3243,12 +3293,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr ""
+#~ msgid "Trending Soon Tokens"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr ""
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3269,8 +3319,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr ""
+#~ msgid "Pool | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3289,22 +3339,25 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr ""
+#~ msgid "Add {0} to {1}"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr ""
+#~ msgid "Live Chart"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr ""
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3312,8 +3365,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr ""
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3325,8 +3378,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr ""
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3337,20 +3390,20 @@ msgid "User denied message signature"
msgstr ""
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr ""
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr ""
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr ""
+#~ msgid "Trending soon"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3361,16 +3414,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr ""
+#~ msgid "Collapse"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr "dakika"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr ""
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3381,29 +3434,29 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr "Ücret Aralığı"
+#~ msgid "Fee Range"
+#~ msgstr "Ücret Aralığı"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr ""
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr ""
+#~ msgid "MY REWARD ↑"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr ""
+#~ msgid "Harvesting rewards"
+#~ msgstr ""
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3422,12 +3475,12 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr ""
+#~ msgid "Maintainance"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr "Likiditem"
+#~ msgid "My liquidity"
+#~ msgstr "Likiditem"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3442,8 +3495,8 @@ msgid "No price alerts created yet"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr ""
+#~ msgid "Full unlocked"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3452,8 +3505,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr "Yatırdıklarım"
+#~ msgid "My Deposit"
+#~ msgstr "Yatırdıklarım"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3477,27 +3530,27 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr ""
+#~ msgid "Example"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr ""
+#~ msgid "Number"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr ""
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr ""
+#~ msgid "Token pair"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3518,12 +3571,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr ""
+#~ msgid "All Time Low"
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr ""
+#~ msgid "Current Chain"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3542,13 +3595,14 @@ msgstr ""
msgid "Stake Information"
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr ""
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3558,17 +3612,19 @@ msgstr ""
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
msgstr ""
+#: src/components/ElasticZap/QuickZap.tsx
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr ""
+
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr ""
@@ -3578,37 +3634,40 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr ""
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr ""
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr ""
+#~ msgid "New Liquidity Amount"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr ""
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr ""
@@ -3618,16 +3677,16 @@ msgid "Market Info"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr ""
+#~ msgid "Remove Watchlist"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr ""
+#~ msgid "APR for each Farming Range"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3646,8 +3705,8 @@ msgid "My Current Position"
msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr ""
+#~ msgid "Unsupported Asset"
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3663,7 +3722,11 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
@@ -3687,12 +3750,12 @@ msgid "Your Transactions"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr ""
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr ""
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3713,16 +3776,16 @@ msgid "Your import token (click to copy)"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr ""
+#~ msgid "Select Override Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr ""
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr ""
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3749,8 +3812,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr ""
+#~ msgid "VOLUME ↓"
+#~ msgstr ""
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3761,8 +3824,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr ""
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3778,11 +3841,10 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr ""
+#~ msgid "Levels"
+#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr ""
@@ -3795,12 +3857,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr ""
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr ""
+#~ msgid "Stablecoins"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3811,13 +3873,17 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
-msgstr ""
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr ""
#:
#~ msgid "We gives liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
#~ msgstr ""
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
+msgstr ""
+
#: src/pages/About/AboutKNC.tsx
msgid "Stake KNC, Vote, Earn Rewards."
msgstr ""
@@ -3842,15 +3908,14 @@ msgstr ""
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr ""
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr ""
@@ -3880,8 +3945,8 @@ msgid "Risky Item(s)"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr ""
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3907,8 +3972,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr ""
+#~ msgid "24h Netflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3926,22 +3991,26 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr ""
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr ""
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3950,12 +4019,12 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr ""
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr ""
+#~ msgid "Static Fees"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3966,24 +4035,24 @@ msgid "Where you can buy KNC"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr ""
+#~ msgid "Best for stable pairs"
+#~ msgstr ""
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr ""
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3992,16 +4061,16 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr ""
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr ""
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4031,11 +4100,10 @@ msgid "Wrong Network"
msgstr "Yanlış Ağ"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr ""
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr ""
@@ -4044,12 +4112,12 @@ msgid "VALUE"
msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr ""
+#~ msgid "View Pool"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr ""
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4077,16 +4145,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr ""
+#~ msgid "Farm ended"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr ""
+#~ msgid "Available Farming Range"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4106,8 +4174,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr ""
+#~ msgid "Rewards Breakdown"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4142,8 +4210,8 @@ msgid "Your import token"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr ""
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4164,11 +4232,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr ""
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4183,8 +4249,8 @@ msgid "Cross-chain rate is"
msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr ""
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4203,7 +4269,6 @@ msgid "Default Options"
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4224,8 +4289,8 @@ msgstr ""
#~ msgstr "KNC ne için kullanılabilir?"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr ""
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4236,7 +4301,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr ""
@@ -4249,8 +4313,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr ""
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4261,12 +4325,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr ""
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr ""
+#~ msgid "Live Trades"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4274,7 +4338,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr "Sonuç bulunamadı."
@@ -4283,8 +4346,8 @@ msgstr "Sonuç bulunamadı."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr ""
+#~ msgid "BONUS REWARDS"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4295,30 +4358,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr ""
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr ""
+#~ msgid "Best for most pairs"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr ""
+#~ msgid "Approving {0}"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr ""
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "<0>Advanced Mode0> turns off the 'Confirm' transaction prompt and allows high slippage trades that can result in bad rates and lost funds."
@@ -4343,14 +4405,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr ""
+#~ msgid "All Time High"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4371,12 +4435,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr ""
+#~ msgid "Deposit Farm Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr ""
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr ""
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4414,25 +4478,27 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr ""
+#~ msgid "Insufficient Balance"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr ""
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
msgstr ""
#: src/state/mint/proamm/hooks.tsx
@@ -4440,8 +4506,8 @@ msgid "Position {0}: Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr ""
+#~ msgid "View all"
+#~ msgstr ""
#:
#~ msgid "Rewards: {0} {1}"
@@ -4515,8 +4581,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr ""
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4531,31 +4597,30 @@ msgid "Sell Tax"
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr ""
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr ""
+#~ msgid "Learn More"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr ""
+#~ msgid "Video Tutorial"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr ""
@@ -4563,10 +4628,15 @@ msgstr ""
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr ""
+#~ msgid "Unstake Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4577,8 +4647,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr ""
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4596,24 +4666,14 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr ""
+#~ msgid "Unstake your liquidity"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Add Liquidity"
msgstr "Likidite Ekle"
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr "burada"
@@ -4622,19 +4682,13 @@ msgid "Find out more"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr ""
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr ""
@@ -4648,14 +4702,14 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr ""
+#~ msgid "here ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr ""
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4676,7 +4730,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
@@ -4700,8 +4759,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr ""
+#~ msgid "Favourites"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4711,22 +4770,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr ""
+#~ msgid "Reset"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr ""
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr ""
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4734,8 +4791,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr ""
+#~ msgid "Website"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4760,16 +4817,16 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr ""
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr ""
+#~ msgid "Token Rankings"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4792,7 +4849,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr ""
@@ -4828,7 +4884,6 @@ msgid "Favorite Chain(s)"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr ""
@@ -4841,8 +4896,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr ""
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4868,8 +4923,8 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr ""
+#~ msgid "Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4890,24 +4945,23 @@ msgstr "Gas Ücreti"
#~ msgstr "Kullanım Şartları"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr ""
+#~ msgid "END TIME ↑"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr "Havuz Oranı"
+#~ msgid "Pool Ratio"
+#~ msgstr "Havuz Oranı"
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr ""
@@ -4916,7 +4970,6 @@ msgstr ""
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4932,12 +4985,10 @@ msgid "I Understand"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr ""
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr ""
@@ -4950,8 +5001,8 @@ msgid "Voting starts in:"
msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr ""
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr ""
#:
#~ msgid "FULL UNLOCK"
@@ -4962,8 +5013,8 @@ msgid "Security Info"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr ""
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr ""
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -5003,8 +5054,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr ""
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5035,8 +5086,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5060,28 +5111,32 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr ""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr ""
-#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
msgstr ""
+#: src/components/YieldPools/FarmPoolSort.tsx
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr ""
+
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr ""
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr ""
+#~ msgid "Deposited Positions"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5104,7 +5159,6 @@ msgstr ""
#~ msgstr "Not: {warningToken} artık havuzda <%10 oranındadır. {warningToken} %0'a ulaşırsa havuz devre dışı kalabilir"
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr ""
@@ -5117,11 +5171,15 @@ msgid "Exchange rate is always 1 to 1."
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr ""
+#~ msgid "Get alpha before it happens"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
msgstr ""
#: src/utils/time.ts
@@ -5133,11 +5191,10 @@ msgstr ""
#~ msgstr "Bilinmeyen Kaynak"
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr ""
+#~ msgid "Closed Positions"
+#~ msgstr ""
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr ""
@@ -5147,8 +5204,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr ""
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr ""
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5159,8 +5216,8 @@ msgid "Cannot vote at this moment"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr ""
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5171,17 +5228,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr ""
+#~ msgid "Go to farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr ""
+#~ msgid "Top 10 Holders"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr ""
+#~ msgid "Static Farm"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5192,8 +5249,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr ""
+#~ msgid "View Positions"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5249,12 +5306,12 @@ msgid "Code will expire in {0}{1}"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr ""
+#~ msgid "MY DEPOSIT"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr ""
+#~ msgid "Bug Bounty"
+#~ msgstr ""
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5297,12 +5354,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr ""
+#~ msgid "Withdraw Error"
+#~ msgstr ""
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr ""
+#~ msgid "Approve Farm Error"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5313,8 +5370,8 @@ msgid "Buy Tax"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr ""
+#~ msgid "View Less"
+#~ msgstr ""
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5336,12 +5393,6 @@ msgstr ""
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr ""
@@ -5352,13 +5403,17 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr ""
+#~ msgid "Invalid Input"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr ""
@@ -5368,8 +5423,8 @@ msgid "Can sell all"
msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr ""
+#~ msgid "Token name"
+#~ msgstr ""
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5380,8 +5435,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr ""
+#~ msgid "Price | 24 Change"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5420,6 +5475,10 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr "Hata"
@@ -5433,8 +5492,8 @@ msgstr "Hata"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr ""
+#~ msgid "Withdraw Selected"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5444,6 +5503,10 @@ msgstr ""
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr ""
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr ""
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr "AMP Likiditesi"
@@ -5453,8 +5516,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr ""
+#~ msgid "Supplying {text}"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5465,8 +5528,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr ""
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5481,7 +5544,6 @@ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5500,8 +5562,6 @@ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr "Bir token seç"
@@ -5524,7 +5584,6 @@ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr ""
@@ -5541,8 +5600,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr ""
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5553,22 +5612,22 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr ""
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr ""
+#~ msgid "View More Stats"
+#~ msgstr ""
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr "Token"
@@ -5577,8 +5636,8 @@ msgstr "Token"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr ""
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5605,7 +5664,6 @@ msgstr ""
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr "Dokümanlar"
@@ -5634,8 +5692,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr ""
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5650,8 +5708,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr ""
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5663,8 +5721,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr ""
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5684,8 +5742,8 @@ msgid "Quorum Status"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr ""
+#~ msgid "ENDING IN"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5697,8 +5755,8 @@ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr ""
+#~ msgid "ACTIONS"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5714,20 +5772,16 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr ""
+#~ msgid "Best for exotic pairs"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr ""
+#~ msgid "{0}% Claimed"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5738,22 +5792,21 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr ""
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr ""
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr "DAHA FAZLA BİLGİ"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr ""
+#~ msgid "Farm has not started"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5761,19 +5814,14 @@ msgstr ""
msgid "Import Tokens"
msgstr "Token’ları İçe Aktar"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr ""
@@ -5785,10 +5833,14 @@ msgstr ""
#~ msgid "could be trending very soon!"
#~ msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
msgstr ""
+#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
+#~ msgid "Target Volume"
+#~ msgstr ""
+
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
#~ msgstr ""
@@ -5798,8 +5850,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr ""
+#~ msgid "Choose pool"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5842,8 +5894,8 @@ msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr "Dinamik Ücret Aralığı"
+#~ msgid "Dynamic Fee Range"
+#~ msgstr "Dinamik Ücret Aralığı"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5869,8 +5921,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5882,24 +5934,24 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr ""
+#~ msgid "{0}% Refund"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr ""
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr ""
+#~ msgid "3d Netflow"
+#~ msgstr ""
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5909,9 +5961,11 @@ msgstr ""
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr ""
@@ -5919,17 +5973,21 @@ msgstr ""
#~ msgid "- Remove send"
#~ msgstr "- Gönderimi Kaldır"
-#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
msgstr ""
+#: src/pages/AddLiquidityV2/index.tsx
+#~ msgid "Set Starting Price"
+#~ msgstr ""
+
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr ""
+#~ msgid "Liquidations on CEX"
+#~ msgstr ""
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5948,14 +6006,12 @@ msgstr ""
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr "Cüzdanı bağla"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr ""
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5963,8 +6019,8 @@ msgid "at"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr ""
+#~ msgid "Trading Grant Campaign"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5979,8 +6035,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr "AMP faktörü x Havuzdaki likidite. Güçlendirilmiş havuzlar daha yüksek sermaye verimliliğine ve likiditeye sahiptir."
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr ""
+#~ msgid "Support & Resistance Levels."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -5990,13 +6046,13 @@ msgstr ""
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr ""
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr ""
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr ""
+#~ msgid "Unstake Error"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6022,7 +6078,6 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr ""
@@ -6050,16 +6105,16 @@ msgid "Export Profile"
msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr ""
+#~ msgid "My 1st Watchlist"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr ""
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6067,27 +6122,26 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr ""
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr ""
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr ""
+#~ msgid "Netflow to CEX"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr ""
@@ -6096,18 +6150,18 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr ""
+#~ msgid "MY LIQUIDITY"
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr ""
+#~ msgid "Rankings"
+#~ msgstr ""
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr ""
+#~ msgid "Timeframe"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6116,17 +6170,17 @@ msgid "Contract Address"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr ""
+#~ msgid "Please select fee"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr ""
+#~ msgid "to Whale Wallets"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr ""
+#~ msgid "Stake Selected"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6137,8 +6191,8 @@ msgid "Holiday Mode"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr ""
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr ""
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6184,12 +6238,12 @@ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr ""
+#~ msgid "Gas Price Tracker"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr ""
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6214,13 +6268,13 @@ msgid "Approve {tokenSymbol}"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr ""
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr ""
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6235,6 +6289,10 @@ msgstr ""
msgid "Max is {format}"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr ""
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr ""
@@ -6244,8 +6302,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr ""
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6256,16 +6314,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr ""
+#~ msgid "Starting Price"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6280,8 +6338,8 @@ msgid "has been successfully transferred from"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr ""
+#~ msgid "Best for very volatile pairs"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6321,8 +6379,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr ""
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6337,12 +6395,12 @@ msgid "Signing in..."
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr ""
+#~ msgid "Create list"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr ""
+#~ msgid "1 user is ahead of you"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6353,11 +6411,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr ""
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr ""
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr ""
@@ -6365,12 +6422,20 @@ msgstr ""
msgid "{0} price of {rateStr} {1}"
msgstr ""
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr ""
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr "+ Gönderim ekle (isteğe bağlı)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr ""
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
@@ -6378,8 +6443,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr ""
+#~ msgid "Total Earnings"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6389,8 +6454,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr ""
+#~ msgid "AVG APR ↓"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6427,8 +6492,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr ""
+#~ msgid "STAKED TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6463,7 +6528,6 @@ msgstr ""
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr "URL'nin <0>KyberSwap.com0> olduğundan emin olun"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr ""
@@ -6473,12 +6537,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr ""
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr ""
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6490,18 +6554,11 @@ msgid "Price Range"
msgstr "Fiyat Aralığı"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr ""
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6527,9 +6584,7 @@ msgstr ""
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr ""
@@ -6538,25 +6593,28 @@ msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the stan
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
+#~ msgid "View analytics"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr "Bize Ulaşın"
+#~ msgid "Contact Us"
+#~ msgstr "Bize Ulaşın"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr ""
+#~ msgid "Feedback"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6575,16 +6633,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr "Havuzdaki Dağılımınız"
+#~ msgid "Your Pool Allocation"
+#~ msgstr "Havuzdaki Dağılımınız"
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6622,13 +6680,6 @@ msgstr "Açık"
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6636,25 +6687,11 @@ msgstr "Açık"
msgid "Approve"
msgstr "Onayla"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6675,28 +6712,32 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr "Maksimum Getiri"
+#~ msgid "Maximum Return"
+#~ msgstr "Maksimum Getiri"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr ""
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr ""
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr ""
+#~ msgid "On-Chain Analysis"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr ""
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr ""
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6723,7 +6764,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr ""
@@ -6732,8 +6772,8 @@ msgid "How to participate"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr ""
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6755,7 +6795,7 @@ msgstr ""
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr "İstatistikler"
@@ -6765,8 +6805,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6787,16 +6827,16 @@ msgstr "Havuz adresine göre ara"
#~ msgstr "Bu token’lar genellikle diğer token’lar ile eşleştirilir."
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr ""
+#~ msgid "Select fee tier"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr ""
+#~ msgid "MY REWARD ↓"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6804,20 +6844,16 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr ""
+#~ msgid "Netflow"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr ""
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr ""
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6853,36 +6889,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr "Bir havuz oluşturuyorsunuz"
+#~ msgid "You are creating a pool"
+#~ msgstr "Bir havuz oluşturuyorsunuz"
#:
#~ msgid "Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists."
#~ msgstr "Etkin olmayan listelerdeki token varlıklarıdır. Aşağıdaki belirli token’ları içe aktarın veya daha fazla listeyi etkinleştirmek için 'Yönet’e tıklayın."
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr ""
+#~ msgid "Best for rare use cases"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr ""
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr ""
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr ""
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr ""
+#~ msgid "New Updates to KyberAI"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6891,16 +6927,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr ""
+#~ msgid "Funding Rates"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr ""
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6936,8 +6972,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr ""
+#~ msgid "AVG APR ↑"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6951,23 +6987,23 @@ msgstr ""
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr ""
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr ""
+#~ msgid "Live Charts"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr ""
+#~ msgid "Disable Metamask in C98"
+#~ msgstr ""
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6976,8 +7012,8 @@ msgstr "Kapalı"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr "Likidite sağlayıcıları için getirileri en üst düzeye çıkarmak adına, ücretler piyasa koşullarına göre dinamik olarak ayarlanır."
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr "Likidite sağlayıcıları için getirileri en üst düzeye çıkarmak adına, ücretler piyasa koşullarına göre dinamik olarak ayarlanır."
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6989,43 +7025,41 @@ msgid "per"
msgstr "başına"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr ""
+#~ msgid "Expand All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr ""
+#~ msgid "Bullish"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr ""
+#~ msgid "Add liquidity error"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr ""
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr ""
+#~ msgid "Deposit your liquidity"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr ""
@@ -7046,8 +7080,8 @@ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr ""
+#~ msgid "Learn More ↗"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7075,8 +7109,8 @@ msgid "Cooldown"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr ""
+#~ msgid "Watchlist"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7084,10 +7118,9 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr ""
@@ -7105,8 +7138,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr "Kilitli Ödüller"
+#~ msgid "Locked Rewards"
+#~ msgstr "Kilitli Ödüller"
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7132,8 +7165,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr ""
+#~ msgid "Top Traded"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7148,10 +7181,6 @@ msgstr ""
#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr ""
@@ -7162,8 +7191,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr "Arz"
+#~ msgid "Supply"
+#~ msgstr "Arz"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7176,20 +7205,19 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr ""
+#~ msgid "Available Balance"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr ""
+#~ msgid "Help"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr ""
@@ -7232,7 +7260,6 @@ msgstr ""
#~ msgstr ""
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr ""
@@ -7245,8 +7272,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr ""
+#~ msgid "Dynamic"
+#~ msgstr ""
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7266,8 +7293,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7287,8 +7314,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr ""
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr ""
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7303,8 +7330,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr ""
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr ""
@@ -7312,6 +7337,11 @@ msgstr ""
#~ msgid "Tag:"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr ""
@@ -7333,8 +7363,8 @@ msgid "Available"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr ""
+#~ msgid "Last 7 days"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7349,22 +7379,26 @@ msgstr ""
msgid "Axelar/Squid doesn't support this chain"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr ""
+#~ msgid "Spot Markets"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr ""
+#~ msgid "Funding rate"
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7380,20 +7414,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr ""
+#~ msgid "Holders (On-chain)"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr ""
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr ""
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7403,11 +7437,11 @@ msgstr ""
#~ msgid "Acknowledge"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr "İptal Et"
@@ -7441,16 +7475,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr ""
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7461,8 +7495,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr ""
+#~ msgid "Enable Metamask in C98"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7477,8 +7511,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr "Burada bir vesting programı yok!"
+#~ msgid "No vesting schedule!"
+#~ msgstr "Burada bir vesting programı yok!"
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7501,8 +7535,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr ""
+#~ msgid "Deposited Liquidity"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7524,16 +7558,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr ""
+#~ msgid "Centralized Exchanges"
+#~ msgstr ""
#:
#~ msgid "DEPOSIT"
#~ msgstr "YATIR"
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr ""
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7556,12 +7590,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr ""
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr ""
@@ -7569,14 +7601,18 @@ msgstr ""
msgid "Your currently existing order is {filledPercent}% filled."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr ""
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr ""
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7591,14 +7627,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr ""
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr ""
@@ -7625,16 +7664,16 @@ msgid "Min"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr ""
+#~ msgid "Update Liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr ""
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7653,8 +7692,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7703,22 +7742,23 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr "Not: Bu token çifti için mevcut havuzlar var. Lütfen kontrol edin"
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr "Not: Bu token çifti için mevcut havuzlar var. Lütfen kontrol edin"
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr ""
+#~ msgid "No liquidity found."
+#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr "Yine de Takası Yap"
@@ -7746,8 +7786,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr ""
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7762,8 +7802,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr ""
+#~ msgid "Sort"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7775,16 +7815,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr ""
+#~ msgid "Referral code is invalid"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr ""
+#~ msgid "All positions"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7792,20 +7832,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr ""
+#~ msgid "Show more"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr ""
+#~ msgid "Top All Tokens"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7824,15 +7864,15 @@ msgid "DAO Governance"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr ""
+#~ msgid "Farming Ranges"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr "Havuzlarım"
@@ -7856,10 +7896,6 @@ msgstr ""
#~ msgstr "Minimum tutarı alacaksınız veya işleminiz geri dönecek"
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr "{0} Seçeneğini Onayla"
@@ -7886,13 +7922,18 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr ""
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
msgstr ""
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7904,8 +7945,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr ""
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7916,20 +7957,20 @@ msgid "KYBER DAO"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr ""
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr "Fiyatlar ve Havuz payı"
+#~ msgid "Prices and Pool share"
+#~ msgstr "Fiyatlar ve Havuz payı"
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr ""
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7950,16 +7991,16 @@ msgid "Accept"
msgstr "Kabul Et"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr ""
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr ""
+#~ msgid "Update your liquidity"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7982,8 +8023,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr ""
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -7997,6 +8038,10 @@ msgstr ""
msgid "Vote - Earn Rewards"
msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr ""
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr ""
@@ -8019,12 +8064,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr ""
+#~ msgid "Go to farm ↗"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr ""
+#~ msgid "My Share of Pool"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8051,8 +8096,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr ""
+#~ msgid "Approve Farming Contract"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8086,8 +8131,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr ""
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8113,6 +8158,10 @@ msgstr ""
msgid "Error when changing network."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr ""
@@ -8130,8 +8179,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr ""
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8141,9 +8190,13 @@ msgstr ""
msgid "Claimed"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr ""
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr ""
@@ -8152,8 +8205,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr "Oluştur"
+#~ msgid "Create"
+#~ msgstr "Oluştur"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8192,8 +8245,9 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8204,10 +8258,14 @@ msgstr "Talep Et"
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr ""
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr ""
+#~ msgid "Farming Range"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8234,16 +8292,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr ""
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr ""
+#~ msgid "Staked Balance"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8258,16 +8316,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr ""
+#~ msgid "Support / Resistance Levels"
+#~ msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr "Bir alıcı girin"
@@ -8279,7 +8335,6 @@ msgstr "Bir alıcı girin"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr ""
@@ -8304,13 +8359,17 @@ msgstr ""
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
msgstr ""
+#: src/pages/IncreaseLiquidity/index.tsx
+#~ msgid "404"
+#~ msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr ""
+#~ msgid "Dynamic Farm"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8324,11 +8383,10 @@ msgid "Notifications"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr ""
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr "Geri"
@@ -8337,16 +8395,16 @@ msgstr "Geri"
#~ msgstr "Mevcut Pozisyonunuz"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr ""
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr ""
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8356,8 +8414,11 @@ msgstr ""
msgid "TVL From DEXs"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr ""
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr ""
@@ -8365,8 +8426,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr ""
+#~ msgid "24h volume"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8385,53 +8446,39 @@ msgstr ""
msgid "{0}% Transaction Fee"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr "Bir miktar girin"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr ""
+#~ msgid "Top 25 Holders"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8443,8 +8490,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr ""
+#~ msgid "Business Enquiries"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8454,13 +8501,21 @@ msgstr ""
#~ msgid "Earn more due to compounding"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr ""
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr ""
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8471,8 +8526,8 @@ msgstr ""
#~ msgstr "Gelecek"
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr ""
+#~ msgid "KyberAI Widget"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8487,16 +8542,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr ""
+#~ msgid "Checking data..."
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr ""
+#~ msgid "About Dynamic Farms"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8523,7 +8578,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr "Yeni"
@@ -8533,8 +8587,8 @@ msgstr "Yeni"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr ""
+#~ msgid "Not Applicable"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8550,8 +8604,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr ""
+#~ msgid "View Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8562,15 +8616,7 @@ msgstr ""
#~ msgstr ""
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8587,8 +8633,8 @@ msgid "Github"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr ""
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr ""
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8620,12 +8666,12 @@ msgid "You have already delegated your voting power to this address."
msgstr ""
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr "Getiri çiftçiliği için kullanılabilir"
+#~ msgid "Available for yield farming"
+#~ msgstr "Getiri çiftçiliği için kullanılabilir"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr ""
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
@@ -8637,8 +8683,8 @@ msgstr ""
#~ msgstr "AMP"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr ""
+#~ msgid "Token Name"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8649,16 +8695,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr ""
+#~ msgid "On-chain & Open Source"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr "Fiyat Etkisi Çok Yüksek"
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr ""
+#~ msgid "Tokens Breakdown"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8686,12 +8732,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr ""
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr ""
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8699,14 +8745,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr ""
@@ -8719,8 +8758,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr ""
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8740,24 +8779,24 @@ msgid "Review Order"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr ""
+#~ msgid "Dynamic Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr ""
+#~ msgid "Farming Guide"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr ""
+#~ msgid "Static"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8769,17 +8808,17 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr ""
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr ""
+#~ msgid "View Earnings"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr ""
+#~ msgid "END TIME ↓"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8831,28 +8870,19 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr ""
+#~ msgid "Available for yield farming."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr "Mevcut Fiyat"
@@ -8862,8 +8892,8 @@ msgstr "Mevcut Fiyat"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr ""
+#~ msgid "View more ↗"
+#~ msgstr ""
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8889,13 +8919,15 @@ msgstr ""
msgid "Deposit"
msgstr ""
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr ""
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr "Bir token için havuz oranı %0’a yakındır. Havuz devre dışı kalabilir."
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr "Geçersiz alıcı"
@@ -8910,16 +8942,16 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr ""
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr ""
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8950,12 +8982,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr ""
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr ""
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8973,7 +9005,6 @@ msgstr ""
msgid "You don't have any balance token"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr ""
@@ -8995,7 +9026,6 @@ msgstr "İçe Aktar"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr ""
@@ -9039,7 +9069,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr ""
@@ -9066,12 +9095,12 @@ msgstr "Minimum alındı"
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr ""
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr ""
+#~ msgid "Update Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9083,13 +9112,17 @@ msgid "I pay"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr ""
+#~ msgid "{0}% claimable"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr ""
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr ""
@@ -9100,8 +9133,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr ""
+#~ msgid "Estimated Risk"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9123,12 +9156,12 @@ msgid "Liquidity Sources"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr ""
+#~ msgid "Fill survey"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr ""
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9157,14 +9190,13 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr "Yeterli likidite yoktur. Lütfen sayfayı yenileyin ve tekrar deneyin!"
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr "Yeterli likidite yoktur. Lütfen sayfayı yenileyin ve tekrar deneyin!"
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr ""
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr "Alım-satım rotanız"
@@ -9212,7 +9244,11 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
@@ -9245,8 +9281,8 @@ msgstr "Yetersiz {0} bakiyesi"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr ""
+#~ msgid "You're first in line!"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9271,20 +9307,25 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr ""
+#~ msgid "KyberScore Delta"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr ""
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr ""
+#~ msgid "Top Trade Tokens"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9295,8 +9336,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr ""
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9308,8 +9349,8 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr ""
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9335,7 +9376,11 @@ msgid "Copy address to clipboard"
msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
+#~ msgid "Expires In"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
msgstr ""
#: src/components/Menu/index.tsx
@@ -9344,8 +9389,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr ""
+#~ msgid "AVG APR"
+#~ msgstr ""
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9356,8 +9401,8 @@ msgstr "Likiditenizi bulmak için bir token seçin."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr ""
+#~ msgid "Referral Code (Optional)"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9369,8 +9414,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr ""
+#~ msgid "Seamless liquidity."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9388,13 +9433,17 @@ msgstr ""
#~ msgid "Update list"
#~ msgstr "Güncelleme listesi"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr ""
+
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9426,32 +9475,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr ""
+#~ msgid "All {displayName}"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
+#~ msgid "Your Email"
+#~ msgstr ""
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
msgstr ""
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr ""
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr ""
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr ""
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9462,20 +9515,20 @@ msgid "Email Verified"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr ""
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr ""
+#~ msgid "Active Farms"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9487,16 +9540,16 @@ msgstr ""
#~ msgstr "Bilgi"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr ""
+#~ msgid "Low"
+#~ msgstr ""
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr ""
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr ""
#:
#~ msgid "Max APR Available ↗️"
@@ -9511,8 +9564,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr ""
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9555,10 +9608,18 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
-msgstr "Ödüllerim"
+#~ msgid "My Rewards"
+#~ msgstr "Ödüllerim"
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
+msgstr ""
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9573,8 +9634,8 @@ msgid "Open Source"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr ""
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9585,8 +9646,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr ""
+#~ msgid "Get pool info"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9598,8 +9659,8 @@ msgstr ""
#~ msgstr "Maksimum Kayma:"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr ""
+#~ msgid "View Pool Details"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9610,8 +9671,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr ""
+#~ msgid "Stake Error"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9621,6 +9682,11 @@ msgstr ""
msgid "Confirm this transaction in your wallet"
msgstr "Bu işlemi cüzdanınızda onaylayın"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
+msgstr ""
+
#:
#:
#:
@@ -9628,8 +9694,8 @@ msgstr "Bu işlemi cüzdanınızda onaylayın"
#~ msgstr "Maksimum satıldı"
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
-msgstr ""
+#~ msgid "Let's go!"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
@@ -9645,10 +9711,10 @@ msgstr ""
#~ msgstr "Ödül Havuzunda Likiditeyi Yönetin"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr ""
+#~ msgid "to Centralized Exchanges"
+#~ msgstr ""
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr ""
@@ -9661,7 +9727,6 @@ msgstr ""
#~ msgstr "Koyu Tema"
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr "Toplam LP Token’ları"
@@ -9686,7 +9751,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9724,7 +9788,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr "Havuz"
@@ -9737,8 +9800,8 @@ msgstr "Havuz"
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr ""
+#~ msgid "Top traded pairs"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9749,7 +9812,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr ""
@@ -9758,12 +9820,10 @@ msgstr ""
#~ msgstr "Adı arayın veya adresi yapıştırın"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr ""
+#~ msgid "View All"
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr ""
@@ -9772,12 +9832,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr ""
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr ""
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9804,8 +9864,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr ""
+#~ msgid "HIGHER RETURNS"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9816,8 +9876,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr ""
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9839,6 +9899,7 @@ msgstr ""
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr "Amplifikasyon faktörü anlamına gelir. Daha yüksek AMP'ye sahip havuzlar, belirli bir fiyat aralığında daha yüksek sermaye verimliliği sağlar. Sabit token çiftleri için daha yüksek AMP, volatil token çiftleri için ise daha düşük AMP öneririz"
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9889,8 +9950,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr ""
+#~ msgid "Increase"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9924,16 +9985,16 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr "Havuz Bilgileri"
+#~ msgid "Pool Information"
+#~ msgstr "Havuz Bilgileri"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr "\"{0}\" token listesi <0>{1}0> olarak güncellendi."
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr ""
+#~ msgid "Amount staked in a farm."
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9944,8 +10005,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr ""
+#~ msgid "Trending Soon:"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9957,8 +10018,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr ""
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9976,7 +10037,6 @@ msgstr ""
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr ""
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr "Tekrar deneyin"
@@ -9986,8 +10046,8 @@ msgstr "Tekrar deneyin"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr ""
+#~ msgid "Decentralized Exchanges"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -10002,17 +10062,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr ""
+#~ msgid "Code Audited"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr ""
+#~ msgid "Change network"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -10022,10 +10082,18 @@ msgstr ""
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr ""
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr ""
@@ -10035,8 +10103,8 @@ msgid "Buy"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr ""
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10048,8 +10116,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr ""
+#~ msgid "New Positions"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10060,12 +10128,12 @@ msgid "Completed"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr ""
+#~ msgid "TVL ↓"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr ""
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10073,16 +10141,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr ""
+#~ msgid "KyberAI Watchlist"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr ""
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10092,6 +10160,10 @@ msgstr ""
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr ""
@@ -10106,8 +10178,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr ""
+#~ msgid "Number of Holders"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10146,20 +10218,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr ""
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr ""
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr ""
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr "Yeni bir havuz oluşturuyorsunuz ve ilk likidite sağlayıcısı olacaksınız. Tedarik ettiğiniz token varlıklarının oranı, aşağıda bu havuzun başlangıç fiyatını belirleyecektir. Orandan memnunsanız, likidite sağlama işlemine devam edin."
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr "Yeni bir havuz oluşturuyorsunuz ve ilk likidite sağlayıcısı olacaksınız. Tedarik ettiğiniz token varlıklarının oranı, aşağıda bu havuzun başlangıç fiyatını belirleyecektir. Orandan memnunsanız, likidite sağlama işlemine devam edin."
#:
#:
@@ -10167,6 +10239,10 @@ msgstr "Yeni bir havuz oluşturuyorsunuz ve ilk likidite sağlayıcısı olacaks
#~ msgid "APY"
#~ msgstr ""
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr ""
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr "Rota"
@@ -10180,12 +10256,12 @@ msgid "this profile"
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr ""
+#~ msgid "View positions"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr ""
+#~ msgid "Share this token"
+#~ msgstr ""
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10195,10 +10271,6 @@ msgstr ""
msgid "Order has been successfully cancelled."
msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr ""
@@ -10216,12 +10288,12 @@ msgid "View less"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr ""
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10286,8 +10358,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr ""
+#~ msgid "FEES ↑"
+#~ msgstr ""
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10299,10 +10371,14 @@ msgstr ""
msgid "Confirm Swap Details"
msgstr ""
-#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
msgstr ""
+#: src/components/Tutorial/TutorialSwap/constant.ts
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
msgstr ""
@@ -10320,8 +10396,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr ""
+#~ msgid "Farming Pools"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10333,8 +10409,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr "Bu token çifti için havuz yok."
+#~ msgid "There are no pools for this token pair."
+#~ msgstr "Bu token çifti için havuz yok."
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10345,8 +10421,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr ""
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr ""
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10354,8 +10430,8 @@ msgid "Permit Error"
msgstr ""
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr ""
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10378,27 +10454,26 @@ msgstr ""
msgid "Wallet"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr "İçe aktar."
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr ""
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr ""
+#~ msgid "Live DEX Trades"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr ""
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr ""
+#~ msgid "POOLS | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10409,12 +10484,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr ""
+#~ msgid "KyberAI Tutorial"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr ""
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10424,8 +10499,6 @@ msgstr ""
msgid "Wrong Chain"
msgstr ""
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10474,20 +10547,28 @@ msgid "I want to transfer"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr ""
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
@@ -10505,13 +10586,17 @@ msgid "Undelegate"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr ""
+#~ msgid "View Farm"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr ""
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr ""
@@ -10526,8 +10611,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr ""
+#~ msgid "Outflow"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10552,8 +10637,8 @@ msgid "Stake Amount"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr ""
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10573,33 +10658,32 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr ""
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr ""
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr ""
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr ""
+#~ msgid "FEES (24H)"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr ""
+#~ msgid "Create Classic Pool Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr ""
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10613,6 +10697,10 @@ msgstr ""
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr ""
@@ -10623,8 +10711,8 @@ msgid "All Chains"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10640,8 +10728,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr ""
+#~ msgid "Status"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10650,20 +10738,20 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr ""
+#~ msgid "To be extended soon"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr ""
+#~ msgid "My Pool Earnings"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10686,8 +10774,6 @@ msgstr ""
#~ msgid "via {0} token list"
#~ msgstr "{0} token listesi aracılığıyla"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10698,8 +10784,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr ""
+#~ msgid "Ape Smart!"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10710,8 +10796,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr ""
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr ""
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10756,8 +10842,6 @@ msgstr ""
#~ msgstr "Tahmini Geri Ödeme"
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr "Hakkında"
@@ -10788,7 +10872,6 @@ msgstr ""
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10799,8 +10882,8 @@ msgstr "Likidite Havuzunda Takas İçin Yeterli Likidite Yok"
#~ msgstr "Havuz token’larını kaldırmak, pozisyonunuzu havuzdaki payınızla orantılı olarak mevcut oranda temel token’lara dönüştürür. Toplanan ücretler de aldığınız tutarlara dahildir"
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10811,12 +10894,12 @@ msgid "Cross-Chain Bridge"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr ""
+#~ msgid "STAKED TVL"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10827,8 +10910,8 @@ msgid "Profile"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr ""
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10841,21 +10924,15 @@ msgid "Notification Preferences"
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr "Takas"
@@ -10872,17 +10949,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr ""
+#~ msgid "Your Referral Link"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr ""
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr ""
+#~ msgid "Hide"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10898,17 +10979,16 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10926,9 +11006,9 @@ msgstr ""
msgid "Language"
msgstr "Dil"
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10940,8 +11020,8 @@ msgstr ""
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr ""
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10950,8 +11030,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr "Güçlendirilmemiş Havuz mevcuttur"
+#~ msgid "Unamplified Pool existed"
+#~ msgstr "Güçlendirilmemiş Havuz mevcuttur"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10997,8 +11077,8 @@ msgstr ""
#~ msgstr "Maksimum Satıldı"
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr ""
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -11021,14 +11101,13 @@ msgstr ""
#~ msgstr "Tek bir token (token çiftinden istediğiniz token) sağlayarak havuza likidite ekleyebilirsiniz. Sizin için otomatik olarak LP token’ları oluşturacağız ve bunları likidite havuzuna ekleyeceğiz - Hem de hepsi sadece tek bir işlemde"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr ""
+#~ msgid "Not Available"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr "Fiyat etkisi aşırı yüksek"
@@ -11038,8 +11117,8 @@ msgstr "Fiyat etkisi aşırı yüksek"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr ""
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11050,8 +11129,8 @@ msgstr "İşlem süresi sınırı"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr ""
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11061,7 +11140,6 @@ msgstr ""
msgid "50%"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr "Fiyat Etkisi Yüksek"
@@ -11071,16 +11149,16 @@ msgstr "Fiyat Etkisi Yüksek"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr ""
+#~ msgid "Deposit Selected"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr "Havuz paylaşımınız:"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr "Yönet"
+#~ msgid "Manage"
+#~ msgstr "Yönet"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11096,20 +11174,24 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr ""
+#~ msgid "Click on the Settings icon"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr ""
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11124,16 +11206,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr ""
+#~ msgid "Key Features"
+#~ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr ""
+#~ msgid "Select a Range"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11144,10 +11226,9 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr ""
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11174,8 +11255,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr ""
+#~ msgid "Manage Lists"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11189,17 +11270,21 @@ msgstr ""
msgid "All Closed Orders"
msgstr ""
-#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
msgstr ""
+#: src/components/YieldPools/FarmStepGuide/index.tsx
+#~ msgid "About Static Farms"
+#~ msgstr ""
+
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr ""
+#~ msgid "We could not find anything. Try again."
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11210,8 +11295,8 @@ msgid "has been failed to transferred from"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr ""
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11222,17 +11307,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr ""
+#~ msgid "Your Referral Code"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+#~ msgid "Chain"
+#~ msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
#~ msgstr "Kilitli Toplam Değer"
@@ -11246,8 +11335,8 @@ msgid "All Active Orders"
msgstr ""
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr ""
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr ""
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11259,17 +11348,13 @@ msgid "Keep Current Profile"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr ""
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11283,8 +11368,8 @@ msgstr "Wraped Token Kullan"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr ""
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11294,12 +11379,12 @@ msgid "Migrate"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr ""
+#~ msgid "My Watchlists"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr ""
+#~ msgid "Currently Trending"
+#~ msgstr ""
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11310,8 +11395,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr ""
+#~ msgid "Last 7d price"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11343,22 +11428,17 @@ msgstr ""
#~ msgid "{day} {0} ago"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr "Yükleniyor"
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr ""
+#~ msgid "VOLUME (24H)"
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr ""
+#~ msgid "Limit"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11370,8 +11450,8 @@ msgid "Snapshot"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr ""
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr ""
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11390,16 +11470,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr ""
+#~ msgid "Bearish:"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr ""
+#~ msgid "Set a price alert"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr ""
+#~ msgid "Fees Earned"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11419,16 +11499,16 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr ""
+#~ msgid "Estimated Profit"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr ""
+#~ msgid "High"
+#~ msgstr ""
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11437,6 +11517,7 @@ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr "Kapat"
@@ -11447,8 +11528,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr ""
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11467,8 +11548,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr ""
+#~ msgid "My Farms"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11479,15 +11560,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr ""
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr ""
@@ -11536,7 +11616,6 @@ msgstr ""
msgid "Swap Now"
msgstr ""
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr "havuz"
@@ -11562,8 +11641,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr ""
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/locales/vi-VN.po b/src/locales/vi-VN.po
index 7e395fb83d..c0a8986871 100644
--- a/src/locales/vi-VN.po
+++ b/src/locales/vi-VN.po
@@ -14,16 +14,16 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr ""
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr ""
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr ""
+#~ msgid "ENDED"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr ""
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr ""
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr ""
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,30 +122,27 @@ msgstr ""
msgid "Will cost more gas fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr "Tăng thanh khoản"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr ""
+#~ msgid "Type"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr ""
+#~ msgid "Custom Ranges"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -197,16 +194,16 @@ msgid "Token Info"
msgstr "Thông tin token"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr ""
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr ""
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr "Khám phá"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr ""
+#~ msgid "Funding Rate on CEX"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -214,11 +211,16 @@ msgid "Back in range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr ""
+#~ msgid "Volume"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr ""
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
msgstr ""
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
@@ -246,8 +248,8 @@ msgid "Service Fee"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr ""
+#~ msgid "Top Trending Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -290,13 +292,13 @@ msgid "Placing order"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr ""
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr ""
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -308,25 +310,29 @@ msgid "Loading token..."
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr ""
+#~ msgid "For everyone"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr ""
+#~ msgid "Removed Liquidity"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr "Phần Thưởng Đã Nhận"
+#~ msgid "Claimed Rewards"
+#~ msgstr "Phần Thưởng Đã Nhận"
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr ""
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -342,8 +348,8 @@ msgid "Position {0}"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr ""
+#~ msgid "This email address is already registered."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -353,6 +359,10 @@ msgstr ""
#~ msgid "Recent Transactions"
#~ msgstr "Giao dịch Gần đây"
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr ""
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr ""
@@ -433,8 +443,8 @@ msgstr ""
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -471,21 +481,25 @@ msgstr "Tỷ lệ của Bạn trong Pool"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr ""
+#~ msgid "Discover new opportunities."
+#~ msgstr ""
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
-msgstr ""
+#~ msgid "Supply owned"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism - Active Liquidity Time"
#~ msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
+msgstr ""
+
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Point multiplier is in effect."
#~ msgstr ""
@@ -504,16 +518,16 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr "Ít phí Gas nhất"
+#~ msgid "Lowest Gas"
+#~ msgstr "Ít phí Gas nhất"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr ""
+#~ msgid "{0}% Locked"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -530,16 +544,16 @@ msgstr "Bỏ qua"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr ""
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr ""
+#~ msgid "My Earnings"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -549,16 +563,20 @@ msgstr ""
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr ""
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr "Không tìm thấy kết quả"
+#~ msgid "No Farms found"
+#~ msgstr "Không tìm thấy kết quả"
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr ""
+#~ msgid "Best for very stable pairs"
+#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -581,16 +599,16 @@ msgid "Add Custom RPC Endpoint"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr ""
+#~ msgid "Watchlists name exist!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr ""
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr ""
+#~ msgid "Total Harvested Rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -610,6 +628,10 @@ msgstr ""
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr ""
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr ""
@@ -622,31 +644,29 @@ msgstr ""
msgid "All-Time High"
msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr "Đã kết thúc"
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr ""
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr ""
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr ""
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr ""
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -666,8 +686,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr ""
+#~ msgid "Token Price"
+#~ msgstr ""
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -679,7 +699,6 @@ msgstr ""
msgid "goes"
msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -687,7 +706,11 @@ msgid "Free"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
@@ -698,7 +721,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
msgstr ""
#: src/pages/Bridge/SwapForm.tsx
@@ -707,8 +735,8 @@ msgid "Cannot get token info. Please try again later."
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -728,6 +756,10 @@ msgstr ""
#~ msgid "Other Details"
#~ msgstr ""
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -751,6 +783,10 @@ msgstr ""
msgid "The owner of this liquidity position is {0}"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr ""
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr ""
@@ -758,8 +794,8 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr ""
+#~ msgid "Est. Gas Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -779,8 +815,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr ""
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -790,13 +826,17 @@ msgstr ""
msgid "Welcome to KyberSwap!"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr ""
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr ""
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -835,15 +875,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr ""
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -874,13 +913,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr "Thu hoạch tất cả"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -888,8 +928,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -897,8 +937,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr ""
+#~ msgid "Average"
+#~ msgstr ""
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -908,6 +948,11 @@ msgstr ""
#~ msgid "Trending"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr ""
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr ""
@@ -942,8 +987,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr ""
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -975,8 +1020,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1003,8 +1048,8 @@ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr "Phần thưởng"
+#~ msgid "Rewards"
+#~ msgstr "Phần thưởng"
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1023,6 +1068,10 @@ msgstr ""
msgid "View more"
msgstr ""
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr ""
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr "Hiện tại, không có sự kiện nào."
@@ -1059,10 +1108,7 @@ msgstr ""
msgid "All-Time Low"
msgstr ""
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr ""
@@ -1070,21 +1116,21 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr ""
+#~ msgid "Ended at"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr "Kết thúc trong"
+#~ msgid "Ending In"
+#~ msgstr "Kết thúc trong"
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr "Số lượng bạn tiết kiệm được khi so sánh với <0>{0}0>"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr ""
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1102,8 +1148,8 @@ msgstr ""
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr "Hiện tại không có Farm nào cả."
+#~ msgid "Currently there are no Farms."
+#~ msgstr "Hiện tại không có Farm nào cả."
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1113,8 +1159,8 @@ msgid "Pooled {0}"
msgstr "Số lượng {0}"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr ""
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1122,8 +1168,8 @@ msgid "Cross-Chain"
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr "Vẫn Cung cấp"
+#~ msgid "Supply Anyway"
+#~ msgstr "Vẫn Cung cấp"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1149,8 +1195,8 @@ msgstr "Quản lý các Pool của bạn."
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr "Thu hoạch"
+#~ msgid "Harvest"
+#~ msgstr "Thu hoạch"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1177,8 +1223,6 @@ msgid "You haven't made any transfers yet"
msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr ""
@@ -1191,8 +1235,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr ""
+#~ msgid "Farming Contract"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1201,8 +1245,8 @@ msgstr "Phí mạng được ước tính cho giao dịch của bạn"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr ""
+#~ msgid "Insufficient Liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1221,24 +1265,24 @@ msgid "Forgot your Passcode?"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr ""
+#~ msgid "Referral code is invalid."
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr ""
+#~ msgid "Many"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr ""
+#~ msgid "Sign in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr ""
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1249,8 +1293,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr ""
+#~ msgid "Set a Custom Range"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1273,16 +1317,14 @@ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr "Số lượng không hợp lệ"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr ""
+#~ msgid "There was an error. Please try again later."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1293,8 +1335,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr ""
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1302,8 +1344,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr ""
+#~ msgid "Your liquidity"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1319,8 +1361,8 @@ msgid "Import Pool"
msgstr "Nhập Pool"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr ""
+#~ msgid "Top Bullish Tokens"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1335,8 +1377,16 @@ msgstr ""
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr ""
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1344,13 +1394,13 @@ msgid "Current Price in the market."
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr ""
+#~ msgid "Perpetual Markets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr ""
+#~ msgid "Start Earning"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1371,8 +1421,8 @@ msgid "Navigating My Pools Tutorial"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr ""
+#~ msgid "Technical Analysis"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1387,8 +1437,8 @@ msgid "Tokens"
msgstr "Các Token"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr ""
+#~ msgid "TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1419,12 +1469,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr ""
+#~ msgid "Markets"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr ""
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1432,8 +1482,8 @@ msgid "Are you sure?"
msgstr "Bạn có chắc chứ?"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr ""
+#~ msgid "Withdraw your liquidity"
+#~ msgstr ""
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1444,8 +1494,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr ""
+#~ msgid "Current phase will end in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1457,8 +1507,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr ""
+#~ msgid "New phase will start in"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1474,15 +1524,13 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr ""
+#~ msgid "Inflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1491,8 +1539,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr "APR"
+#~ msgid "APR"
+#~ msgstr "APR"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1537,16 +1585,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr ""
+#~ msgid "Wallet Analytics"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr ""
+#~ msgid "Actions"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1561,12 +1609,12 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr "TVL đã Stake"
+#~ msgid "Staked TVL"
+#~ msgstr "TVL đã Stake"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr ""
+#~ msgid "Committed to Security"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1577,14 +1625,14 @@ msgstr ""
#~ msgstr "Tác động giá cao"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr ""
+#~ msgid "KyberAI"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1612,27 +1660,21 @@ msgstr "Chấp nhận"
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr ""
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
@@ -1654,14 +1696,13 @@ msgid "the price of"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr ""
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr ""
+#~ msgid "STAKED TVL ↓"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1680,8 +1721,8 @@ msgid "Not selected option"
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr ""
+#~ msgid "Harvest Error"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1712,8 +1753,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr ""
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1748,12 +1789,12 @@ msgid "Gas Abuser"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr ""
+#~ msgid "View Less Stats"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr ""
+#~ msgid "Static Farms"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1768,8 +1809,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr ""
+#~ msgid "Token Pair | Fee"
+#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1781,8 +1822,8 @@ msgid "Custom"
msgstr "Tự chọn"
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr ""
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1841,8 +1882,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr ""
+#~ msgid "Not Eligible"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1873,8 +1914,8 @@ msgstr ""
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr ""
+#~ msgid "Explore"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1916,12 +1957,12 @@ msgstr ""
#~ msgstr "Chế Độ Nâng Cao"
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr ""
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr ""
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1949,8 +1990,8 @@ msgid "Claim your rewards"
msgstr "Yêu cầu phần thưởng của bạn"
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr ""
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1976,6 +2017,10 @@ msgstr ""
msgid "KyberSwap Guide"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr ""
@@ -1986,16 +2031,16 @@ msgstr ""
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr ""
+#~ msgid "Analyze Wallet"
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr ""
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -2009,8 +2054,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2018,12 +2063,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr ""
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr ""
+#~ msgid "Turn on to display live chart."
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2031,13 +2076,17 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr ""
+#~ msgid "Trending Soon"
+#~ msgstr ""
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr ""
+
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
#~ msgid "Search"
#~ msgstr ""
@@ -2063,23 +2112,23 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr ""
+#~ msgid "Create New Pool"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr "Giá chênh lệch khá nhiều so với giá thị trường đó, bạn lưu ý nhé!"
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr "Giá chênh lệch khá nhiều so với giá thị trường đó, bạn lưu ý nhé!"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr ""
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr ""
+#~ msgid "My Liquidity Positions"
+#~ msgstr ""
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2094,16 +2143,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr ""
+#~ msgid "Participate in our campaigns"
+#~ msgstr ""
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr ""
+#~ msgid "Market Price"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2122,12 +2175,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr ""
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr ""
+#~ msgid "KyberAI Banner"
+#~ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2135,8 +2188,6 @@ msgstr ""
msgid "Insufficient {s} balance"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr "Bạn sẽ nhận"
@@ -2146,12 +2197,16 @@ msgid "Wrap Error"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr ""
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2205,8 +2260,8 @@ msgid "Total Balance"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr ""
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2221,8 +2276,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr ""
+#~ msgid "FEES ↓"
+#~ msgstr ""
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2234,25 +2289,25 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr ""
+#~ msgid "Collapse All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr ""
+#~ msgid "Copy token address"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr ""
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr ""
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2270,8 +2325,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr ""
+#~ msgid "My Watchlist"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2282,12 +2337,12 @@ msgid "Delegate Address"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr ""
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr ""
+#~ msgid "Earning Charts"
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2298,21 +2353,21 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr ""
+#~ msgid "Fees (24h)"
+#~ msgstr ""
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr ""
+#~ msgid "VOLUME ↑"
+#~ msgstr ""
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr ""
+#~ msgid "Aggregator"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2321,8 +2376,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr ""
+#~ msgid "Share this pool with your friends!"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2330,12 +2385,12 @@ msgid "Faucet"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr ""
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr ""
+#~ msgid "Increase Amount"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2358,8 +2413,8 @@ msgid "Whitelisted Function"
msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr ""
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2393,12 +2448,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr ""
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr ""
+#~ msgid "Error occur, please try again."
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2449,8 +2504,8 @@ msgstr "Tối đa"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr ""
+#~ msgid "Bearish"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2479,7 +2534,6 @@ msgid "Gasless Edit"
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr ""
@@ -2487,8 +2541,6 @@ msgstr ""
msgid "Est. Market Price"
msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2510,13 +2562,13 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr ""
+#~ msgid "Exchange"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr ""
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr ""
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2531,8 +2583,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr ""
+#~ msgid "Amount held"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2566,10 +2618,14 @@ msgstr ""
#~ msgid "Connect Wallet"
#~ msgstr "Kết nối Ví"
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr ""
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2622,8 +2678,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr ""
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2638,8 +2694,8 @@ msgstr ""
#~ msgstr "Pools | AMP"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr ""
+#~ msgid "Support & Resistance Levels"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2695,8 +2751,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr ""
+#~ msgid "Current price"
+#~ msgstr ""
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2704,16 +2760,14 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr ""
+#~ msgid "Add Liquidity Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr ""
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr ""
@@ -2722,7 +2776,6 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr ""
@@ -2733,7 +2786,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
msgstr ""
#: src/components/SwapForm/MultichainKNCNote.tsx
@@ -2753,12 +2815,12 @@ msgid "Hard Cancel Instead"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr "Số tiền đặt cọc"
+#~ msgid "Deposit Amounts"
+#~ msgstr "Số tiền đặt cọc"
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr ""
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2766,19 +2828,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr ""
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2786,21 +2845,21 @@ msgstr ""
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr "Thêm thanh khoản"
+#~ msgid "Add liquidity"
+#~ msgstr "Thêm thanh khoản"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr ""
+#~ msgid "Daily Range"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr ""
+#~ msgid "Bullish:"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2827,8 +2886,8 @@ msgid "Stake liquidity into farm"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2845,23 +2904,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr ""
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr ""
+#~ msgid "Share this with your friends!"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr ""
+#~ msgid "Add Liquidity ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr ""
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2877,20 +2936,20 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr ""
+#~ msgid "Eligible"
+#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr ""
+#~ msgid "Trading Campaigns"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr ""
+#~ msgid "Top Bearish Tokens"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2901,8 +2960,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr ""
+#~ msgid "Reached max limit."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2936,8 +2995,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr ""
+#~ msgid "Trading Volume"
+#~ msgstr ""
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2945,17 +3004,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr ""
+#~ msgid "Update"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr ""
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr ""
+#~ msgid "1Y Range"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2967,14 +3026,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr ""
@@ -2983,8 +3035,8 @@ msgid "TOKEN UTILITY"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -3005,15 +3057,15 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr "Tạo một Pool mới hoặc chọn một cặp token khác để xem các Pool có sẵn."
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr "Tạo một Pool mới hoặc chọn một cặp token khác để xem các Pool có sẵn."
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3026,8 +3078,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr ""
+#~ msgid "Stake your liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3038,25 +3090,24 @@ msgid "{pendingLength} Pending"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr ""
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr "Hoạt động"
+#~ msgid "Active"
+#~ msgstr "Hoạt động"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr ""
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr ""
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr "Chia sẻ của Pool"
@@ -3069,8 +3120,8 @@ msgstr "Chia sẻ của Pool"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3085,13 +3136,13 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr ""
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr ""
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3100,8 +3151,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr "Nhập tỷ số AMP (>=1)"
+#~ msgid "Enter amp (>=1)"
+#~ msgstr "Nhập tỷ số AMP (>=1)"
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3116,8 +3167,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr ""
+#~ msgid "Go back Ranking page"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3132,8 +3183,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr ""
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3144,8 +3195,8 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr "Khối lượng (24h)"
+#~ msgid "Volume (24h)"
+#~ msgstr "Khối lượng (24h)"
#:
#:
@@ -3157,39 +3208,38 @@ msgid "Gasless Cancel All Orders"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr ""
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr ""
+#~ msgid "Upcoming Farms"
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr ""
+#~ msgid "Farm Ended"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr ""
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr "Tạo Pool mới"
@@ -3203,8 +3253,8 @@ msgstr "Tạo Pool mới"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr ""
+#~ msgid "Idle Range"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3228,8 +3278,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr ""
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3246,12 +3296,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr ""
+#~ msgid "Trending Soon Tokens"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr ""
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3272,8 +3322,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr ""
+#~ msgid "Pool | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3292,22 +3342,25 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr ""
+#~ msgid "Add {0} to {1}"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr ""
+#~ msgid "Live Chart"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr ""
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3315,8 +3368,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr ""
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3328,8 +3381,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr ""
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3340,20 +3393,20 @@ msgid "User denied message signature"
msgstr ""
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr ""
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr ""
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr ""
+#~ msgid "Trending soon"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3364,16 +3417,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr ""
+#~ msgid "Collapse"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr "phút"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr ""
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3384,29 +3437,29 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr "Phạm vi phí"
+#~ msgid "Fee Range"
+#~ msgstr "Phạm vi phí"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr ""
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr ""
+#~ msgid "MY REWARD ↑"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr ""
+#~ msgid "Harvesting rewards"
+#~ msgstr ""
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3425,12 +3478,12 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr ""
+#~ msgid "Maintainance"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr "Thanh khoản của tôi"
+#~ msgid "My liquidity"
+#~ msgstr "Thanh khoản của tôi"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3445,8 +3498,8 @@ msgid "No price alerts created yet"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr ""
+#~ msgid "Full unlocked"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3455,8 +3508,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr "Tiền gửi của tôi"
+#~ msgid "My Deposit"
+#~ msgstr "Tiền gửi của tôi"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3480,27 +3533,27 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr ""
+#~ msgid "Example"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr ""
+#~ msgid "Number"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr ""
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr ""
+#~ msgid "Token pair"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3521,12 +3574,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr ""
+#~ msgid "All Time Low"
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr ""
+#~ msgid "Current Chain"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3545,13 +3598,14 @@ msgstr ""
msgid "Stake Information"
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr ""
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3561,17 +3615,19 @@ msgstr ""
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
msgstr ""
+#: src/components/ElasticZap/QuickZap.tsx
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr ""
+
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr ""
@@ -3581,37 +3637,40 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr ""
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr ""
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr ""
+#~ msgid "New Liquidity Amount"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr ""
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr ""
@@ -3621,16 +3680,16 @@ msgid "Market Info"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr ""
+#~ msgid "Remove Watchlist"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr ""
+#~ msgid "APR for each Farming Range"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3649,8 +3708,8 @@ msgid "My Current Position"
msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr ""
+#~ msgid "Unsupported Asset"
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3666,7 +3725,11 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
@@ -3690,12 +3753,12 @@ msgid "Your Transactions"
msgstr "Giao dịch của bạn"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr ""
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr ""
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3716,16 +3779,16 @@ msgid "Your import token (click to copy)"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr ""
+#~ msgid "Select Override Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr ""
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr ""
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3752,8 +3815,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr ""
+#~ msgid "VOLUME ↓"
+#~ msgstr ""
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3764,8 +3827,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr ""
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3781,11 +3844,10 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr ""
+#~ msgid "Levels"
+#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr ""
@@ -3798,12 +3860,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr ""
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr ""
+#~ msgid "Stablecoins"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3814,7 +3876,11 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr ""
+
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
msgstr ""
#: src/pages/About/AboutKNC.tsx
@@ -3841,15 +3907,14 @@ msgstr ""
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr ""
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr ""
@@ -3879,8 +3944,8 @@ msgid "Risky Item(s)"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr ""
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3906,8 +3971,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr ""
+#~ msgid "24h Netflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3925,22 +3990,26 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr ""
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr ""
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3949,12 +4018,12 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr ""
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr ""
+#~ msgid "Static Fees"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3965,24 +4034,24 @@ msgid "Where you can buy KNC"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr ""
+#~ msgid "Best for stable pairs"
+#~ msgstr ""
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr ""
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3991,16 +4060,16 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr ""
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr ""
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4030,11 +4099,10 @@ msgid "Wrong Network"
msgstr "Sai Mạng"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr ""
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr ""
@@ -4043,12 +4111,12 @@ msgid "VALUE"
msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr ""
+#~ msgid "View Pool"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr ""
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4076,16 +4144,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr ""
+#~ msgid "Farm ended"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr ""
+#~ msgid "Available Farming Range"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4105,8 +4173,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr ""
+#~ msgid "Rewards Breakdown"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4141,8 +4209,8 @@ msgid "Your import token"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr ""
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4163,11 +4231,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr ""
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4182,8 +4248,8 @@ msgid "Cross-chain rate is"
msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr ""
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4202,7 +4268,6 @@ msgid "Default Options"
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4223,8 +4288,8 @@ msgstr ""
#~ msgstr "KNC có thể được sử dụng vào mục đích gì?"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr ""
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4235,7 +4300,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr ""
@@ -4248,8 +4312,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr ""
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4260,12 +4324,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr ""
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr ""
+#~ msgid "Live Trades"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4273,7 +4337,6 @@ msgstr ""
#~ msgstr "Người tham dự"
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr "Không có kết quả nào được tìm thấy."
@@ -4282,8 +4345,8 @@ msgstr "Không có kết quả nào được tìm thấy."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr ""
+#~ msgid "BONUS REWARDS"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4294,30 +4357,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr ""
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr ""
+#~ msgid "Best for most pairs"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr ""
+#~ msgid "Approving {0}"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr ""
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "<0>Advanced Mode0> turns off the 'Confirm' transaction prompt and allows high slippage trades that can result in bad rates and lost funds."
@@ -4342,14 +4404,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr ""
+#~ msgid "All Time High"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4370,12 +4434,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr ""
+#~ msgid "Deposit Farm Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr ""
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr ""
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4413,25 +4477,27 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr ""
+#~ msgid "Insufficient Balance"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr ""
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
msgstr ""
#: src/state/mint/proamm/hooks.tsx
@@ -4439,8 +4505,8 @@ msgid "Position {0}: Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr ""
+#~ msgid "View all"
+#~ msgstr ""
#:
#~ msgid "Rewards: {0} {1}"
@@ -4514,8 +4580,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr ""
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4530,31 +4596,30 @@ msgid "Sell Tax"
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr ""
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr ""
+#~ msgid "Learn More"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr ""
+#~ msgid "Video Tutorial"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr ""
@@ -4562,10 +4627,15 @@ msgstr ""
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr ""
+#~ msgid "Unstake Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4576,8 +4646,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr ""
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4595,24 +4665,14 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr ""
+#~ msgid "Unstake your liquidity"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Add Liquidity"
msgstr "Thêm thanh khoản"
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr "ở đây"
@@ -4621,19 +4681,13 @@ msgid "Find out more"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr ""
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr ""
@@ -4647,14 +4701,14 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr ""
+#~ msgid "here ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr ""
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4675,7 +4729,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
@@ -4699,8 +4758,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr ""
+#~ msgid "Favourites"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4710,22 +4769,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr ""
+#~ msgid "Reset"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr ""
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr ""
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4733,8 +4790,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr ""
+#~ msgid "Website"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4759,16 +4816,16 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr ""
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr ""
+#~ msgid "Token Rankings"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4791,7 +4848,6 @@ msgstr ""
#~ msgstr "Giao dịch của bạn ({0})"
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr ""
@@ -4827,7 +4883,6 @@ msgid "Favorite Chain(s)"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr "Thu phí"
@@ -4840,8 +4895,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr ""
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4867,8 +4922,8 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr ""
+#~ msgid "Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4889,24 +4944,23 @@ msgstr "Phí Gas"
#~ msgstr "Điều khoản Sử dụng"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr ""
+#~ msgid "END TIME ↑"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr "Tỷ lệ Pool"
+#~ msgid "Pool Ratio"
+#~ msgstr "Tỷ lệ Pool"
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr "Vui lòng kiểm tra <0>Farm đang hiệu lực0> hoặc quay lại sau"
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr ""
@@ -4915,7 +4969,6 @@ msgstr ""
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4931,12 +4984,10 @@ msgid "I Understand"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr ""
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr ""
@@ -4949,8 +5000,8 @@ msgid "Voting starts in:"
msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr ""
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr ""
#:
#~ msgid "FULL UNLOCK"
@@ -4961,8 +5012,8 @@ msgid "Security Info"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr ""
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr ""
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -5002,8 +5053,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr ""
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5034,8 +5085,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5059,28 +5110,32 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr ""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr ""
-#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
msgstr ""
+#: src/components/YieldPools/FarmPoolSort.tsx
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr ""
+
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr ""
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr ""
+#~ msgid "Deposited Positions"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5103,7 +5158,6 @@ msgstr ""
#~ msgstr "Lưu ý: {warningToken} hiện còn <10% trong pool. Pool có thể không hoạt động nếu {warningToken} xuống đến 0%"
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr ""
@@ -5116,11 +5170,15 @@ msgid "Exchange rate is always 1 to 1."
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr ""
+#~ msgid "Get alpha before it happens"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
msgstr ""
#: src/utils/time.ts
@@ -5132,11 +5190,10 @@ msgstr ""
#~ msgstr "Nguồn không rõ"
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr ""
+#~ msgid "Closed Positions"
+#~ msgstr ""
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr ""
@@ -5146,8 +5203,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr ""
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr ""
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5158,8 +5215,8 @@ msgid "Cannot vote at this moment"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr ""
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5170,17 +5227,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr ""
+#~ msgid "Go to farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr ""
+#~ msgid "Top 10 Holders"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr ""
+#~ msgid "Static Farm"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5191,8 +5248,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr ""
+#~ msgid "View Positions"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5252,12 +5309,12 @@ msgid "Code will expire in {0}{1}"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr ""
+#~ msgid "MY DEPOSIT"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr ""
+#~ msgid "Bug Bounty"
+#~ msgstr ""
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5304,12 +5361,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr ""
+#~ msgid "Withdraw Error"
+#~ msgstr ""
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr ""
+#~ msgid "Approve Farm Error"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5320,8 +5377,8 @@ msgid "Buy Tax"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr ""
+#~ msgid "View Less"
+#~ msgstr ""
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5343,12 +5400,6 @@ msgstr ""
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr ""
@@ -5359,13 +5410,17 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr ""
+#~ msgid "Invalid Input"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr "Chia sẻ sự kiện này với bạn bè!"
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr ""
@@ -5379,8 +5434,8 @@ msgid "Can sell all"
msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr ""
+#~ msgid "Token name"
+#~ msgstr ""
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5391,8 +5446,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr ""
+#~ msgid "Price | 24 Change"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5431,6 +5486,10 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr "Lỗi"
@@ -5444,8 +5503,8 @@ msgstr "Lỗi"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr ""
+#~ msgid "Withdraw Selected"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5455,6 +5514,10 @@ msgstr ""
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr ""
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr ""
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr "Thanh Khoản AMP"
@@ -5464,8 +5527,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr ""
+#~ msgid "Supplying {text}"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5476,8 +5539,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr ""
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5492,7 +5555,6 @@ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5511,8 +5573,6 @@ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr "Chọn một token"
@@ -5535,7 +5595,6 @@ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr ""
@@ -5552,8 +5611,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr ""
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5564,22 +5623,22 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr ""
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr ""
+#~ msgid "View More Stats"
+#~ msgstr ""
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr "Token"
@@ -5588,8 +5647,8 @@ msgstr "Token"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr ""
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5616,7 +5675,6 @@ msgstr ""
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr "Tài liệu"
@@ -5645,8 +5703,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr ""
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5661,8 +5719,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr ""
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5674,8 +5732,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr ""
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5695,8 +5753,8 @@ msgid "Quorum Status"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr ""
+#~ msgid "ENDING IN"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5708,8 +5766,8 @@ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr ""
+#~ msgid "ACTIONS"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5725,20 +5783,16 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr ""
+#~ msgid "Best for exotic pairs"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr ""
+#~ msgid "{0}% Claimed"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5749,22 +5803,21 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr ""
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr ""
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr "THÊM THÔNG TIN"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr ""
+#~ msgid "Farm has not started"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5772,19 +5825,14 @@ msgstr ""
msgid "Import Tokens"
msgstr "Nhập Các Token"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr "Chi tiết"
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr "Chi tiết"
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr ""
@@ -5796,10 +5844,14 @@ msgstr ""
#~ msgid "could be trending very soon!"
#~ msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
msgstr ""
+#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
+#~ msgid "Target Volume"
+#~ msgstr ""
+
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
#~ msgstr ""
@@ -5809,8 +5861,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr ""
+#~ msgid "Choose pool"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5853,8 +5905,8 @@ msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr "Khoảng Phí Linh Động"
+#~ msgid "Dynamic Fee Range"
+#~ msgstr "Khoảng Phí Linh Động"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5880,8 +5932,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5893,24 +5945,24 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr ""
+#~ msgid "{0}% Refund"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr ""
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr ""
+#~ msgid "3d Netflow"
+#~ msgstr ""
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5920,9 +5972,11 @@ msgstr ""
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr ""
@@ -5930,17 +5984,21 @@ msgstr ""
#~ msgid "- Remove send"
#~ msgstr "- Gửi Lệnh Xoá"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
+msgstr ""
+
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
-msgstr "Đặt giá khởi điểm"
+#~ msgid "Set Starting Price"
+#~ msgstr "Đặt giá khởi điểm"
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr ""
+#~ msgid "Liquidations on CEX"
+#~ msgstr ""
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5959,14 +6017,12 @@ msgstr ""
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr "Kết nối Ví"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr ""
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5974,8 +6030,8 @@ msgid "at"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr ""
+#~ msgid "Trading Grant Campaign"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5990,8 +6046,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr "Yếu tố AMP x Tính thanh khoản trong pool. Các pool khuếch đại có hiệu quả sử dụng vốn và tính thanh khoản cao hơn."
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr ""
+#~ msgid "Support & Resistance Levels."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -6001,13 +6057,13 @@ msgstr ""
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr ""
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr ""
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr ""
+#~ msgid "Unstake Error"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6033,7 +6089,6 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr ""
@@ -6061,16 +6116,16 @@ msgid "Export Profile"
msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr ""
+#~ msgid "My 1st Watchlist"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr ""
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6078,27 +6133,26 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr ""
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr ""
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr ""
+#~ msgid "Netflow to CEX"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr ""
@@ -6107,18 +6161,18 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr ""
+#~ msgid "MY LIQUIDITY"
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr ""
+#~ msgid "Rankings"
+#~ msgstr ""
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr ""
+#~ msgid "Timeframe"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6127,17 +6181,17 @@ msgid "Contract Address"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr ""
+#~ msgid "Please select fee"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr ""
+#~ msgid "to Whale Wallets"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr ""
+#~ msgid "Stake Selected"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6148,8 +6202,8 @@ msgid "Holiday Mode"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr ""
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr ""
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6195,12 +6249,12 @@ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr ""
+#~ msgid "Gas Price Tracker"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr ""
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6225,13 +6279,13 @@ msgid "Approve {tokenSymbol}"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr ""
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr ""
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6246,6 +6300,10 @@ msgstr ""
msgid "Max is {format}"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr ""
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr ""
@@ -6255,8 +6313,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr ""
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6267,16 +6325,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr ""
+#~ msgid "Starting Price"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6291,8 +6349,8 @@ msgid "has been successfully transferred from"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr ""
+#~ msgid "Best for very volatile pairs"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6336,8 +6394,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr ""
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6352,12 +6410,12 @@ msgid "Signing in..."
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr ""
+#~ msgid "Create list"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr ""
+#~ msgid "1 user is ahead of you"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6368,11 +6426,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr ""
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr ""
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr ""
@@ -6380,12 +6437,20 @@ msgstr ""
msgid "{0} price of {rateStr} {1}"
msgstr ""
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr ""
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr "+ Thêm 1 lần gửi (tùy chọn)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr ""
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
@@ -6393,8 +6458,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr ""
+#~ msgid "Total Earnings"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6404,8 +6469,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr ""
+#~ msgid "AVG APR ↓"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6442,8 +6507,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr ""
+#~ msgid "STAKED TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6478,7 +6543,6 @@ msgstr ""
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr "Luôn đảm bảo link URL là<0>KyberSwap.com0>"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr ""
@@ -6488,12 +6552,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr ""
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr ""
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6505,18 +6569,11 @@ msgid "Price Range"
msgstr "Phạm vi giá"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr ""
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6542,9 +6599,7 @@ msgstr ""
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr ""
@@ -6553,25 +6608,28 @@ msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the stan
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
+#~ msgid "View analytics"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr "Liên Hệ Chúng Tôi"
+#~ msgid "Contact Us"
+#~ msgstr "Liên Hệ Chúng Tôi"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr ""
+#~ msgid "Feedback"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6590,16 +6648,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr "Phân phối trong Pool của Bạn"
+#~ msgid "Your Pool Allocation"
+#~ msgstr "Phân phối trong Pool của Bạn"
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6637,13 +6695,6 @@ msgstr "On"
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6651,25 +6702,11 @@ msgstr "On"
msgid "Approve"
msgstr "Chấp nhận"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr "Chia sẻ"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6690,28 +6727,32 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr "Lợi nhuận tối đa"
+#~ msgid "Maximum Return"
+#~ msgstr "Lợi nhuận tối đa"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr ""
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr ""
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr ""
+#~ msgid "On-Chain Analysis"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr ""
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr ""
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6738,7 +6779,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr ""
@@ -6747,8 +6787,8 @@ msgid "How to participate"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr ""
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6770,7 +6810,7 @@ msgstr ""
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr "Phân tích"
@@ -6780,8 +6820,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6798,16 +6838,16 @@ msgid "Search by pool address"
msgstr "Tìm kiếm theo địa chỉ Pool"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr "Chọn mức phí"
+#~ msgid "Select fee tier"
+#~ msgstr "Chọn mức phí"
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr ""
+#~ msgid "MY REWARD ↓"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6815,20 +6855,16 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr ""
+#~ msgid "Netflow"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr ""
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr ""
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6864,32 +6900,32 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr "Bạn đang tạo một Pool"
+#~ msgid "You are creating a pool"
+#~ msgstr "Bạn đang tạo một Pool"
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr ""
+#~ msgid "Best for rare use cases"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr ""
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr ""
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr ""
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr ""
+#~ msgid "New Updates to KyberAI"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6898,16 +6934,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr ""
+#~ msgid "Funding Rates"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr ""
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6943,8 +6979,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr ""
+#~ msgid "AVG APR ↑"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6958,23 +6994,23 @@ msgstr ""
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr ""
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr ""
+#~ msgid "Live Charts"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr ""
+#~ msgid "Disable Metamask in C98"
+#~ msgstr ""
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6983,8 +7019,8 @@ msgstr "Off"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6996,43 +7032,41 @@ msgid "per"
msgstr "trên"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr ""
+#~ msgid "Expand All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr ""
+#~ msgid "Bullish"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr ""
+#~ msgid "Add liquidity error"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr ""
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr ""
+#~ msgid "Deposit your liquidity"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr ""
@@ -7053,8 +7087,8 @@ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr ""
+#~ msgid "Learn More ↗"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7082,8 +7116,8 @@ msgid "Cooldown"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr ""
+#~ msgid "Watchlist"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7091,10 +7125,9 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr ""
@@ -7112,8 +7145,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr "Các Phần thưởng bị Khóa"
+#~ msgid "Locked Rewards"
+#~ msgstr "Các Phần thưởng bị Khóa"
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7139,8 +7172,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr ""
+#~ msgid "Top Traded"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7155,10 +7188,6 @@ msgstr ""
#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr ""
@@ -7169,8 +7198,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr "Cung cấp"
+#~ msgid "Supply"
+#~ msgstr "Cung cấp"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7183,20 +7212,19 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr ""
+#~ msgid "Available Balance"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr ""
+#~ msgid "Help"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr ""
@@ -7239,7 +7267,6 @@ msgstr ""
#~ msgstr ""
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr ""
@@ -7252,8 +7279,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr ""
+#~ msgid "Dynamic"
+#~ msgstr ""
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7273,8 +7300,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7294,8 +7321,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr ""
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr ""
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7310,8 +7337,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr ""
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr ""
@@ -7319,6 +7344,11 @@ msgstr ""
#~ msgid "Tag:"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr ""
@@ -7340,8 +7370,8 @@ msgid "Available"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr ""
+#~ msgid "Last 7 days"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7356,22 +7386,26 @@ msgstr ""
msgid "Axelar/Squid doesn't support this chain"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr ""
+#~ msgid "Spot Markets"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr ""
+#~ msgid "Funding rate"
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7387,20 +7421,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr ""
+#~ msgid "Holders (On-chain)"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr ""
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr ""
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7410,11 +7444,11 @@ msgstr ""
#~ msgid "Acknowledge"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr "Huỷ"
@@ -7448,16 +7482,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr ""
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7468,8 +7502,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr ""
+#~ msgid "Enable Metamask in C98"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7484,8 +7518,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr "Không có lịch vesting!"
+#~ msgid "No vesting schedule!"
+#~ msgstr "Không có lịch vesting!"
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7508,8 +7542,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr ""
+#~ msgid "Deposited Liquidity"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7531,16 +7565,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr ""
+#~ msgid "Centralized Exchanges"
+#~ msgstr ""
#:
#~ msgid "DEPOSIT"
#~ msgstr "GỬI THANH KHOẢN"
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr ""
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7563,12 +7597,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr ""
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr ""
@@ -7576,14 +7608,18 @@ msgstr ""
msgid "Your currently existing order is {filledPercent}% filled."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr ""
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr ""
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7598,14 +7634,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr ""
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr ""
@@ -7632,16 +7671,16 @@ msgid "Min"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr ""
+#~ msgid "Update Liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr ""
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7660,8 +7699,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7710,22 +7749,23 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr "Lưu ý: Có các Pool hiện có cho cặp token này. Hãy kiểm tra"
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr "Lưu ý: Có các Pool hiện có cho cặp token này. Hãy kiểm tra"
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr ""
+#~ msgid "No liquidity found."
+#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr "Vẫn Giao dịch"
@@ -7753,8 +7793,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr ""
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7769,8 +7809,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr ""
+#~ msgid "Sort"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7782,16 +7822,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr ""
+#~ msgid "Referral code is invalid"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr ""
+#~ msgid "All positions"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7799,20 +7839,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr ""
+#~ msgid "Show more"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr ""
+#~ msgid "Top All Tokens"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7831,15 +7871,15 @@ msgid "DAO Governance"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr ""
+#~ msgid "Farming Ranges"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr "Pool của Tôi"
@@ -7863,10 +7903,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr "Chấp nhận {0}"
@@ -7893,13 +7929,18 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr ""
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
msgstr ""
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7911,8 +7952,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr ""
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7923,20 +7964,20 @@ msgid "KYBER DAO"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr ""
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr "Các mức Giá và Phần đóng góp Pool"
+#~ msgid "Prices and Pool share"
+#~ msgstr "Các mức Giá và Phần đóng góp Pool"
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr ""
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7957,16 +7998,16 @@ msgid "Accept"
msgstr "Chấp nhận"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr ""
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr ""
+#~ msgid "Update your liquidity"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7989,8 +8030,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr ""
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -8004,6 +8045,10 @@ msgstr ""
msgid "Vote - Earn Rewards"
msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr ""
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr ""
@@ -8026,12 +8071,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr ""
+#~ msgid "Go to farm ↗"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr ""
+#~ msgid "My Share of Pool"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8058,8 +8103,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr ""
+#~ msgid "Approve Farming Contract"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8093,8 +8138,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr ""
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8125,6 +8170,10 @@ msgstr ""
msgid "Error when changing network."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr ""
@@ -8142,8 +8191,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr ""
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8153,9 +8202,13 @@ msgstr ""
msgid "Claimed"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr ""
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr ""
@@ -8164,8 +8217,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr "Tạo mới"
+#~ msgid "Create"
+#~ msgstr "Tạo mới"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8204,8 +8257,9 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8216,10 +8270,14 @@ msgstr "Nhận"
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr ""
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr ""
+#~ msgid "Farming Range"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8246,16 +8304,16 @@ msgstr ""
#~ msgstr "Hash của giao dịch"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr ""
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr ""
+#~ msgid "Staked Balance"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8270,16 +8328,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr ""
+#~ msgid "Support / Resistance Levels"
+#~ msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr "Nhập người nhận"
@@ -8291,7 +8347,6 @@ msgstr "Nhập người nhận"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr ""
@@ -8316,13 +8371,17 @@ msgstr ""
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
msgstr ""
+#: src/pages/IncreaseLiquidity/index.tsx
+#~ msgid "404"
+#~ msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr ""
+#~ msgid "Dynamic Farm"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8336,11 +8395,10 @@ msgid "Notifications"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr ""
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr "Quay lại"
@@ -8349,16 +8407,16 @@ msgstr "Quay lại"
#~ msgstr "Vị trí Hiện tại của Bạn"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr ""
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr ""
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8368,8 +8426,11 @@ msgstr ""
msgid "TVL From DEXs"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr ""
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr ""
@@ -8377,8 +8438,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr ""
+#~ msgid "24h volume"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8397,53 +8458,39 @@ msgstr ""
msgid "{0}% Transaction Fee"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr "Nhập số lượng"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr ""
+#~ msgid "Top 25 Holders"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8455,8 +8502,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr ""
+#~ msgid "Business Enquiries"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8466,13 +8513,21 @@ msgstr ""
#~ msgid "Earn more due to compounding"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr ""
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr ""
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8483,8 +8538,8 @@ msgstr ""
#~ msgstr "Sắp đến"
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr ""
+#~ msgid "KyberAI Widget"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8499,16 +8554,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr ""
+#~ msgid "Checking data..."
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr ""
+#~ msgid "About Dynamic Farms"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8535,7 +8590,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr "Mới"
@@ -8545,8 +8599,8 @@ msgstr "Mới"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr ""
+#~ msgid "Not Applicable"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8562,8 +8616,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr ""
+#~ msgid "View Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8574,15 +8628,7 @@ msgstr ""
#~ msgstr ""
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8599,8 +8645,8 @@ msgid "Github"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr ""
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr ""
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8632,20 +8678,20 @@ msgid "You have already delegated your voting power to this address."
msgstr ""
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr "Có thể yield farming"
+#~ msgid "Available for yield farming"
+#~ msgstr "Có thể yield farming"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr ""
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr ""
+#~ msgid "Token Name"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8656,16 +8702,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr ""
+#~ msgid "On-chain & Open Source"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr "Tác động giá Rất Cao"
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr ""
+#~ msgid "Tokens Breakdown"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8693,12 +8739,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr ""
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr ""
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8706,14 +8752,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr ""
@@ -8726,8 +8765,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr ""
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8747,24 +8786,24 @@ msgid "Review Order"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr ""
+#~ msgid "Dynamic Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr ""
+#~ msgid "Farming Guide"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr ""
+#~ msgid "Static"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8776,17 +8815,17 @@ msgstr ""
#~ msgstr "+ Thêm thanh khoản"
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr ""
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr ""
+#~ msgid "View Earnings"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr ""
+#~ msgid "END TIME ↓"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8838,28 +8877,19 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr ""
+#~ msgid "Available for yield farming."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr "Giá Hiện Tại"
@@ -8869,8 +8899,8 @@ msgstr "Giá Hiện Tại"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr ""
+#~ msgid "View more ↗"
+#~ msgstr ""
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8896,13 +8926,15 @@ msgstr ""
msgid "Deposit"
msgstr ""
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr ""
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr "Một token gần bằng 0% trong pool. Pool có thể ngừng hoạt động."
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr "Người nhận không hợp lệ"
@@ -8917,16 +8949,16 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr ""
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr ""
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8957,12 +8989,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr ""
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr ""
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8980,7 +9012,6 @@ msgstr ""
msgid "You don't have any balance token"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr ""
@@ -9002,7 +9033,6 @@ msgstr "Nhập"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr ""
@@ -9042,7 +9072,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr ""
@@ -9069,12 +9098,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr ""
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr ""
+#~ msgid "Update Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9086,13 +9115,17 @@ msgid "I pay"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr ""
+#~ msgid "{0}% claimable"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr ""
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr ""
@@ -9103,8 +9136,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr ""
+#~ msgid "Estimated Risk"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9126,12 +9159,12 @@ msgid "Liquidity Sources"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr ""
+#~ msgid "Fill survey"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr ""
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9160,14 +9193,13 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr "Không đủ thanh khoản. Vui lòng tải lại trang và thử lại!"
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr "Không đủ thanh khoản. Vui lòng tải lại trang và thử lại!"
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr ""
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr "Trade Route của bạn"
@@ -9215,7 +9247,11 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
@@ -9248,8 +9284,8 @@ msgstr "Tài khoản {0} không đủ"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr ""
+#~ msgid "You're first in line!"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9274,20 +9310,25 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr ""
+#~ msgid "KyberScore Delta"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr ""
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr ""
+#~ msgid "Top Trade Tokens"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9298,8 +9339,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr ""
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9311,8 +9352,8 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr ""
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9338,7 +9379,11 @@ msgid "Copy address to clipboard"
msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
+#~ msgid "Expires In"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
msgstr ""
#: src/components/Menu/index.tsx
@@ -9347,8 +9392,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr ""
+#~ msgid "AVG APR"
+#~ msgstr ""
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9359,8 +9404,8 @@ msgstr "Chọn một token để tìm thanh khoản của bạn."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr ""
+#~ msgid "Referral Code (Optional)"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9372,8 +9417,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr ""
+#~ msgid "Seamless liquidity."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9391,13 +9436,17 @@ msgstr ""
#~ msgid "Update list"
#~ msgstr "Cập nhật danh sách"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr ""
+
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9429,32 +9478,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr ""
+#~ msgid "All {displayName}"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
+#~ msgid "Your Email"
+#~ msgstr ""
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
msgstr ""
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr ""
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr ""
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr ""
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9465,20 +9518,20 @@ msgid "Email Verified"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr ""
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr ""
+#~ msgid "Active Farms"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9490,16 +9543,16 @@ msgstr ""
#~ msgstr "Thông tin"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr ""
+#~ msgid "Low"
+#~ msgstr ""
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr ""
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr ""
#: src/components/TrendingSoonTokenBanner/index.tsx
#~ msgid "seems bullish right now."
@@ -9510,8 +9563,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr ""
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9554,10 +9607,18 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
-msgstr "Các Phần thưởng của tôi"
+#~ msgid "My Rewards"
+#~ msgstr "Các Phần thưởng của tôi"
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
+msgstr ""
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9572,8 +9633,8 @@ msgid "Open Source"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr ""
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9584,8 +9645,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr ""
+#~ msgid "Get pool info"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9597,8 +9658,8 @@ msgstr ""
#~ msgstr "Trượt giá Tối đa:"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr ""
+#~ msgid "View Pool Details"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9609,8 +9670,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr ""
+#~ msgid "Stake Error"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9620,10 +9681,15 @@ msgstr ""
msgid "Confirm this transaction in your wallet"
msgstr "Chấp thuận giao dịch này trong ví của bạn"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "Let's go!"
+#~ msgstr ""
+
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
#~ msgstr ""
@@ -9633,10 +9699,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr ""
+#~ msgid "to Centralized Exchanges"
+#~ msgstr ""
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr "Sự kiện"
@@ -9649,7 +9715,6 @@ msgstr ""
#~ msgstr "Chế Độ Tối"
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr "Tổng số Token LP"
@@ -9674,7 +9739,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9712,7 +9776,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr "Pool"
@@ -9725,8 +9788,8 @@ msgstr "Pool"
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr ""
+#~ msgid "Top traded pairs"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9737,7 +9800,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr "Tạo pool"
@@ -9746,12 +9808,10 @@ msgstr "Tạo pool"
#~ msgstr "Tìm kiếm tên hoặc địa chỉ"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr ""
+#~ msgid "View All"
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr ""
@@ -9760,12 +9820,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr ""
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr ""
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9792,8 +9852,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr ""
+#~ msgid "HIGHER RETURNS"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9804,8 +9864,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr ""
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9827,6 +9887,7 @@ msgstr ""
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr "Viết tắt của hệ số khuếch đại. Các Pool có chỉ số AMP cao hơn mang lại hiệu quả sử dụng vốn cao hơn trong một phạm vi giá cụ thể. Chúng tôi đề xuất AMP cao hơn cho các cặp token ổn định và AMP thấp hơn cho các cặp token biến động mạnh"
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9877,8 +9938,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr ""
+#~ msgid "Increase"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9912,16 +9973,16 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr "Thông tin Pool"
+#~ msgid "Pool Information"
+#~ msgstr "Thông tin Pool"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr "Danh sách token \"{0}\" đã được cập nhật thành <0> {1} 0>."
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr ""
+#~ msgid "Amount staked in a farm."
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9932,8 +9993,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr ""
+#~ msgid "Trending Soon:"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9945,8 +10006,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr ""
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9964,7 +10025,6 @@ msgstr ""
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr ""
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr "Thử lại"
@@ -9974,8 +10034,8 @@ msgstr "Thử lại"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr ""
+#~ msgid "Decentralized Exchanges"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -9990,17 +10050,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr ""
+#~ msgid "Code Audited"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr ""
+#~ msgid "Change network"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -10010,10 +10070,18 @@ msgstr ""
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr ""
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr ""
@@ -10023,8 +10091,8 @@ msgid "Buy"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr ""
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10036,8 +10104,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr ""
+#~ msgid "New Positions"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10048,12 +10116,12 @@ msgid "Completed"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr ""
+#~ msgid "TVL ↓"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr ""
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10061,16 +10129,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr ""
+#~ msgid "KyberAI Watchlist"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr ""
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10080,6 +10148,10 @@ msgstr ""
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr ""
@@ -10094,8 +10166,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr ""
+#~ msgid "Number of Holders"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10134,20 +10206,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr ""
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr ""
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr ""
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr "Bạn đang tạo một Pool mới và sẽ là nhà cung cấp thanh khoản đầu tiên. Tỷ lệ token bạn cung cấp bên dưới sẽ đặt giá ban đầu của Pool này. Khi bạn đã hài lòng với tỷ giá, hãy tiến hành cung cấp thanh khoản."
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr "Bạn đang tạo một Pool mới và sẽ là nhà cung cấp thanh khoản đầu tiên. Tỷ lệ token bạn cung cấp bên dưới sẽ đặt giá ban đầu của Pool này. Khi bạn đã hài lòng với tỷ giá, hãy tiến hành cung cấp thanh khoản."
#:
#:
@@ -10155,6 +10227,10 @@ msgstr "Bạn đang tạo một Pool mới và sẽ là nhà cung cấp thanh kh
#~ msgid "APY"
#~ msgstr ""
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr ""
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr "Route"
@@ -10168,12 +10244,12 @@ msgid "this profile"
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr ""
+#~ msgid "View positions"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr ""
+#~ msgid "Share this token"
+#~ msgstr ""
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10183,10 +10259,6 @@ msgstr ""
msgid "Order has been successfully cancelled."
msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr ""
@@ -10204,12 +10276,12 @@ msgid "View less"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr ""
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10274,8 +10346,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr ""
+#~ msgid "FEES ↑"
+#~ msgstr ""
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10287,10 +10359,14 @@ msgstr ""
msgid "Confirm Swap Details"
msgstr ""
-#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
msgstr ""
+#: src/components/Tutorial/TutorialSwap/constant.ts
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
msgstr ""
@@ -10308,8 +10384,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr ""
+#~ msgid "Farming Pools"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10321,8 +10397,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr "Không có Pool nào cho cặp token này."
+#~ msgid "There are no pools for this token pair."
+#~ msgstr "Không có Pool nào cho cặp token này."
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10333,8 +10409,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr ""
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr ""
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10342,8 +10418,8 @@ msgid "Permit Error"
msgstr ""
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr ""
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10366,27 +10442,26 @@ msgstr ""
msgid "Wallet"
msgstr "Địa chỉ ví"
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr "Nhập ngay."
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr ""
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr ""
+#~ msgid "Live DEX Trades"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr ""
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr ""
+#~ msgid "POOLS | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10397,12 +10472,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr ""
+#~ msgid "KyberAI Tutorial"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr ""
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10412,8 +10487,6 @@ msgstr ""
msgid "Wrong Chain"
msgstr ""
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10462,20 +10535,28 @@ msgid "I want to transfer"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr ""
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
@@ -10493,13 +10574,17 @@ msgid "Undelegate"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr ""
+#~ msgid "View Farm"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr ""
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr ""
@@ -10514,8 +10599,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr ""
+#~ msgid "Outflow"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10540,8 +10625,8 @@ msgid "Stake Amount"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr ""
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10561,33 +10646,32 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr ""
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr ""
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr ""
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr ""
+#~ msgid "FEES (24H)"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr ""
+#~ msgid "Create Classic Pool Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr ""
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10601,6 +10685,10 @@ msgstr ""
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr ""
@@ -10611,8 +10699,8 @@ msgid "All Chains"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10628,8 +10716,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr ""
+#~ msgid "Status"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10638,20 +10726,20 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr ""
+#~ msgid "To be extended soon"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr ""
+#~ msgid "My Pool Earnings"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10674,8 +10762,6 @@ msgstr ""
#~ msgid "via {0} token list"
#~ msgstr "qua danh sách token {0}"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10686,8 +10772,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr ""
+#~ msgid "Ape Smart!"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10698,8 +10784,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr ""
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr ""
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10739,8 +10825,6 @@ msgid "Mint Function"
msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr "Giới thiệu"
@@ -10771,7 +10855,6 @@ msgstr ""
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10782,8 +10865,8 @@ msgstr "Không đủ thanh khoản trong Pool này để Swap"
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10794,12 +10877,12 @@ msgid "Cross-Chain Bridge"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr ""
+#~ msgid "STAKED TVL"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10810,8 +10893,8 @@ msgid "Profile"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr ""
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10824,21 +10907,15 @@ msgid "Notification Preferences"
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr "Giao dịch"
@@ -10855,17 +10932,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr ""
+#~ msgid "Your Referral Link"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr ""
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr ""
+#~ msgid "Hide"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10881,17 +10962,16 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10909,9 +10989,9 @@ msgstr ""
msgid "Language"
msgstr "Ngôn ngữ"
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10923,8 +11003,8 @@ msgstr ""
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr ""
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10933,8 +11013,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr "Đã có Pool không khuếch đại"
+#~ msgid "Unamplified Pool existed"
+#~ msgstr "Đã có Pool không khuếch đại"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10980,8 +11060,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr ""
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -11004,14 +11084,13 @@ msgstr ""
#~ msgstr "Bạn có thể thêm thanh khoản cho Pool bằng cách cung cấp một token duy nhất (một token trong cặp đôi token). Chúng tôi sẽ tự động tạo mã thông báo LP cho bạn và thêm chúng vào nhóm thanh khoản - tất cả chỉ trong một giao dịch"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr ""
+#~ msgid "Not Available"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr "Tác động giá quá cao"
@@ -11021,8 +11100,8 @@ msgstr "Tác động giá quá cao"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr ""
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11033,8 +11112,8 @@ msgstr "Thời hạn giao dịch"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr ""
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11044,7 +11123,6 @@ msgstr ""
msgid "50%"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr "Tác động giá cao"
@@ -11054,16 +11132,16 @@ msgstr "Tác động giá cao"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr ""
+#~ msgid "Deposit Selected"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr "Tỷ lệ của Bạn trong Pool:"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr "Quản lý"
+#~ msgid "Manage"
+#~ msgstr "Quản lý"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11079,20 +11157,24 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr ""
+#~ msgid "Click on the Settings icon"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr ""
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11107,16 +11189,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr ""
+#~ msgid "Key Features"
+#~ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr ""
+#~ msgid "Select a Range"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11127,10 +11209,9 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr ""
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11157,8 +11238,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr ""
+#~ msgid "Manage Lists"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11172,17 +11253,21 @@ msgstr ""
msgid "All Closed Orders"
msgstr ""
-#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
msgstr ""
+#: src/components/YieldPools/FarmStepGuide/index.tsx
+#~ msgid "About Static Farms"
+#~ msgstr ""
+
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr ""
+#~ msgid "We could not find anything. Try again."
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11193,8 +11278,8 @@ msgid "has been failed to transferred from"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr ""
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11205,17 +11290,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr ""
+#~ msgid "Your Referral Code"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+#~ msgid "Chain"
+#~ msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
#~ msgstr "Tổng Giá trị Đã khóa"
@@ -11229,8 +11318,8 @@ msgid "All Active Orders"
msgstr ""
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr ""
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr ""
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11242,17 +11331,13 @@ msgid "Keep Current Profile"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr ""
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11266,8 +11351,8 @@ msgstr "Sử dụng Wrapped Token"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr ""
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11277,12 +11362,12 @@ msgid "Migrate"
msgstr "Di chuyển"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr ""
+#~ msgid "My Watchlists"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr ""
+#~ msgid "Currently Trending"
+#~ msgstr ""
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11293,8 +11378,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr ""
+#~ msgid "Last 7d price"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11326,22 +11411,17 @@ msgstr ""
#~ msgid "{day} {0} ago"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr "Đang tải"
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr ""
+#~ msgid "VOLUME (24H)"
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr ""
+#~ msgid "Limit"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11353,8 +11433,8 @@ msgid "Snapshot"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr ""
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr ""
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11373,16 +11453,16 @@ msgstr ""
#~ msgstr "Bật để hiển thị token info"
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr ""
+#~ msgid "Bearish:"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr ""
+#~ msgid "Set a price alert"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr ""
+#~ msgid "Fees Earned"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11402,16 +11482,16 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr ""
+#~ msgid "Estimated Profit"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr ""
+#~ msgid "High"
+#~ msgstr ""
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11420,6 +11500,7 @@ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr "Đóng"
@@ -11430,8 +11511,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr ""
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11450,8 +11531,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr ""
+#~ msgid "My Farms"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11462,15 +11543,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr ""
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr ""
@@ -11519,7 +11599,6 @@ msgstr ""
msgid "Swap Now"
msgstr ""
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr "pool"
@@ -11545,8 +11624,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr ""
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/locales/zh-CN.po b/src/locales/zh-CN.po
index f23043095e..260628b99f 100644
--- a/src/locales/zh-CN.po
+++ b/src/locales/zh-CN.po
@@ -14,16 +14,16 @@ msgstr ""
"Plural-Forms: \n"
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "{walletName} is not available. In order to use {walletName}, please follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/LeaderBoard.tsx
#~ msgid "Projects"
#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Position {tokenId} does not exist on {0}"
-msgstr ""
+#~ msgid "Position {tokenId} does not exist on {0}"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
msgid "Please type the word <0>Confirm0> below to enable Degen Mode"
@@ -54,8 +54,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfClosedPositions} Closed"
-msgstr ""
+#~ msgid "{numOfClosedPositions} Closed"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "Currently there are no campaigns"
@@ -68,8 +68,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "ENDED"
-msgstr ""
+#~ msgid "ENDED"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/const.ts
msgid "Open Orders"
@@ -80,13 +80,13 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Disclaimer: This should not be considered as financial advice."
-msgstr ""
+#~ msgid "Disclaimer: This should not be considered as financial advice."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberOutRangePos} out-of-range position(s)."
-msgstr ""
+#~ msgid "You have {numberOutRangePos} out-of-range position(s)."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -106,8 +106,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
-msgstr ""
+#~ msgid "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Total Gas Refund = Available + Pending + Claimed Gas Refund"
@@ -122,18 +122,14 @@ msgstr ""
msgid "Will cost more gas fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Increase Liquidity"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Type"
-msgstr ""
+#~ msgid "Type"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Exported profiles will not be associated with your wallet. Your export code is unique. Learn more about profile <0>here0>."
@@ -144,12 +140,13 @@ msgstr ""
#~ msgstr "管理这个池。"
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
msgid "RATE"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Custom Ranges"
-msgstr ""
+#~ msgid "Custom Ranges"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "PREVENT SNIPING ATTACKS"
@@ -201,16 +198,16 @@ msgid "Token Info"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Your position will not earn fees until the market price of the pool moves into your price range."
-msgstr ""
+#~ msgid "Your position will not earn fees until the market price of the pool moves into your price range."
+#~ msgstr ""
#: src/components/Menu/index.tsx
#~ msgid "Discover"
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Funding Rate on CEX"
-msgstr ""
+#~ msgid "Funding Rate on CEX"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
@@ -218,11 +215,16 @@ msgid "Back in range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Volume"
-msgstr ""
+#~ msgid "Volume"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Pool Stats"
+#~ msgid "Pool Stats"
+#~ msgstr ""
+
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared with other similar trades. You might want to adjust it to avoid potential front-running."
msgstr ""
#: src/components/Announcement/Popups/PopupTopRightDescriptions/DescriptionCrossChain.tsx
@@ -250,8 +252,8 @@ msgid "Service Fee"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trending Tokens"
-msgstr ""
+#~ msgid "Top Trending Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/Vote/ProposalListComponent.tsx
@@ -294,13 +296,13 @@ msgid "Placing order"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
-msgstr ""
+#~ msgid "Indicates on-chain transfer activity between wallets. High transfer activity indicates that more traders are transferring the token between wallets. Token with high transfer activity and high transfer volume may indicate that traders are interested in it."
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "DMM {0}/{1} LP Tokens"
-msgstr ""
+#~ msgid "DMM {0}/{1} LP Tokens"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
@@ -312,25 +314,29 @@ msgid "Loading token..."
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "For everyone"
-msgstr ""
+#~ msgid "For everyone"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "Input amount is not valid."
msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Removed Liquidity"
-msgstr ""
+#~ msgid "Removed Liquidity"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Claimed Rewards"
-msgstr "领取奖励"
+#~ msgid "Claimed Rewards"
+#~ msgstr "领取奖励"
#: src/components/CurrencyInputPanel/CurrencyInputPanelBridge.tsx
msgid "Loading tokens"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "In case you want to Opt Out (i) from KyberSwap Treasury Grant Program, proceed in actions."
+msgstr ""
+
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
#: src/components/swapv2/SwapModalHeader.tsx
#: src/pages/CrossChain/SwapBriefCrossChain.tsx
@@ -346,8 +352,8 @@ msgid "Position {0}"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "This email address is already registered."
-msgstr ""
+#~ msgid "This email address is already registered."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Your rewards may be automatically harvested a few days after the farm ends. Please check the <0>Vesting0> tab to see your rewards"
@@ -357,6 +363,10 @@ msgstr ""
#~ msgid "Recent Transactions"
#~ msgstr "近期交易"
+#: src/constants/networks.ts
+msgid "Elastic is not supported on Blast. Please switch to other chains"
+msgstr ""
+
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Add liquidity to our Classic Pools & earn trading fees automatically."
#~ msgstr ""
@@ -442,8 +452,8 @@ msgstr ""
#: src/pages/IncreaseLiquidity/Chart.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
-msgid "Your position will be 100% composed of {quoteSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {quoteSymbol} at this price"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "There is no deadline to claim your gas refunds. You can wait for more KNC to be accumulated before claiming them in order to save on gas fees."
@@ -480,21 +490,25 @@ msgstr "您在池中的份额"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Discover new opportunities."
-msgstr ""
+#~ msgid "Discover new opportunities."
+#~ msgstr ""
#: src/utils/time.ts
msgid "{min} {formatM} ago"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Supply owned"
-msgstr ""
+#~ msgid "Supply owned"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism - Active Liquidity Time"
#~ msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L1 fee that pays for rolls up cost"
+msgstr ""
+
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Point multiplier is in effect."
#~ msgstr ""
@@ -513,16 +527,16 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Lowest Gas"
-msgstr "最低的燃料费用"
+#~ msgid "Lowest Gas"
+#~ msgstr "最低的燃料费用"
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Full range positions may earn less fees than concentrated positions."
#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Locked"
-msgstr ""
+#~ msgid "{0}% Locked"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -535,16 +549,16 @@ msgstr "驳回"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
-msgstr ""
+#~ msgid "Stake your liquidity positions (i.e. your NFT tokens) into the farm to start earning rewards."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/MyEarnings/index.tsx
-msgid "My Earnings"
-msgstr ""
+#~ msgid "My Earnings"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "No"
@@ -554,16 +568,20 @@ msgstr ""
#~ msgid "You have turned on Advanced Mode from settings. Trades with high price impact can be executed"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 60% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 3 months."
+msgstr ""
+
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "No Farms found"
-msgstr ""
+#~ msgid "No Farms found"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for very stable pairs"
-msgstr ""
+#~ msgid "Best for very stable pairs"
+#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
msgid "You can select and transfer any token supported by Multichain from one chain to another"
@@ -586,16 +604,16 @@ msgid "Add Custom RPC Endpoint"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Watchlists name exist!"
-msgstr ""
+#~ msgid "Watchlists name exist!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
-msgstr ""
+#~ msgid "<0>A unique trading insight offered by KyberAI is the <1>KyberScore1>. KyberScore uses <2>AI2> to measure the upcoming trend (bullish or bearish) of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the <3>short-term3>.0> <4>Each token supported by KyberAI is assigned a KyberScore. It refreshes multiple times a day as we collect more data on the token. You can find the KyberScore of a token in the <5>Rankings5> or <6>Explore6> section. Read more about the calculation here.4> <7><8>Note: KyberScore should not be considered as financial advice8>7>"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Total Harvested Rewards"
-msgstr ""
+#~ msgid "Total Harvested Rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "No extra deposit or withdrawal fees"
@@ -615,6 +633,10 @@ msgstr ""
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades with <1>very1> high price impact. This can result in bad rates and loss of funds!"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Wallet Address:"
+msgstr ""
+
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "You can use the <0>Force Withdraw0> button as an emergency option. If you do this, your farming rewards will <1>not1> be automatically harvested but we can <2>manually transfer2> your farming rewards to you."
#~ msgstr ""
@@ -627,31 +649,29 @@ msgstr ""
msgid "All-Time High"
msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Ended"
msgstr "已结束"
#: src/pages/MyEarnings/MyEarningStats/index.tsx
-msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
-msgstr ""
+#~ msgid "Note: Your earnings will fluctuate according to the dollar value of the tokens earned. These earnings include both claimed and unclaimed fees as well as accrued farming rewards."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Add liquidity instantly using only one token!"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
-msgstr ""
+#~ msgid "You need to enable <0>\"Override Wallet\"0> in Coin98 settings."
+#~ msgstr ""
#: src/hooks/kyberdao/index.tsx
msgid "Unknown error"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↑"
-msgstr ""
+#~ msgid "MY LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Switch Profile"
@@ -671,8 +691,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/KyberScoreChart.tsx
#: src/pages/TrueSightV2/components/TokenChartSVG.tsx
-msgid "Token Price"
-msgstr ""
+#~ msgid "Token Price"
+#~ msgstr ""
#: src/components/SearchModal/CommonBases.tsx
#~ msgid "Common bases"
@@ -684,7 +704,6 @@ msgstr ""
msgid "goes"
msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/components/swapv2/LimitOrder/Tutorial.tsx
@@ -692,7 +711,11 @@ msgid "Free"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgid "Note: A very small amount of your liquidity about {0} <0>({1} {2}, {3} {4})0> will be used to first initialize the pool. Read more <1>here↗1>"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Switch to Polygon"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
@@ -703,7 +726,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore"
+#~ msgid "KyberScore"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "TOTAL AMOUNT (USD)"
msgstr ""
#: src/pages/Bridge/SwapForm.tsx
@@ -712,8 +740,8 @@ msgid "Cannot get token info. Please try again later."
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display trade route"
@@ -733,6 +761,10 @@ msgstr ""
#~ msgid "Other Details"
#~ msgstr ""
+#: src/components/PositionCard/index.tsx
+msgid "{feeApr}% LP Fee"
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
#: src/pages/NotificationCenter/CreateAlert/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CreateAlertButton.tsx
@@ -756,6 +788,10 @@ msgstr ""
msgid "The owner of this liquidity position is {0}"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "Pay network fees in the token of your choice."
+msgstr ""
+
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Share your referral link and start earning commission instantly!"
#~ msgstr ""
@@ -763,8 +799,8 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Est. Gas Fee"
-msgstr ""
+#~ msgid "Est. Gas Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "This is the estimated output amount. It is inclusive of any applicable swap fees. Do review the actual output amount at the confirmation stage."
@@ -784,8 +820,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
-msgstr ""
+#~ msgid "Authorize the farming contract so it can access your liquidity positions (i.e. your NFT tokens). Then deposit your liquidity positions using the <0>Deposit0> button"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "KyberSwap‘s Terms of Use"
@@ -795,13 +831,17 @@ msgstr ""
msgid "Welcome to KyberSwap!"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Your wallet has been verified. Please select the grant option."
+msgstr ""
+
#: src/components/CurrencyInputPanel/index.tsx
msgid "The price of the pool is outside your selected price range and hence you can only deposit a single token. To see more options, update the price range."
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Initializing with {walletName}..."
-msgstr ""
+#~ msgid "Initializing with {walletName}..."
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#: src/pages/Campaign/CampaignItem.tsx
@@ -840,15 +880,14 @@ msgid "Suitable for low-risk appetite LPs for pairs with high price volatility.
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
-msgstr ""
+#~ msgid "You don't have any relevant liquidity positions that cover this price range.<0/>Add liquidity to this pool with the current range <1>here ↗1>"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Total KNC migrated from KNCL"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
@@ -879,13 +918,14 @@ msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/HarvestModal.tsx
-#: src/components/YieldPools/HarvestAll.tsx
-#: src/components/YieldPools/HarvestAll.tsx
msgid "Harvest All"
msgstr "收成全部"
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high. You might want to adjust it to avoid potential front-running."
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
msgid "and receive"
@@ -893,8 +933,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>."
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#: src/components/ProAmm/ProAmmFee.tsx
@@ -902,8 +942,8 @@ msgid "Your fees are being automatically compounded so you earn more"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Average"
-msgstr ""
+#~ msgid "Average"
+#~ msgstr ""
#: src/constants/messages.ts
#~ msgid "Contract not found! Please reload and try again."
@@ -913,6 +953,11 @@ msgstr ""
#~ msgid "Trending"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "({0})"
+msgstr ""
+
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Before you can subscribe to this notification, sign-in to a profile first. Go the <0>Profile0> tab to sign-in with your wallet"
msgstr ""
@@ -947,8 +992,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
-msgstr ""
+#~ msgid "Tokens with funding rates on centralized exchanges. Positive funding rate suggests traders are bullish & vice-versa for negative rates. Extreme rates may result in leveraged positions getting squeezed."
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "MAX"
@@ -980,8 +1025,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to whale wallets (<0><1>General Whales1>0> and <2><3>Token Whales3>2>). <4>Positive netflow4> generally means that whales are buying. <5>Negative netflow5> generally means that whales are selling."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "You are undelegating your voting from {delegatedAddress}."
@@ -1008,8 +1053,8 @@ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Rewards"
-msgstr "奖励"
+#~ msgid "Rewards"
+#~ msgstr "奖励"
#: src/components/ModalViews/index.tsx
#~ msgid "View transaction on Etherscan"
@@ -1028,6 +1073,10 @@ msgstr ""
msgid "View more"
msgstr ""
+#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
+msgid "Reverted {increasedFilledPercent}"
+msgstr ""
+
#: src/pages/Campaign/index.tsx
#~ msgid "Currently, there is no campaign."
#~ msgstr ""
@@ -1064,10 +1113,7 @@ msgstr ""
msgid "All-Time Low"
msgstr ""
-#: src/pages/Farm/index.tsx
-#: src/pages/MyEarnings/PoolFilteringBar/SearchInput.tsx
#: src/pages/MyPool/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Search by token name or pool address"
msgstr ""
@@ -1075,21 +1121,21 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Ended at"
-msgstr ""
+#~ msgid "Ended at"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Ending In"
-msgstr "截止"
+#~ msgid "Ending In"
+#~ msgstr "截止"
#: src/pages/SwapV2/index.tsx
#~ msgid "The amount you save compared to <0>{0}0>."
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is out of your selected range. Your position is not earning fees"
-msgstr ""
+#~ msgid "The price of this pool is out of your selected range. Your position is not earning fees"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -1107,8 +1153,8 @@ msgstr ""
#: src/components/YieldPools/index.tsx
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Currently there are no Farms."
-msgstr "目前还没有挖矿活动。"
+#~ msgid "Currently there are no Farms."
+#~ msgstr "目前还没有挖矿活动。"
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ConfirmAddModalBottom/index.tsx
@@ -1118,8 +1164,8 @@ msgid "Pooled {0}"
msgstr "Pooled {0}"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
-msgstr ""
+#~ msgid "<0>Support level0> is where the price of a token normally stops falling and bounces back from. <1>Resistance level1> is where the price of a token normally stops rising and dips back down. <2>Support2> and <3>Resistance3> levels may vary depending on the timeframe you're looking at."
+#~ msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/pages/SwapV3/Tabs/index.tsx
@@ -1127,8 +1173,8 @@ msgid "Cross-Chain"
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Supply Anyway"
-msgstr "Supply Anyway"
+#~ msgid "Supply Anyway"
+#~ msgstr "Supply Anyway"
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#~ msgid "Turn on to display live chart"
@@ -1154,8 +1200,8 @@ msgstr "管理您的池。"
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Harvest"
-msgstr "收成"
+#~ msgid "Harvest"
+#~ msgstr "收成"
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "MEV Protection"
@@ -1182,8 +1228,6 @@ msgid "You haven't made any transfers yet"
msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Market Cap"
msgstr ""
@@ -1196,8 +1240,8 @@ msgid "You had successfully import this profile. You are now signed in with this
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Farming Contract"
-msgstr ""
+#~ msgid "Farming Contract"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1206,8 +1250,8 @@ msgstr "您的交易的估计网络费用"
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Insufficient Liquidity"
-msgstr ""
+#~ msgid "Insufficient Liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Cancel order to pay {mainMsg} failed"
@@ -1226,24 +1270,24 @@ msgid "Forgot your Passcode?"
msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Referral code is invalid."
-msgstr ""
+#~ msgid "Referral code is invalid."
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
#~ msgid "Now that you have purchased your crypto, you can trade from over 20,000+ tokens on KyberSwap! We give you the best trading rates in the market!"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Many"
-msgstr ""
+#~ msgid "Many"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Sign in"
-msgstr ""
+#~ msgid "Sign in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
-msgstr ""
+#~ msgid "<0>Swap0> and <1>Earn1> Tokens at Superior Rates"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "No add / remove transactions in the last 24 hrs"
@@ -1254,8 +1298,8 @@ msgstr ""
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Set a Custom Range"
-msgstr ""
+#~ msgid "Set a Custom Range"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "There was an issue while trying to find a price for these tokens. Please try again. Otherwise, you may select some other tokens to swap."
@@ -1278,16 +1322,14 @@ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid amount"
msgstr "无效的数量"
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "There was an error. Please try again later."
-msgstr ""
+#~ msgid "There was an error. Please try again later."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Choose your preferred network. KyberSwap is a multi-chain platform that supports over 13 chains!"
@@ -1298,8 +1340,8 @@ msgid "Insufficient {0} balance for order execution."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
-msgstr ""
+#~ msgid "Hey! You're on our waitlist but your slot hasn't opened up yet. Jump the queue by referring others to KyberAI."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "TVL equivalent compared to AMMs"
@@ -1307,8 +1349,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Your liquidity"
-msgstr ""
+#~ msgid "Your liquidity"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your QR code is invalid, please try another one"
@@ -1324,8 +1366,8 @@ msgid "Import Pool"
msgstr "导入池"
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bullish Tokens"
-msgstr ""
+#~ msgid "Top Bullish Tokens"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/pages/Bridge/ConfirmBridgeModal.tsx
@@ -1340,8 +1382,16 @@ msgstr ""
#~ msgid "You can only favorite up to three token pairs"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "My Order(s)"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgid "On the Farm page, click the <0>Stake0> button on the card of the farm you would like to participate in and deposit your liquidity"
+#~ msgstr ""
+
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Maintenance"
msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
@@ -1349,13 +1399,13 @@ msgid "Current Price in the market."
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Perpetual Markets"
-msgstr ""
+#~ msgid "Perpetual Markets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "Start Earning"
-msgstr ""
+#~ msgid "Start Earning"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Voting System"
@@ -1376,8 +1426,8 @@ msgid "Navigating My Pools Tutorial"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Technical Analysis"
-msgstr ""
+#~ msgid "Technical Analysis"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below have successfully cancelled:<0/>{listOrderName}"
@@ -1392,8 +1442,8 @@ msgid "Tokens"
msgstr "代币"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↑"
-msgstr ""
+#~ msgid "TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertType.tsx
msgid "above"
@@ -1420,12 +1470,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "Markets"
-msgstr ""
+#~ msgid "Markets"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
-msgstr ""
+#~ msgid "<0>For traders, analyzing & interpreting on-chain data can be very powerful. It helps us see what whales, smart money and other traders are up to. And so, KyberAI has cherry picked the best on-chain indicators to help traders like you spot alpha on your tokens. Check out the <1>On-Chain Analysis1> tab of the <2>Explore2> section!0><3>The best traders combine on-chain analysis with technical analysis (TA). TA is used to identify trading opportunities by evaluating price charts, price trends, patterns etc. KyberAI makes TA easy for traders. Check out the <4>Technical Analysis4> tab of the Explore section!3>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
@@ -1433,8 +1483,8 @@ msgid "Are you sure?"
msgstr "您确定吗?"
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw your liquidity"
-msgstr ""
+#~ msgid "Withdraw your liquidity"
+#~ msgstr ""
#: src/utils/time.ts
msgid "{hour} {temp} ago"
@@ -1445,8 +1495,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Current phase will end in"
-msgstr ""
+#~ msgid "Current phase will end in"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "We give liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
@@ -1458,8 +1508,8 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "New phase will start in"
-msgstr ""
+#~ msgid "New phase will start in"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
#~ msgid "I want to pay"
@@ -1475,15 +1525,13 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Inflow"
-msgstr ""
+#~ msgid "Inflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch Network"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
-#: src/components/Menu/index.tsx
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Liquidity"
@@ -1492,8 +1540,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "APR"
-msgstr "APR"
+#~ msgid "APR"
+#~ msgstr "APR"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "My rewards"
@@ -1538,16 +1586,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ClassicElasticTab.tsx
-msgid "Wallet Analytics"
-msgstr ""
+#~ msgid "Wallet Analytics"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "Actions"
-msgstr ""
+#~ msgid "Actions"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "This campaign is participating in the Grant Campaign."
@@ -1562,12 +1610,12 @@ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Staked TVL"
-msgstr "质押的总锁定价值"
+#~ msgid "Staked TVL"
+#~ msgstr "质押的总锁定价值"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Committed to Security"
-msgstr ""
+#~ msgid "Committed to Security"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Subscribing ..."
@@ -1578,14 +1626,14 @@ msgstr ""
#~ msgstr "价格影响高"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}). You might have high impermanent loss after the pool is created."
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberAI"
-msgstr ""
+#~ msgid "KyberAI"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Reached"
@@ -1613,27 +1661,21 @@ msgstr "确认"
msgid "Suitable for stablecoin or stable correlated pairs. Anticipating price to fluctuate within ~3%. You can earn fees even if the price goes up by 1.5% or goes down by 1.5%."
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Fees (24H)"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Avg APR"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it <0>here↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Positive Netflow"
-msgstr ""
+#~ msgid "Top CEX Positive Netflow"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
@@ -1655,14 +1697,13 @@ msgid "the price of"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
-msgstr ""
+#~ msgid "Finding it hard to figure out <0>when is the right time to ape?0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↓"
-msgstr ""
+#~ msgid "STAKED TVL ↓"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approved"
@@ -1681,8 +1722,8 @@ msgid "Not selected option"
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Harvest Error"
-msgstr ""
+#~ msgid "Harvest Error"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "KNC Amount"
@@ -1709,8 +1750,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Harvest your farming rewards whenever you want."
-msgstr ""
+#~ msgid "Harvest your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/Header/web3/AccountDetails/index.tsx
#~ msgid "Your transactions will appear here..."
@@ -1745,12 +1786,12 @@ msgid "Gas Abuser"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View Less Stats"
-msgstr ""
+#~ msgid "View Less Stats"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Static Farms"
-msgstr ""
+#~ msgid "Static Farms"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -1765,8 +1806,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Token Pair | Fee"
-msgstr ""
+#~ msgid "Token Pair | Fee"
+#~ msgstr ""
#: src/components/Header/groups/AboutNavGroup.tsx
msgid "KyberSwap"
@@ -1778,8 +1819,8 @@ msgid "Custom"
msgstr "自定义"
#: src/pages/ElasticSnapshot/index.tsx
-msgid "Please connect your wallet to view your affected position(s)."
-msgstr ""
+#~ msgid "Please connect your wallet to view your affected position(s)."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Include Chain"
@@ -1838,8 +1879,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Not Eligible"
-msgstr ""
+#~ msgid "Not Eligible"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
@@ -1870,8 +1911,8 @@ msgstr ""
#: src/pages/TrueSightV2/index.tsx
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Explore"
-msgstr ""
+#~ msgid "Explore"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "You save"
@@ -1913,12 +1954,12 @@ msgstr ""
#~ msgstr "进阶模式"
#: src/pages/AddLiquidity/index.tsx
-msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
-msgstr ""
+#~ msgid "Add liquidity to the pool by supplying a single token (either token from the token pair). We will automatically create LP tokens for you and add them to the liquidity pool - all in a single transaction"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
-msgstr ""
+#~ msgid "Oops, we couldnt find your token! We will regularly add new tokens that have achieved a certain trading volume"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can Change Balance"
@@ -1946,8 +1987,8 @@ msgid "Claim your rewards"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
-msgstr ""
+#~ msgid "After harvesting, your rewards will unlock linearly over the indicated time period"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "We really apologize for the trouble."
@@ -1973,6 +2014,10 @@ msgstr ""
msgid "KyberSwap Guide"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Once you add {0}, the order will be executed at <0>{1}%0> below the market price."
msgstr ""
@@ -1983,16 +2028,16 @@ msgstr ""
#: src/pages/MyPool/index.tsx
#: src/pages/ProAmmPool/index.tsx
-msgid "Analyze Wallet"
-msgstr ""
+#~ msgid "Analyze Wallet"
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "Address is not valid"
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAIWatchlist.tsx
-msgid "Here is an update on the tokens in your watchlist:"
-msgstr ""
+#~ msgid "Here is an update on the tokens in your watchlist:"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
@@ -2006,8 +2051,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
-msgstr ""
+#~ msgid "Netflow (Inflow - Outflow) of token to centralized exchanges. <0>Positive netflow0> means that more traders are depositing tokens than withdrawing, most likely for selling. <1>Negative netflow1> means that more traders are withdrawing tokens than depositing, most likely for holding or staking."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated failed"
@@ -2015,12 +2060,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "This transaction is higher than >$100k"
-msgstr ""
+#~ msgid "This transaction is higher than >$100k"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display live chart."
-msgstr ""
+#~ msgid "Turn on to display live chart."
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "Expanded results from inactive Token Lists"
@@ -2028,15 +2073,19 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Trending Soon"
-msgstr ""
+#~ msgid "Trending Soon"
+#~ msgstr ""
#: src/components/YourCampaignTransactionsModal/index.tsx
#~ msgid "You haven't made any eligible transactions yet."
#~ msgstr ""
-#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-#~ msgid "Search"
+#: src/components/SwapForm/SwapActionButton/index.tsx
+msgid "You need to first give a temporary 24H approval to KyberSwap's smart contract to use your {0}. This doesn't require a gas fees. <0>Read more ↗0>"
+msgstr ""
+
+#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
+#~ msgid "Search"
#~ msgstr ""
#: src/components/Tutorial/index.tsx
@@ -2060,23 +2109,23 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Create New Pool"
-msgstr ""
+#~ msgid "Create New Pool"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "The price is deviating quite a lot from that market price, please be careful!"
-msgstr "该价格与该市场价格有相当大的偏差,请注意!"
+#~ msgid "The price is deviating quite a lot from that market price, please be careful!"
+#~ msgstr "该价格与该市场价格有相当大的偏差,请注意!"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Your fees are being automatically compounded so you earn more."
-msgstr ""
+#~ msgid "Your fees are being automatically compounded so you earn more."
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
#: src/pages/MyEarnings/Positions.tsx
-msgid "My Liquidity Positions"
-msgstr ""
+#~ msgid "My Liquidity Positions"
+#~ msgstr ""
#: src/pages/NotificationCenter/PrivateAnnouncement.tsx
msgid "Connect wallet to view notification"
@@ -2091,16 +2140,20 @@ msgid "Note: Your currently existing order is {percent}% filled"
msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "Participate in our campaigns"
-msgstr ""
+#~ msgid "Participate in our campaigns"
+#~ msgstr ""
#: src/components/SlippageWarningNote/index.tsx
-msgid "<0>Slippage0><1> {msg}1>"
+#~ msgid "<0>Slippage0><1> {msg}1>"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/ListLimitOrder/TabSelector.tsx
+msgid "Open Limit Orders"
msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Market Price"
-msgstr ""
+#~ msgid "Market Price"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Search by token symbol or token address"
@@ -2119,12 +2172,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
-msgstr ""
+#~ msgid "Ready to experience <0>KyberAI0>? <1/>Get alpha before it happens."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "KyberAI Banner"
-msgstr ""
+#~ msgid "KyberAI Banner"
+#~ msgstr ""
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
@@ -2132,8 +2185,6 @@ msgstr ""
msgid "Insufficient {s} balance"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
msgid "You will receive"
msgstr "您将收到"
@@ -2143,12 +2194,16 @@ msgid "Wrap Error"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Amplified Liquidity Pools"
+#~ msgid "Amplified Liquidity Pools"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Total Amount includes all affected funds under Category 1, 2 & 4 and unrecovered funds under Category 3 & 5 (USD value subject to change based on Grant Terms)."
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm"
+#~ msgstr ""
#: src/components/ErrorBoundary/FallbackView.tsx
msgid "Create an issue on GitHub"
@@ -2202,8 +2257,8 @@ msgid "Total Balance"
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding Rate on Centralized Exchanges."
-msgstr ""
+#~ msgid "Funding Rate on Centralized Exchanges."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Your output amount is invalid."
@@ -2218,8 +2273,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↓"
-msgstr ""
+#~ msgid "FEES ↓"
+#~ msgstr ""
#: src/pages/TrueSight/components/Chart.tsx
#~ msgid "1D"
@@ -2231,25 +2286,25 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Collapse All"
-msgstr ""
+#~ msgid "Collapse All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Copy token address"
-msgstr ""
+#~ msgid "Copy token address"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Explore with <0>KyberAI0> here!"
-msgstr ""
+#~ msgid "Explore with <0>KyberAI0> here!"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
-msgstr ""
+#~ msgid "Hey KyberAI Beta Users, <0/><1/><2>Your feedback is vital to us!2> Help shape the future of KyberAI by completing our short Beta Feedback Survey <3>here3>. Your input will help us meet your trading needs better! <4/><5/>As a token of appreciation, we will distribute a total of <6>400 KNC6> among the top 20 feedback respondents"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Applicable to KyberSwap Classic"
@@ -2267,8 +2322,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "My Watchlist"
-msgstr ""
+#~ msgid "My Watchlist"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
msgid "Classic Farms"
@@ -2279,12 +2334,12 @@ msgid "Delegate Address"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
-msgstr ""
+#~ msgid "We adjust trading fees dynamically based on market conditions to give you the best returns."
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Earning Charts"
-msgstr ""
+#~ msgid "Earning Charts"
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Loading Campaigns ..."
@@ -2295,21 +2350,21 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Fees (24h)"
-msgstr ""
+#~ msgid "Fees (24h)"
+#~ msgstr ""
#: src/components/ElasticHackedModal.tsx
msgid "Go to My Pool"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↑"
-msgstr ""
+#~ msgid "VOLUME ↑"
+#~ msgstr ""
#: src/components/Header/groups/AnalyticNavGroup.tsx
#: src/components/Menu/index.tsx
-msgid "Aggregator"
-msgstr ""
+#~ msgid "Aggregator"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/TradePrice.tsx
msgid "Unable to get the market price"
@@ -2318,8 +2373,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this pool with your friends!"
-msgstr ""
+#~ msgid "Share this pool with your friends!"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#: src/components/Menu/index.tsx
@@ -2327,12 +2382,12 @@ msgid "Faucet"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
-msgid "Don't have a wallet? <0>Get started here0>"
-msgstr ""
+#~ msgid "Don't have a wallet? <0>Get started here0>"
+#~ msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Increase Amount"
-msgstr ""
+#~ msgid "Increase Amount"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "You can choose to see currently trending tokens over the last 24 hours or 7 days"
@@ -2355,8 +2410,8 @@ msgid "Whitelisted Function"
msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
-msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
-msgstr ""
+#~ msgid "Before you can subscribe to KyberAI notifications, you need to be whitelisted. Register for KyberAI <0>here0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -2390,12 +2445,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
-msgstr ""
+#~ msgid "Once you have unstaked your liquidity from the farm, you can finally withdraw your liquidity (from the farming contract) by clicking the <0>Withdraw0> button."
+#~ msgstr ""
#: src/pages/TrueSightV2/utils/index.tsx
-msgid "Error occur, please try again."
-msgstr ""
+#~ msgid "Error occur, please try again."
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
@@ -2446,8 +2501,8 @@ msgstr "最大值"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bearish"
-msgstr ""
+#~ msgid "Bearish"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Projects Leaderboard"
@@ -2476,7 +2531,6 @@ msgid "Gasless Edit"
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
msgid "Estimated network fee for your transaction."
msgstr ""
@@ -2484,8 +2538,6 @@ msgstr ""
msgid "Est. Market Price"
msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "<0>Slippage0><1>is high. Your transaction may be front-run1>"
@@ -2507,13 +2559,13 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Exchange"
-msgstr ""
+#~ msgid "Exchange"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Estimated return based on yearly fees of the pool."
-msgstr ""
+#~ msgid "Estimated return based on yearly fees of the pool."
+#~ msgstr ""
#: src/components/NetworkSelector.tsx
msgid "Choose a chain"
@@ -2528,8 +2580,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Amount held"
-msgstr ""
+#~ msgid "Amount held"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/components/Header/web3/SelectWallet.tsx
@@ -2563,10 +2615,14 @@ msgstr ""
#~ msgid "Connect Wallet"
#~ msgstr "连接钱包"
+#: src/components/SwapForm/SlippageSettingGroup.tsx
+msgid "Gas Token"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
-msgstr ""
+#~ msgid "Once a farm has ended, you will continue to receive returns through LP Fees."
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
#~ msgid ""
@@ -2619,8 +2675,8 @@ msgid "Total Liquidity Amount<0/>(USD)"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Disclaimer: The information here should not be treated as any form of financial advice."
-msgstr ""
+#~ msgid "Disclaimer: The information here should not be treated as any form of financial advice."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/AcceptChangesNotice.tsx
#~ msgid "Price Updated"
@@ -2635,8 +2691,8 @@ msgstr ""
#~ msgstr "池| 放大系数"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Support & Resistance Levels"
-msgstr ""
+#~ msgid "Support & Resistance Levels"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC is only available on Ethereum chain"
@@ -2692,8 +2748,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Current price"
-msgstr ""
+#~ msgid "Current price"
+#~ msgstr ""
#: src/components/Header/web3/SelectNetwork.tsx
msgid "Unsupported by your wallet."
@@ -2701,16 +2757,14 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Add Liquidity Error"
-msgstr ""
+#~ msgid "Add Liquidity Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "{0} users are ahead of you!"
-msgstr ""
+#~ msgid "{0} users are ahead of you!"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Maybe later"
msgstr ""
@@ -2719,7 +2773,6 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-#: src/pages/TrueSightV2/components/DisplaySettings.tsx
msgid "Display Settings"
msgstr ""
@@ -2730,7 +2783,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 3D KyberScores"
+#~ msgid "Last 3D KyberScores"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "You are currently claiming"
+msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Rethink"
msgstr ""
#: src/components/SwapForm/MultichainKNCNote.tsx
@@ -2750,12 +2812,12 @@ msgid "Hard Cancel Instead"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Deposit Amounts"
-msgstr ""
+#~ msgid "Deposit Amounts"
+#~ msgstr ""
#: src/components/KyberAITokenBanner/index.tsx
-msgid "Want to know the <0>KyberScore0> for {0}?"
-msgstr ""
+#~ msgid "Want to know the <0>KyberScore0> for {0}?"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -2763,19 +2825,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Address"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Harvest0> your farming rewards whenever you want."
-msgstr ""
+#~ msgid "<0>Harvest0> your farming rewards whenever you want."
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "You have successfully turned on MEV Protection Mode. All transactions on Ethereum will go through the custom RPC endpoint unless you change it"
@@ -2783,21 +2842,21 @@ msgstr ""
#: src/pages/PoolFinder/index.tsx
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "Add liquidity"
-msgstr "添加流动性"
+#~ msgid "Add liquidity"
+#~ msgstr "添加流动性"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Daily Range"
-msgstr ""
+#~ msgid "Daily Range"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/index.tsx
msgid "We will use our Aggregator to regularly monitor price changes based on your alert conditions below. When the price alert is triggered, we will send you a notification"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bullish:"
-msgstr ""
+#~ msgid "Bullish:"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "Est. Market Price:"
@@ -2824,8 +2883,8 @@ msgid "Stake liquidity into farm"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
-msgstr ""
+#~ msgid "This indicates that range is idle. Staked positions in this range is still earning small amount of rewards."
+#~ msgstr ""
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -2842,23 +2901,23 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Below is a list of your affected liquidity positions"
-msgstr ""
+#~ msgid "Below is a list of your affected liquidity positions"
+#~ msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
#: src/pages/TrueSightV2/components/KyberAIShareModal.tsx
-msgid "Share this with your friends!"
-msgstr ""
+#~ msgid "Share this with your friends!"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Add Liquidity ↗"
-msgstr ""
+#~ msgid "Add Liquidity ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
-msgstr ""
+#~ msgid "Note: These are estimated support / resistance levels only and should not be considered as financial advice"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/ItemCardGroup.tsx
#~ msgid "Show less {0} - {1} pools"
@@ -2874,20 +2933,20 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Eligible"
-msgstr ""
+#~ msgid "Eligible"
+#~ msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Campaigns"
-msgstr ""
+#~ msgid "Trading Campaigns"
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
msgid "There is a chance that during your transfer another high volume transaction utilizes the available liquidity. As a result, for the unavailable liquidity, you may receive 'anyToken' from Multichain. You can exchange your 'anyToken' when the Multichain pool has sufficient liquidity."
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Bearish Tokens"
-msgstr ""
+#~ msgid "Top Bearish Tokens"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Note: Farms will run in <0>multiple phases0>. Once the current phase ends, you can harvest your rewards from the farm in the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -2898,8 +2957,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Reached max limit."
-msgstr ""
+#~ msgid "Reached max limit."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
msgid "Swaps"
@@ -2933,8 +2992,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Trading Volume"
-msgstr ""
+#~ msgid "Trading Volume"
+#~ msgstr ""
#: src/pages/TrueSight/TrendingSoonHero.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
@@ -2942,17 +3001,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Update"
-msgstr ""
+#~ msgid "Update"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
-msgstr ""
+#~ msgid "Efficiency Comparison: Full range positions may earn less fees than concentrated positions."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "1Y Range"
-msgstr ""
+#~ msgid "1Y Range"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Try refreshing the price rate or increase max slippage."
@@ -2964,14 +3023,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Max Price"
msgstr ""
@@ -2980,8 +3032,8 @@ msgid "TOKEN UTILITY"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "If you wish to unstake your liquidity position from the farm, click on the <0>Unstake 0> button on the card. Any rewards you have earned will be automatically harvested and sent to your wallet.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Your Verified Account: <0>@{0}0>"
@@ -3002,15 +3054,15 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Create a new pool or select another pair of tokens to view the available pools."
-msgstr "创建新的池或选择另一个代币对已查看可用池。"
+#~ msgid "Create a new pool or select another pair of tokens to view the available pools."
+#~ msgstr "创建新的池或选择另一个代币对已查看可用池。"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
-"number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
-"time period can indicate that the token is bullish and vice-versa."
-msgstr ""
+#~ msgid ""
+#~ "Indicates the number of trades and type of trades (buy or sell) over a time period. An increase in the\n"
+#~ "number of trades may indicate more interest in the token and vice-versa. Similarly, more buy trades in a\n"
+#~ "time period can indicate that the token is bullish and vice-versa."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -3023,8 +3075,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity"
-msgstr ""
+#~ msgid "Stake your liquidity"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "You don't have any open orders yet."
@@ -3035,25 +3087,24 @@ msgid "{pendingLength} Pending"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Welcome to <0/>KyberAI"
-msgstr ""
+#~ msgid "Welcome to <0/>KyberAI"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Active"
-msgstr "活跃"
+#~ msgid "Active"
+#~ msgstr "活跃"
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
-msgstr ""
+#~ msgid "For a farm with a pre-configured price range of 0.6-0.8, your liquidity positions lower range must be ≤0.6 and upper range must be ≥0.8"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "You will accumulate farming rewards as long as your liquidity position is active."
#~ msgstr ""
#: src/components/PoolPriceBar/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Share of Pool"
msgstr "池的份额"
@@ -3066,8 +3117,8 @@ msgstr "池的份额"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Cancel without paying gas."
@@ -3082,13 +3133,13 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Refresh the page then try to connect to {walletName} again"
-msgstr ""
+#~ msgid "Refresh the page then try to connect to {walletName} again"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
-msgstr ""
+#~ msgid "Tradable token pair price range for this pool based on AMP. If the price goes below or above this range, the pool may become inactive"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Self-destruct"
@@ -3097,8 +3148,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Enter amp (>=1)"
-msgstr "输入 amp (>=1)"
+#~ msgid "Enter amp (>=1)"
+#~ msgstr "输入 amp (>=1)"
#: src/components/SubscribeButton/NotificationPreference/ActionButtons.tsx
#~ msgid "Generating Verification Link ..."
@@ -3113,8 +3164,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Go back Ranking page"
-msgstr ""
+#~ msgid "Go back Ranking page"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/AlertCondition.tsx
msgid "on"
@@ -3129,8 +3180,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
-msgstr ""
+#~ msgid "<0>With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing <1>thousands of tokens and billions of data points1>, putting you ahead of the curve. 0><2>Whether you're a seasoned retail trader, just starting out or somewhere in between, <3>KyberAI can give you a competitive edge in trading.3>2>"
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "After force withdrawing your liquidity position from the farm, remember <0>not0> to re-stake this in the farm."
@@ -3141,8 +3192,8 @@ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-msgid "Volume (24h)"
-msgstr "交易量(24小时)"
+#~ msgid "Volume (24h)"
+#~ msgstr "交易量(24小时)"
#:
#:
@@ -3154,39 +3205,38 @@ msgid "Gasless Cancel All Orders"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are locked as they are currently vesting."
-msgstr ""
+#~ msgid "The amount of rewards that are locked as they are currently vesting."
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "There was an issue while trying to confirm your price. <0>Permit signature invalid0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Upcoming Farms"
-msgstr ""
+#~ msgid "Upcoming Farms"
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "Go to Farms ↗"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm Ended"
-msgstr ""
+#~ msgid "Farm Ended"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "<0>MEV0> Protection safeguards you from front-running attacks on Ethereum. We suggest you employing the <1>RPC endpoint1> of reliable third-parties such as <2>Flashbots2> or <3>MEVBlocker3>.<4/><5/>Note that adding the RPC endpoint automatically is only available via the MetaMask wallet. If you would like to add the RPC endpoint to your wallet manually, please refer to this <6>guide6>."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
-msgstr ""
+#~ msgid "Deposit your liquidity positions (NFT tokens) first to enable farming. Only your in range liquidity positions (NFT tokens) will earn you farming rewards"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap Out"
msgstr ""
#: src/components/NavigationTabs/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
msgid "Create a new pool"
msgstr "创建新的池"
@@ -3200,8 +3250,8 @@ msgstr "创建新的池"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Idle Range"
-msgstr ""
+#~ msgid "Idle Range"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
msgid "Error {summary}."
@@ -3225,8 +3275,8 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
-msgstr ""
+#~ msgid "To join the Farm, you must approve the <0>KyberSwap Farming contract0> to let it access your liquidity positions."
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/hooks/kyberdao/index.tsx
@@ -3243,12 +3293,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Trending Soon Tokens"
-msgstr ""
+#~ msgid "Trending Soon Tokens"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Claim Rewards"
-msgstr ""
+#~ msgid "Step 4: Claim Rewards"
+#~ msgstr ""
#: src/components/WalletPopup/type.ts
#: src/components/WalletPopup/WalletView.tsx
@@ -3269,8 +3319,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/MyEarnings/ClassicPools/index.tsx
-msgid "Pool | AMP"
-msgstr ""
+#~ msgid "Pool | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "Connect a wallet"
@@ -3289,22 +3339,25 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
-msgid "Add {0} to {1}"
-msgstr ""
+#~ msgid "Add {0} to {1}"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards you have already claimed"
+#~ msgid "The amount of rewards you have already claimed"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Your assets are spread across various networks. Kindly choose the relevant network and proceed with the claiming process."
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Live Chart"
-msgstr ""
+#~ msgid "Live Chart"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Risky Item"
msgstr ""
-#: src/components/SwapForm/index.tsx
#: src/pages/NotificationCenter/PriceAlerts/CommonSingleAlert.tsx
#: src/pages/NotificationCenter/PriceAlerts/TitleOnMobile.tsx
msgid "Price Alert"
@@ -3312,8 +3365,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/SmallKyberScoreMeter.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore is not applicable for stablecoins."
-msgstr ""
+#~ msgid "KyberScore is not applicable for stablecoins."
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "My Positions"
@@ -3325,8 +3378,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Join KyberAI Waitlist"
-msgstr ""
+#~ msgid "Join KyberAI Waitlist"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "from"
@@ -3337,20 +3390,20 @@ msgid "User denied message signature"
msgstr ""
#: src/pages/MyEarnings/Placeholder.tsx
-msgid "Connect your wallet to view your earnings!"
-msgstr ""
+#~ msgid "Connect your wallet to view your earnings!"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
-msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
-msgstr ""
+#~ msgid "You need to first give a temporary 24H approval to KyberSwaps smart contract to use your {0}. This doesnt require a gas fees. <0>Read more ↗0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "You have successfully cancelled all orders."
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Trending soon"
-msgstr ""
+#~ msgid "Trending soon"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Step 1 - Stake KNC on KyberDAO<0/>Step 2 - Trade on KyberSwap"
@@ -3361,16 +3414,16 @@ msgid "You are not signed in with this wallet address. If you wish, you can <0>s
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Collapse"
-msgstr ""
+#~ msgid "Collapse"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#~ msgid "minutes"
#~ msgstr "分钟"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
-msgstr ""
+#~ msgid "Unstake your liquidity positions (i.e. your NFT tokens) from the farm."
+#~ msgstr ""
#: src/pages/Pools/ModalEthPoWAck.tsx
#~ msgid "We don't recommend you create a pool and add liquidity on Ethereum PoW"
@@ -3381,29 +3434,29 @@ msgstr ""
#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "Fee Range"
-msgstr "费用范围"
+#~ msgid "Fee Range"
+#~ msgstr "费用范围"
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "profile <0>{currentProfileName}0>"
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "Top Tokens by KyberAI"
-msgstr ""
+#~ msgid "Top Tokens by KyberAI"
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "Where you can store KNC"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↑"
-msgstr ""
+#~ msgid "MY REWARD ↑"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Harvesting rewards"
-msgstr ""
+#~ msgid "Harvesting rewards"
+#~ msgstr ""
#: src/components/Vesting/ProMMVesting.tsx
#: src/components/Vesting/index.tsx
@@ -3422,12 +3475,12 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-msgid "Maintainance"
-msgstr ""
+#~ msgid "Maintainance"
+#~ msgstr ""
#: src/components/PoolList/index.tsx
-msgid "My liquidity"
-msgstr "我的流动性"
+#~ msgid "My liquidity"
+#~ msgstr "我的流动性"
#: src/components/Header/web3/WalletModal/index.tsx
msgid "and"
@@ -3442,8 +3495,8 @@ msgid "No price alerts created yet"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Full unlocked"
-msgstr ""
+#~ msgid "Full unlocked"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
@@ -3452,8 +3505,8 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Deposit"
-msgstr "我的存款"
+#~ msgid "My Deposit"
+#~ msgstr "我的存款"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Search from over 4000+ tokens on 7 chains"
@@ -3477,27 +3530,27 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Example"
-msgstr ""
+#~ msgid "Example"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number"
-msgstr ""
+#~ msgid "Number"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "New Amount Accepted"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Stake in a farm"
-msgstr ""
+#~ msgid "Step 3: Stake in a farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Token pair"
-msgstr ""
+#~ msgid "Token pair"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "My Staked Pools"
@@ -3518,12 +3571,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time Low"
-msgstr ""
+#~ msgid "All Time Low"
+#~ msgstr ""
#: src/pages/MyEarnings/ChainSelect.tsx
-msgid "Current Chain"
-msgstr ""
+#~ msgid "Current Chain"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Your transaction may not be successful. We recommend increasing the slippage for this trade"
@@ -3542,13 +3595,14 @@ msgstr ""
msgid "Stake Information"
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/WalletPopup/SendToken/index.tsx
msgid "Recipient"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
-msgstr ""
+#~ msgid "Stake your deposited liquidity positions (NFT tokens) into the farms to start earning rewards. Only your in-range positions will earn rewards"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/MeetTheTeam.tsx
msgid "Meet the team"
@@ -3558,17 +3612,19 @@ msgstr ""
msgid "Kyber Network and its products like KyberSwap are governed by the community through KyberDAO, a Decentralized Autonomous Organization. KNC holders stake KNC tokens to vote on governance proposals that shape Kyber‘s future and earn KNC rewards from trading fees."
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 2. Choose Price Range"
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+msgid "L2 execution fee"
msgstr ""
+#: src/components/ElasticZap/QuickZap.tsx
+#~ msgid "Step 2. Choose Price Range"
+#~ msgstr ""
+
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Failed to send a verification code to <0>{email}0>. Please click Resend to try again"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
msgid "Force Withdraw"
msgstr ""
@@ -3578,37 +3634,40 @@ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
-msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
-msgstr ""
+#~ msgid "You can select the appropriate fee tier for your pool. For each trade that uses this liquidity pool, liquidity providers will earn this trading fee."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
msgid "Last updated: {0}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "Please connect your wallet to view your affected position(s). If your Affected Address is a Multisig or other Contracts, you won’t be able to complete the steps via the UI. Instead, please contact us at <0>support@kyberswap.com0>"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "TXN HASH"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
-msgstr ""
+#~ msgid "<0>KyberScore - our unique insight uses our Machine Learning algorithms0> and multiple on-chain and off-chain indicators to identify whether a token is going to be <1>Bullish1> or <2>Bearish2> in the short term."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "New Liquidity Amount"
-msgstr ""
+#~ msgid "New Liquidity Amount"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Download a wallet"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↑"
-msgstr ""
+#~ msgid "MY DEPOSIT ↑"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
msgid "During your swap if the price changes by more than this %, your transaction will revert. Read more <0>here ↗0>."
msgstr ""
@@ -3618,16 +3677,16 @@ msgid "Market Info"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Remove Watchlist"
-msgstr ""
+#~ msgid "Remove Watchlist"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Go to <0>Stake0>"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "APR for each Farming Range"
-msgstr ""
+#~ msgid "APR for each Farming Range"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
#~ msgid "Insufficient W{0} balance"
@@ -3646,8 +3705,8 @@ msgid "My Current Position"
msgstr ""
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Unsupported Asset"
-msgstr ""
+#~ msgid "Unsupported Asset"
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
#~ msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards"
@@ -3663,7 +3722,11 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgid "You don't have any liquidity positions (NFT tokens) for this farming pair yet.<0/><1/>Add liquidity to this pool first on our <2>Pools2> page, then stake your liquidity positions (NFT tokens) to start earning rewards"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "You have chosen option {selectedOption} for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/index.tsx
@@ -3687,12 +3750,12 @@ msgid "Your Transactions"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets with more than $5m in assets across multiple chains."
-msgstr ""
+#~ msgid "Wallets with more than $5m in assets across multiple chains."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
-msgstr ""
+#~ msgid "{feeApr}% LP Fee + {farmApr}% Rewards"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3713,16 +3776,16 @@ msgid "Your import token (click to copy)"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Select Override Wallets"
-msgstr ""
+#~ msgid "Select Override Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "As Liquidity Providers, you can now supply liquidity to a pool within a custom price range. This allows your liquidity to be used more efficiently. Consequently, you will earn more trading fees on your liquidity."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Spread the word, and get rewarded for it!"
-msgstr ""
+#~ msgid "Spread the word, and get rewarded for it!"
+#~ msgstr ""
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
msgid "Transaction History"
@@ -3749,8 +3812,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "VOLUME ↓"
-msgstr ""
+#~ msgid "VOLUME ↓"
+#~ msgstr ""
#: src/pages/Bridge/index.tsx
msgid "Bridge"
@@ -3761,8 +3824,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get {pairSymbol} ↗"
-msgstr ""
+#~ msgid "Get {pairSymbol} ↗"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Ongoing"
@@ -3778,11 +3841,10 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Levels"
-msgstr ""
+#~ msgid "Levels"
+#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
msgid "Feature Request"
msgstr ""
@@ -3795,12 +3857,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 3: Deposit liquidity to Farming contract"
-msgstr ""
+#~ msgid "Step 3: Deposit liquidity to Farming contract"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
-msgid "Stablecoins"
-msgstr ""
+#~ msgid "Stablecoins"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/LiquiditySourcesSetting.tsx
msgid "Your trade is routed through one or more of these liquidity sources."
@@ -3811,13 +3873,17 @@ msgid "KyberDAO is a community platform that allows KNC token holders to partici
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
-msgstr ""
+#~ msgid "<0>Create a watchlist of your favorite tokens0>, and analyze them quickly."
+#~ msgstr ""
#:
#~ msgid "We gives liquidity providers the option of choosing between two liquidity protocols so they can earn passive income - KyberSwap Elastic and KyberSwap Classic. Simply deposit your liquidity and start earning."
#~ msgstr ""
+#: src/components/Header/groups/SwapNavGroup.tsx
+msgid "Trade"
+msgstr ""
+
#: src/pages/About/AboutKNC.tsx
msgid "Stake KNC, Vote, Earn Rewards."
msgstr ""
@@ -3842,15 +3908,14 @@ msgstr ""
msgid "Due to a <0><1>potential issue1>0> with our legacy Elastic protocol, we recommend that all liquidity providers withdraw their liquidity from Elastic Pools (Legacy). We have fixed all the issues and deployed the new and audited <2>Elastic Pools2> where you can add liquidity normally instead."
msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "Orders refresh in"
+msgstr ""
+
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts Created:"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Stake"
msgstr ""
@@ -3880,8 +3945,8 @@ msgid "Risky Item(s)"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Invalid range selected. The min price must be lower than the max price."
-msgstr ""
+#~ msgid "Invalid range selected. The min price must be lower than the max price."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/components/TransactionSettings/index.tsx
@@ -3907,8 +3972,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Netflow"
-msgstr ""
+#~ msgid "24h Netflow"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking KNC"
@@ -3926,22 +3991,26 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Add your liquidity into one of the farming ranges to participate in Elastic Static Farm. Only positionsthat cover the range of the farm will earn maximum rewards. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Identify the <0>Elastic farm0> you would like to participate in"
-msgstr ""
+#~ msgid "Identify the <0>Elastic farm0> you would like to participate in"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake + Vote"
msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "My Dashboard"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 2: Approve the Farming contract"
-msgstr ""
+#~ msgid "Step 2: Approve the Farming contract"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -3950,12 +4019,12 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
-msgstr ""
+#~ msgid "Liquidity providers will earn this trading fee for each trade that uses this pool"
+#~ msgstr ""
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Static Fees"
-msgstr ""
+#~ msgid "Static Fees"
+#~ msgstr ""
#: src/components/SwapForm/SlippageSettingGroup.tsx
msgid "Add MEV Protection"
@@ -3966,24 +4035,24 @@ msgid "Where you can buy KNC"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for stable pairs"
-msgstr ""
+#~ msgid "Best for stable pairs"
+#~ msgstr ""
#: src/pages/Oauth/Consent.tsx
msgid "Checking data"
msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Elastic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Sell"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards by clicking the harvest button."
-msgstr ""
+#~ msgid "Claim your farming rewards by clicking the harvest button."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/TableHeader.tsx
msgid "FILLED % | STATUS"
@@ -3992,16 +4061,16 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
-msgstr ""
+#~ msgid "Zapping {0} {1} into {2} {symbol0} and {3} {symbol1} of liquidity to the pool"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "The token cannot be bridged to this chain"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Here you can update your liquidity positions after you had increased its liquidity."
-msgstr ""
+#~ msgid "Here you can update your liquidity positions after you had increased its liquidity."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "24H Trading Volume"
@@ -4031,11 +4100,10 @@ msgid "Wrong Network"
msgstr "错误的网络"
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Identify the Classic farm you would like to participate in."
-msgstr ""
+#~ msgid "Identify the Classic farm you would like to participate in."
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Staked LP Tokens"
msgstr ""
@@ -4044,12 +4112,12 @@ msgid "VALUE"
msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool"
-msgstr ""
+#~ msgid "View Pool"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can claim your reward by clicking on the <0>Harvest0> button"
-msgstr ""
+#~ msgid "You can claim your reward by clicking on the <0>Harvest0> button"
+#~ msgstr ""
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
@@ -4077,16 +4145,16 @@ msgid "Max Price of your range is {maxPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Farm ended"
-msgstr ""
+#~ msgid "Farm ended"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Active Alerts:"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Available Farming Range"
-msgstr ""
+#~ msgid "Available Farming Range"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
@@ -4106,8 +4174,8 @@ msgid "A {feePercent} fee ({feeAmountText}) will incur on this swap. The Est. Ou
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Rewards Breakdown"
-msgstr ""
+#~ msgid "Rewards Breakdown"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is High"
@@ -4142,8 +4210,8 @@ msgid "Your import token"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Feeling exhausted <0>managing your emotions?0>"
-msgstr ""
+#~ msgid "Feeling exhausted <0>managing your emotions?0>"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#: src/components/Menu/index.tsx
@@ -4164,11 +4232,9 @@ msgid "The contract address that will be executing the swap. You can verify the
msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
-msgstr ""
+#~ msgid "Whether you're looking to identify new tokens to trade, or get <0>alpha0> on a specific token, KyberAI has it all! It provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>"
+#~ msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/WalletPopup/RewardCenter.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund"
@@ -4183,8 +4249,8 @@ msgid "Cross-chain rate is"
msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Unable to calculate0><1>Price Impact1>"
-msgstr ""
+#~ msgid "<0>Unable to calculate0><1>Price Impact1>"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#~ msgid "Min Price of your range is {minPrice} USDT per stMatic"
@@ -4203,7 +4269,6 @@ msgid "Default Options"
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Stake KNC"
@@ -4224,8 +4289,8 @@ msgstr ""
#~ msgstr "KNC有哪些用途?"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No KYC or sign-ups required."
-msgstr ""
+#~ msgid "No KYC or sign-ups required."
+#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
#~ msgid "Get {0}-{1} {2} LP ↗"
@@ -4236,7 +4301,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
msgid "Your position has 0 liquidity, and is not earning fees"
msgstr ""
@@ -4249,8 +4313,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfActivePositions} Active"
-msgstr ""
+#~ msgid "{numOfActivePositions} Active"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Rewards successfully claimed."
@@ -4261,12 +4325,12 @@ msgid "Are limit orders and cross-chain swaps eligible for gas refunds?"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Harvest your farming rewards"
-msgstr ""
+#~ msgid "Step 5: Harvest your farming rewards"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Live Trades"
-msgstr ""
+#~ msgid "Live Trades"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
@@ -4274,7 +4338,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "No results found."
msgstr "未找到结果。"
@@ -4283,8 +4346,8 @@ msgstr "未找到结果。"
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "BONUS REWARDS"
-msgstr ""
+#~ msgid "BONUS REWARDS"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "{0} removed"
@@ -4295,30 +4358,29 @@ msgid "Subscribe to receive notifications on your bridge transaction."
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Step 1. Deposit Your Liquidity"
-msgstr ""
+#~ msgid "Step 1. Deposit Your Liquidity"
+#~ msgstr ""
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
#: src/components/FeeSelector/index.tsx
-msgid "Best for most pairs"
-msgstr ""
+#~ msgid "Best for most pairs"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Approving {0}"
-msgstr ""
+#~ msgid "Approving {0}"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ShareTotalEarningsButton.tsx
msgid "My Total Earnings"
msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total earnings from both pool and farm (if applicable)."
-msgstr ""
+#~ msgid "Total earnings from both pool and farm (if applicable)."
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "<0>Advanced Mode0> turns off the 'Confirm' transaction prompt and allows high slippage trades that can result in bad rates and lost funds."
@@ -4343,14 +4405,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "All Time High"
-msgstr ""
+#~ msgid "All Time High"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/ProAmmPools/index.tsx
#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm"
#~ msgstr ""
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
#: src/pages/Bridge/BridgeTransferHistory/TransferHistoryTable/Mobile.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Desktop.tsx
#: src/pages/CrossChain/TransfersHistory/HistoryTable/Mobile.tsx
@@ -4371,12 +4435,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Deposit Farm Error"
-msgstr ""
+#~ msgid "Deposit Farm Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
-msgid "Connect your wallet to view this insight"
-msgstr ""
+#~ msgid "Connect your wallet to view this insight"
+#~ msgstr ""
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Resend"
@@ -4414,25 +4478,27 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Insufficient Balance"
-msgstr ""
+#~ msgid "Insufficient Balance"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-msgid "Last 3D Kyberscores"
-msgstr ""
+#~ msgid "Last 3D Kyberscores"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/Farm/index.tsx
#: src/pages/KyberDAO/Vote/SelectProposalStatus.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "All"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "All Tokens ({totalToken})"
+#~ msgid "All Tokens ({totalToken})"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose option successfully"
msgstr ""
#: src/state/mint/proamm/hooks.tsx
@@ -4440,8 +4506,8 @@ msgid "Position {0}: Invalid amount"
msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "View all"
-msgstr ""
+#~ msgid "View all"
+#~ msgstr ""
#:
#~ msgid "Rewards: {0} {1}"
@@ -4515,8 +4581,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
-msgstr ""
+#~ msgid "You will need to unstake your liquidity positions (NFT tokens) first before withdrawing it back to your wallet"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/CrossChain.tsx
msgid "has been successfully swapped"
@@ -4531,31 +4597,30 @@ msgid "Sell Tax"
msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Add liquidity to the pool using a single token"
-msgstr ""
+#~ msgid "Add liquidity to the pool using a single token"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Set"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top CEX Negative Netflow"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Learn More"
-msgstr ""
+#~ msgid "Learn More"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#: src/pages/Pools/index.tsx
-msgid "Video Tutorial"
-msgstr ""
+#~ msgid "Video Tutorial"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
#: src/components/WalletPopup/Transactions/index.tsx
-#: src/pages/MyEarnings/PoolEarningsSection.tsx
msgid "Others"
msgstr ""
@@ -4563,10 +4628,15 @@ msgstr ""
#~ msgid "This campaign does not have a leaderboard yet."
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/VestingClaimModal.tsx
+msgid "Claim Asset"
+msgstr ""
+
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake Selected"
-msgstr ""
+#~ msgid "Unstake Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
msgid "Customize the Expiry Time"
@@ -4577,8 +4647,8 @@ msgid "Are you sure you want to delete all {notificationName}?"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
-msgstr ""
+#~ msgid "The total amount of rewards you have harvested from the farms. Harvested rewards are locked initially and vested linearly over a short period."
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
@@ -4596,24 +4666,14 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity"
-msgstr ""
+#~ msgid "Unstake your liquidity"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/NavigationTabs/index.tsx
-#: src/components/PositionCard/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Add Liquidity"
msgstr "添加流动性"
-#: src/components/Header/web3/WalletModal/WarningBox.tsx
#: src/components/SwapForm/TradeSummary.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
msgid "here"
msgstr "这里"
@@ -4622,19 +4682,13 @@ msgid "Find out more"
msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "Share this list of pools with your friends"
-msgstr ""
+#~ msgid "Share this list of pools with your friends"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Modifiable Anti Whale"
msgstr ""
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Unstake"
msgstr ""
@@ -4648,14 +4702,14 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "here ↗"
-msgstr ""
+#~ msgid "here ↗"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "{0} seems to be <0>{1}0>"
-msgstr ""
+#~ msgid "{0} seems to be <0>{1}0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "A verification email has been sent to your email address. Please check your inbox to verify your email."
@@ -4676,7 +4730,12 @@ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's get started"
+#~ msgid "Let's get started"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 1"
msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
@@ -4700,8 +4759,8 @@ msgstr ""
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Favourites"
-msgstr ""
+#~ msgid "Favourites"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
#: src/pages/AddLiquidityV2/constants.ts
@@ -4711,22 +4770,20 @@ msgid "Suitable for pairs with high price volatility. Although you always earn t
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Reset"
-msgstr ""
+#~ msgid "Reset"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "<0>Price Impact0> is very high. You will lose funds! {0}"
msgstr ""
#: src/components/WalletPopup/WalletView.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Open scan explorer"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Under development and unsupported by most wallets."
-msgstr ""
+#~ msgid "Under development and unsupported by most wallets."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "Request"
@@ -4734,8 +4791,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Website"
-msgstr ""
+#~ msgid "Website"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred. Please try increasing max slippage."
@@ -4760,16 +4817,16 @@ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 6: Unstake liquidity from a farm"
-msgstr ""
+#~ msgid "Step 6: Unstake liquidity from a farm"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/index.tsx
#~ msgid "No token found. Try turn off truesight."
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Token Rankings"
-msgstr ""
+#~ msgid "Token Rankings"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Any and all decisions made by KyberSwap in relation to every aspect of the program shall be final and conclusive."
@@ -4792,7 +4849,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees."
msgstr ""
@@ -4828,7 +4884,6 @@ msgid "Favorite Chain(s)"
msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
msgid "Collect Fees"
msgstr ""
@@ -4841,8 +4896,8 @@ msgid "Find a token by searching for name, symbol or address.<0/>You can select
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
-msgstr ""
+#~ msgid "To initialize this pool, select a starting price for the pool then enter your liquidity price range."
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
msgid "You will receive {amount} {tokenSymbol} soon!"
@@ -4868,8 +4923,8 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fee"
-msgstr ""
+#~ msgid "Fee"
+#~ msgstr ""
#: src/components/SwapForm/OutputCurrencyPanel.tsx
msgid "Est. Output (incl. fee)"
@@ -4890,24 +4945,23 @@ msgstr "燃料费用"
#~ msgstr "使用条款"
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↑"
-msgstr ""
+#~ msgid "END TIME ↑"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
-msgstr ""
+#~ msgid "The pool’s current price of 1 {0} = {1} {2} deviates from the market price (1 {3} = {4} {5}) by {6}%. Please consider the <0>impermanent loss.0>"
+#~ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Ratio"
-msgstr "池的比率"
+#~ msgid "Pool Ratio"
+#~ msgstr "池的比率"
#: src/components/UpcomingFarms/NoFarms.tsx
#~ msgid "Please check the <0>Active Farms0> or come back later."
#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Your position will be 100% composed of {baseSymbol} at this price."
msgstr ""
@@ -4916,7 +4970,6 @@ msgstr ""
msgid "Customize the layout & the look and feel of your trading interface!"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Don't see a pool you joined?"
@@ -4932,12 +4985,10 @@ msgid "I Understand"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore will be updated every 4 hour."
-msgstr ""
+#~ msgid "KyberScore will be updated every 4 hour."
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Circulating Supply"
msgstr ""
@@ -4950,8 +5001,8 @@ msgid "Voting starts in:"
msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
-msgstr ""
+#~ msgid "Note: Farms will run in <0>multiple phases.0> If you haven’t harvested your rewards for ended farms, you still can access them via the <1>Ended1> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm."
+#~ msgstr ""
#:
#~ msgid "FULL UNLOCK"
@@ -4962,8 +5013,8 @@ msgid "Security Info"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
-msgid "Turn on to display KyberAI banner."
-msgstr ""
+#~ msgid "Turn on to display KyberAI banner."
+#~ msgstr ""
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -5003,8 +5054,8 @@ msgid "Your available LP Token balance after staking (if applicable)"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
-msgstr ""
+#~ msgid "Want to <0>let AI do the work of sifting through a noisy market?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
msgid "Can not read QR code"
@@ -5035,8 +5086,8 @@ msgid "Cancel Limit Orders Submitted!"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
-msgstr ""
+#~ msgid "You can unstake your liquidity from a farm anytime you want by clicking the <0>Unstake0> button on the card.<1>If you can’t find your Liquidity, you can check the <2>Ended2> or <3>My Farms3> tab.1>"
+#~ msgstr ""
#: src/components/Menu/index.tsx
msgid "Preferences"
@@ -5060,28 +5111,32 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
#: src/components/swapv2/PairSuggestion/SearchInput.tsx
-msgid "Try typing \"10 ETH to KNC\""
-msgstr ""
+#~ msgid "Try typing \"10 ETH to KNC\""
+#~ msgstr ""
#: src/components/FarmIssueAnnouncement.tsx
#~ msgid "If you do this, your farming rewards will <0>not0> be automatically harvested but we can <1>manually transfer1> your farming rewards to you."
#~ msgstr ""
-#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY LIQUIDITY ↓"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Verified"
msgstr ""
+#: src/components/YieldPools/FarmPoolSort.tsx
+#~ msgid "MY LIQUIDITY ↓"
+#~ msgstr ""
+
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionId.tsx
-msgid "The price of this pool is within your selected range. Your position is currently earning fees"
-msgstr ""
+#~ msgid "The price of this pool is within your selected range. Your position is currently earning fees"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The more trading volume your position supports, the more farming rewards you will earn."
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Deposited Positions"
-msgstr ""
+#~ msgid "Deposited Positions"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Earn"
@@ -5104,7 +5159,6 @@ msgstr ""
#~ msgstr "注意:{warningToken} 现在小于池的 10%。 如果 {warningToken} 达到 0%,池可能会变得不活动"
#: src/hooks/useApproveCallback.ts
-#: src/state/farms/elastic/hooks.ts
msgid "Approve Error"
msgstr ""
@@ -5117,11 +5171,15 @@ msgid "Exchange rate is always 1 to 1."
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Get alpha before it happens"
-msgstr ""
+#~ msgid "Get alpha before it happens"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "KyberAI Feedback Survey"
+#~ msgid "KyberAI Feedback Survey"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Selecting Treasury Grant Option"
msgstr ""
#: src/utils/time.ts
@@ -5133,11 +5191,10 @@ msgstr ""
#~ msgstr "未知的来源"
#: src/pages/MyEarnings/PoolFilteringBar/ClosedPositionsToggle.tsx
-msgid "Closed Positions"
-msgstr ""
+#~ msgid "Closed Positions"
+#~ msgstr ""
#: src/components/ReadMore/index.tsx
-#: src/pages/TrueSightV2/pages/SingleToken.tsx
msgid "Read more"
msgstr ""
@@ -5147,8 +5204,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/chart/index.tsx
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "We couldn't find any information for this token."
-msgstr ""
+#~ msgid "We couldn't find any information for this token."
+#~ msgstr ""
#: src/components/Footer/Footer.tsx
msgid "Powered By"
@@ -5159,8 +5216,8 @@ msgid "Cannot vote at this moment"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
-msgstr ""
+#~ msgid "Deposit your <0>liquidity position0> (NFT token) into the farming contract."
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Requirements"
@@ -5171,17 +5228,17 @@ msgid "POSITION LIQUIDITY (USD)"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm"
-msgstr ""
+#~ msgid "Go to farm"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 10 Holders"
-msgstr ""
+#~ msgid "Top 10 Holders"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Static Farm"
-msgstr ""
+#~ msgid "Static Farm"
+#~ msgstr ""
#: src/pages/Pools/index.tsx
#: src/pages/Pools/index.tsx
@@ -5192,8 +5249,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
#: src/pages/ProAmmPools/CardItem.tsx
-msgid "View Positions"
-msgstr ""
+#~ msgid "View Positions"
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/index.tsx
msgid "Unwrap"
@@ -5249,12 +5306,12 @@ msgid "Code will expire in {0}{1}"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "MY DEPOSIT"
-msgstr ""
+#~ msgid "MY DEPOSIT"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Bug Bounty"
-msgstr ""
+#~ msgid "Bug Bounty"
+#~ msgstr ""
#: src/components/Announcement/MoreAction.tsx
#: src/components/Announcement/Popups/index.tsx
@@ -5297,12 +5354,12 @@ msgstr ""
#: src/state/farms/elastic/hooks.ts
#: src/state/farms/elastic/hooks.ts
-msgid "Withdraw Error"
-msgstr ""
+#~ msgid "Withdraw Error"
+#~ msgstr ""
#: src/state/farms/elasticv2/hooks.ts
-msgid "Approve Farm Error"
-msgstr ""
+#~ msgid "Approve Farm Error"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "Switch to Ethereum Network"
@@ -5313,8 +5370,8 @@ msgid "Buy Tax"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "View Less"
-msgstr ""
+#~ msgid "View Less"
+#~ msgstr ""
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
msgid "Estimated return from additional rewards if you also participate in the farm."
@@ -5336,12 +5393,6 @@ msgstr ""
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Elastic Pools"
msgstr ""
@@ -5352,13 +5403,17 @@ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Invalid Input"
-msgstr ""
+#~ msgid "Invalid Input"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Share this campaign with your friends!"
#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
+msgid "By clicking this, you will proceed by enabling Degen Mode. We recommend double-checking the minimum received amount before confirming the swap."
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
msgid "LOCAL TIME"
msgstr ""
@@ -5368,8 +5423,8 @@ msgid "Can sell all"
msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Token name"
-msgstr ""
+#~ msgid "Token name"
+#~ msgstr ""
#: src/components/SubscribeButton/index.tsx
msgid "Unsubscribe"
@@ -5380,8 +5435,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Price | 24 Change"
-msgstr ""
+#~ msgid "Price | 24 Change"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
msgid "View our KyberSwap Guide again"
@@ -5420,6 +5475,10 @@ msgstr ""
#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/pages/Verify/VerifyCodeModal/index.tsx
msgid "Error"
msgstr "错误"
@@ -5433,8 +5492,8 @@ msgstr "错误"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/WithdrawModal.tsx
-msgid "Withdraw Selected"
-msgstr ""
+#~ msgid "Withdraw Selected"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "With advanced machine learning algorithms to help you stay ahead of the curve, KyberAI gives you the AI/ML edge by analyzing thousands of analyze thousands of tokens and billions of data points, putting you ahead of the curve. Whether you're a seasoned retail trader, just starting out or somewhere in between, KyberAI can give you a competitive edge in trading."
@@ -5444,6 +5503,10 @@ msgstr ""
msgid "Tier {userTier} - {0}% Gas Refund"
msgstr ""
+#: src/components/Menu/index.tsx
+msgid "Legacy"
+msgstr ""
+
#: src/components/PoolList/ItemCard/TabDetailsItems.tsx
#~ msgid "AMP Liquidity"
#~ msgstr "AMP 流动性"
@@ -5453,8 +5516,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text}"
-msgstr ""
+#~ msgid "Supplying {text}"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Adjust the advanced settings for your trades like the max slippage."
@@ -5465,8 +5528,8 @@ msgid "Gas fees and Price Impact are very high. You will lose your funds."
msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain on which the swap will be executed."
-msgstr ""
+#~ msgid "Chain on which the swap will be executed."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile Picture"
@@ -5481,7 +5544,6 @@ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price Impact"
@@ -5500,8 +5562,6 @@ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
#: src/components/SearchModal/CurrencySearch.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Select a token"
msgstr "选择一个代币"
@@ -5524,7 +5584,6 @@ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
-#: src/pages/SwapV3/HeaderRightMenu.tsx
msgid "Tutorial"
msgstr ""
@@ -5541,8 +5600,8 @@ msgid "The bridge amount must be less than the current available amount of the p
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
-msgstr ""
+#~ msgid "Anyone can provide liquidity to KyberSwap by depositing tokens e.g. Traders, Token Teams."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ImportAccountModal/index.tsx
msgid "Your passcode or Import Token is invalid"
@@ -5553,22 +5612,22 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
-msgstr ""
+#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Select from over thousands of tokens and start trading. KyberSwap finds you the best prices across multiple exchanges & combines them into one trade!"
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "View More Stats"
-msgstr ""
+#~ msgid "View More Stats"
+#~ msgstr ""
#: src/components/WalletPopup/WalletView.tsx
msgid "Disconnect wallet"
msgstr ""
-#: src/pages/TrueSightV2/components/table/index.tsx
+#: src/components/swapv2/GasTokenSetting.tsx
msgid "Token"
msgstr "代币"
@@ -5577,8 +5636,8 @@ msgstr "代币"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "Quickly zap and add liquidity using only one token."
-msgstr ""
+#~ msgid "Quickly zap and add liquidity using only one token."
+#~ msgstr ""
#: src/components/SwapForm/SwapActionButton/SwapOnlyButton.tsx
#: src/pages/SwapV2/index.tsx
@@ -5605,7 +5664,6 @@ msgstr ""
#: src/components/Menu/index.tsx
#: src/pages/About/AboutKNC.tsx
#: src/pages/About/AboutKyberSwap/index.tsx
-#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Docs"
msgstr "文挡"
@@ -5634,8 +5692,8 @@ msgid "You are voting for <0>{options}0> on <1>{title}1> with your KIP votin
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 5: Change Farming Range"
-msgstr ""
+#~ msgid "Step 5: Change Farming Range"
+#~ msgstr ""
#: src/pages/Campaign/CampaignItem.tsx
#~ msgid "Your Number of Trades"
@@ -5650,8 +5708,8 @@ msgid "You have zapped {zapAmountIn} {zapSymbolIn} into {tokenAmountIn} {tokenSy
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Explore pool tokens in KyberAI"
-msgstr ""
+#~ msgid "Explore pool tokens in KyberAI"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -5663,8 +5721,8 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~0.3%.
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
-msgstr ""
+#~ msgid "You can harvest your farming rewards whenever you want by clicking the <0>Harvest0> button. Your rewards will automatically be sent to your wallet."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -5684,8 +5742,8 @@ msgid "Quorum Status"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "ENDING IN"
-msgstr ""
+#~ msgid "ENDING IN"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "Click Migrate to start the migration process from KNC Legacy to the new KNC. You will receive the new KNC tokens in your wallet once the transaction has been confirmed. Conversion rate is 1:1. Read about the KNC migration <0>here ↗0>"
@@ -5697,8 +5755,8 @@ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "ACTIONS"
-msgstr ""
+#~ msgid "ACTIONS"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#~ msgid "You can access legacy KyberDAO v1 to read about previous KIPs <0>here ↗0>"
@@ -5714,20 +5772,16 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
msgid "{0} {1} per {2}"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for exotic pairs"
-msgstr ""
+#~ msgid "Best for exotic pairs"
+#~ msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% Claimed"
-msgstr ""
+#~ msgid "{0}% Claimed"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
msgid "Your passcode must be at least 6 characters long"
@@ -5738,22 +5792,21 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
-msgstr ""
+#~ msgid "You can turn on Degen Mode from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
+#~ msgstr ""
#: src/pages/TrueSight/components/TrendingLayout/TrendingTokenItemMobileOnly.tsx
#: src/pages/TrueSight/components/TrendingSoonLayout/TrendingSoonTokenItemDetailsOnMobile.tsx
#~ msgid "Tag"
#~ msgstr ""
-#: src/components/SwapForm/TradeSummary.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "MORE INFORMATION"
msgstr "更多的信息"
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "Farm has not started"
-msgstr ""
+#~ msgid "Farm has not started"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#: src/components/WalletPopup/MyAssets.tsx
@@ -5761,19 +5814,14 @@ msgstr ""
msgid "Import Tokens"
msgstr "导入代币"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#: src/components/Vesting/VestingSummary.tsx
-#~ msgid "Details"
-#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Details"
+msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "My Liquidity Balance"
msgstr ""
@@ -5785,10 +5833,14 @@ msgstr ""
#~ msgid "could be trending very soon!"
#~ msgstr ""
-#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
-msgid "Target Volume"
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs and identify superior trade routes for you."
msgstr ""
+#: src/components/YieldPools/ElasticFarmGroup/FeeTarget.tsx
+#~ msgid "Target Volume"
+#~ msgstr ""
+
#: src/components/ProAmm/ProAmmPoolInfo.tsx
#~ msgid "<0><1>Current Price:1> 1 {0} = {1} {2}0>"
#~ msgstr ""
@@ -5798,8 +5850,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Choose pool"
-msgstr ""
+#~ msgid "Choose pool"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "Step 3"
@@ -5842,8 +5894,8 @@ msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Dynamic Fee Range"
-msgstr "动态費用范围"
+#~ msgid "Dynamic Fee Range"
+#~ msgstr "动态費用范围"
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
msgid "You Buy"
@@ -5869,8 +5921,8 @@ msgid "KyberSwap strives to offer its users the best DeFi experience on a single
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Brave wallet can only be used in Brave Browser. Download it"
-msgstr ""
+#~ msgid "Brave wallet can only be used in Brave Browser. Download it"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Trades only on Ethereum chain are applicable."
@@ -5882,24 +5934,24 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "{0}% Refund"
-msgstr ""
+#~ msgid "{0}% Refund"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Routing through these tokens resulted in the best price for your trade"
#~ msgstr ""
#: src/components/ElasticZap/QuickZap.tsx
-msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
-msgstr ""
+#~ msgid "<0>Price Impact0> is very high. You will lose funds! Please turn on <1>Degen Mode ↗1>"
+#~ msgstr ""
#: src/pages/GrantProgram/EndedPrograms.tsx
#~ msgid "See more"
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "3d Netflow"
-msgstr ""
+#~ msgid "3d Netflow"
+#~ msgstr ""
#: src/pages/Pool/index.tsx
#~ msgid "Here you can view all your liquidity and staked balances in the Classic Pools"
@@ -5909,9 +5961,11 @@ msgstr ""
#~ msgid "Please check your inbox to verify your email account"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
#: src/components/Header/groups/SwapNavGroup.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
+#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "Limit Order"
msgstr ""
@@ -5919,17 +5973,21 @@ msgstr ""
#~ msgid "- Remove send"
#~ msgstr "-删除发送"
-#: src/pages/AddLiquidityV2/index.tsx
-msgid "Set Starting Price"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "USD stablecoins equivalent to 100% of the Reference Value of Lost Affected Assets contributed from such Affected Address, vested continuously on a linear basis over 12 months."
msgstr ""
+#: src/pages/AddLiquidityV2/index.tsx
+#~ msgid "Set Starting Price"
+#~ msgstr ""
+
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "The bridge amount must be less than the current available amount of the pool which is {poolLiquidity} {0}."
#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Liquidations on CEX"
-msgstr ""
+#~ msgid "Liquidations on CEX"
+#~ msgstr ""
#: src/pages/CrossChain/useValidateInput.ts
msgid "Input amount is not valid"
@@ -5948,14 +6006,12 @@ msgstr ""
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Connect wallet"
msgstr "连接钱包"
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Do you want to remove <0>{0} ({1})0>"
-msgstr ""
+#~ msgid "Do you want to remove <0>{0} ({1})0>"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
#: src/components/swapv2/LimitOrder/Modals/ConfirmOrderModal.tsx
@@ -5963,8 +6019,8 @@ msgid "at"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Trading Grant Campaign"
-msgstr ""
+#~ msgid "Trading Grant Campaign"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Stake your KNC (<0>Kyber Network Crystal0>) tokens to <1>vote on KIPs1> and shape the future of the KyberSwap ecosystem. KNC stakers also enjoy multiple benefits such as savings on gas fees, protocol fee rewards, and more."
@@ -5979,8 +6035,8 @@ msgid "AMP factor x Liquidity in the pool. Amplified pools have higher capital e
msgstr "AMP 系数 x 池中的流动性。 放大池具有更高的资本效率和流动性。"
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support & Resistance Levels."
-msgstr ""
+#~ msgid "Support & Resistance Levels."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farming Mechanism 1 - Active Liquidity Time"
@@ -5990,13 +6046,13 @@ msgstr ""
#~ msgid "KyberSwap is DeFi’s premier automated market maker, providing the best token prices for traders across multiple exchanges, and maximizing earnings for liquidity providers, in one decentralized platform."
#~ msgstr ""
-#: src/components/NetworkModal/index.tsx
-#~ msgid "Coming Soon"
-#~ msgstr ""
+#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
+msgid "Coming Soon"
+msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Unstake Error"
-msgstr ""
+#~ msgid "Unstake Error"
+#~ msgstr ""
#: src/pages/Farm/index.tsx
#~ msgid "Staked Only"
@@ -6022,7 +6078,6 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#: src/pages/NotificationCenter/DeleteAllAlertsButton/index.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "No, go back"
msgstr ""
@@ -6050,16 +6105,16 @@ msgid "Export Profile"
msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "My 1st Watchlist"
-msgstr ""
+#~ msgid "My 1st Watchlist"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "An error occurred"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "We introduce to you, <0>KyberAI0>"
-msgstr ""
+#~ msgid "We introduce to you, <0>KyberAI0>"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "You are connected to KyberSwap with wallet <0>{0}0> while your current profile <1>{currentProfileName}1> was created by wallet <2>{1}2>. Do you wish to keep using"
@@ -6067,27 +6122,26 @@ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/SwapForm/TradeSummary.tsx
-msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "Stake KNC in KyberDAO to get gas refund. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to Whale Wallets"
-msgstr ""
+#~ msgid "Netflow to Whale Wallets"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "FOR LIQUIDITY PROVIDERS"
-msgstr ""
+#~ msgid "FOR LIQUIDITY PROVIDERS"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} is {filledPercent}% filled"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Netflow to CEX"
-msgstr ""
+#~ msgid "Netflow to CEX"
+#~ msgstr ""
#: src/components/EarningAreaChart/TooltipContent.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
msgid "Farm Rewards"
msgstr ""
@@ -6096,18 +6150,18 @@ msgstr ""
#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "MY LIQUIDITY"
-msgstr ""
+#~ msgid "MY LIQUIDITY"
+#~ msgstr ""
#: src/components/Header/KyberAINavItem.tsx
#: src/components/Menu/index.tsx
#: src/pages/TrueSightV2/index.tsx
-msgid "Rankings"
-msgstr ""
+#~ msgid "Rankings"
+#~ msgstr ""
#: src/pages/MyEarnings/MyEarningsOverTimePanel/BasePanel.tsx
-msgid "Timeframe"
-msgstr ""
+#~ msgid "Timeframe"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/TokenInfo/MarketInfo.tsx
@@ -6116,17 +6170,17 @@ msgid "Contract Address"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Please select fee"
-msgstr ""
+#~ msgid "Please select fee"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Whale Wallets"
-msgstr ""
+#~ msgid "to Whale Wallets"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake Selected"
-msgstr ""
+#~ msgid "Stake Selected"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "Note: Staking KNC is only available on Ethereum chain."
@@ -6137,8 +6191,8 @@ msgid "Holiday Mode"
msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
-msgstr ""
+#~ msgid "<0>That's not all! Here are a few handy tips so you can get the most out of KyberAI:0> <1><2>Use the search bar to <3>search3> for any token you'd like to explore. KyberAI supports 4000+ tokens!2><4><5>Subscribe5> to receive daily emails on the top tokens as recommended by KyberAI!4><6>Monitoring the price of a token? Set a <7>price alert7>, sit back, and we'll notify you!6><8>Create a <9>watchlist9> of your favorite tokens, and access it quickly!8>1> <10>If you wish to view this guide again, you can enable it from the settings. 10><11><12>Ape Smart with KyberAI.12>11>"
+#~ msgstr ""
#: src/components/PoolsCurrencyInputPanel/index.tsx
msgid "Select Token"
@@ -6184,12 +6238,12 @@ msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
#: src/components/swapv2/SwapSettingsPanel/GasPriceTrackerSetting.tsx
-msgid "Gas Price Tracker"
-msgstr ""
+#~ msgid "Gas Price Tracker"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
-msgstr ""
+#~ msgid "Warning: The price range for this liquidity position is not eligible for farming rewards. To become eligible for rewards, please match the farm’s active range(s)."
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#: src/pages/NotificationCenter/Menu/index.tsx
@@ -6214,13 +6268,13 @@ msgid "Approve {tokenSymbol}"
msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
-msgid "Slippage is high. Your transaction may be front-run."
-msgstr ""
+#~ msgid "Slippage is high. Your transaction may be front-run."
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 1: Select the Farm"
-msgstr ""
+#~ msgid "Step 1: Select the Farm"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
#~ msgid "You can subscribe to email notifications for your liquidity positions. Whenever your position goes <0>out-of-range0>, comes back <1>in-range1>, or is <2>closed2> you will receive a notification."
@@ -6235,6 +6289,10 @@ msgstr ""
msgid "Max is {format}"
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You can <0>choose Grant Option once0>, please read and decide carefully"
+msgstr ""
+
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#~ msgid "Disclaimer: This should not be considered as financial advice"
#~ msgstr ""
@@ -6244,8 +6302,8 @@ msgid "Gasless Cancel {0}/{1} Orders"
msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Search by token name, symbol or contract address"
-msgstr ""
+#~ msgid "Search by token name, symbol or contract address"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Email Address (Optional)"
@@ -6256,16 +6314,16 @@ msgid "For this pilot gas refund program, KyberSwap retains the right to cancel
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on lowest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/components/LiquidityProviderMode/index.tsx
msgid "Zap In"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Starting Price"
-msgstr ""
+#~ msgid "Starting Price"
+#~ msgstr ""
#: src/components/Menu/FaucetModal.tsx
#~ msgid "You will receive {0} {tokenSymbol} soon!"
@@ -6280,8 +6338,8 @@ msgid "has been successfully transferred from"
msgstr ""
#: src/components/FeeSelector/index.tsx
-msgid "Best for very volatile pairs"
-msgstr ""
+#~ msgid "Best for very volatile pairs"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "You can only vote from the next Epoch onward"
@@ -6321,8 +6379,8 @@ msgid "Insufficient {0} balance.<0/><1>{1}{formatNum} {2}1> remaining after de
msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
-msgid "Subscribe to receive notifications on your limit orders."
-msgstr ""
+#~ msgid "Subscribe to receive notifications on your limit orders."
+#~ msgstr ""
#: src/pages/Campaign/CampaignListAndSearch.tsx
#~ msgid "Search for campaign"
@@ -6337,12 +6395,12 @@ msgid "Signing in..."
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Create list"
-msgstr ""
+#~ msgid "Create list"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "1 user is ahead of you"
-msgstr ""
+#~ msgid "1 user is ahead of you"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Discover trending soon tokens"
@@ -6353,11 +6411,10 @@ msgid "Are you sure you want to cancel this limit order?"
msgstr ""
#: src/pages/Oauth/Login.tsx
-#: src/pages/TrueSightV2/utils/index.tsx
msgid "Verification code is wrong or expired. Please try again."
msgstr ""
-#: src/pages/Farm/index.tsx
+#: src/pages/ElasticSnapshot/index.tsx
msgid "Vesting"
msgstr ""
@@ -6365,12 +6422,20 @@ msgstr ""
msgid "{0} price of {rateStr} {1}"
msgstr ""
+#: src/components/SupportButton.tsx
+msgid "Support"
+msgstr ""
+
#: src/pages/Swap/index.tsx
#~ msgid "+ Add a send (optional)"
#~ msgstr "+添加发送(可选)"
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgid "Search from over <0>4000+ tokens on 7 chains.0>"
+#~ msgstr ""
+
+#: src/components/Menu/index.tsx
+msgid "Treasury Grant 2023"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
@@ -6378,8 +6443,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
-msgid "Total Earnings"
-msgstr ""
+#~ msgid "Total Earnings"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
@@ -6389,8 +6454,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↓"
-msgstr ""
+#~ msgid "AVG APR ↓"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "25%"
@@ -6427,8 +6492,8 @@ msgid "Kyber Network Crystal <0>(KNC)0>"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "STAKED TVL ↑"
-msgstr ""
+#~ msgid "STAKED TVL ↑"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Saving..."
@@ -6463,7 +6528,6 @@ msgstr ""
#~ msgid "Make sure the URL is<0>KyberSwap.com0>"
#~ msgstr "确保URL是<0>KyberSwap.com0>。"
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "More Information"
msgstr ""
@@ -6473,12 +6537,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "You haven't added any tokens to your watchlist yet"
-msgstr ""
+#~ msgid "You haven't added any tokens to your watchlist yet"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
-msgstr ""
+#~ msgid "Don't have enough time to <0>conduct thorough technical analysis of potential tokens?0>"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
msgid "Additional Options"
@@ -6490,18 +6554,11 @@ msgid "Price Range"
msgstr "价格范围"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
-msgstr ""
+#~ msgid "KyberScore algorithm measures the current trend of a token by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token."
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/MyEarnings/ClassicPools/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-#: src/pages/MyEarnings/ElasticPools/index.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "My Liquidity"
@@ -6527,9 +6584,7 @@ msgstr ""
msgid "To learn more about how to remove liquidity on KyberSwap Elastic, view <0> here0>"
msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/YieldPools/FarmingPoolAPRCell.tsx
-#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
msgid "Estimated return from trading fees if you participate in the pool."
msgstr ""
@@ -6538,25 +6593,28 @@ msgid "Disclaimer: KyberSwap is a permissionless protocol optimized for the stan
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View analytics"
+#~ msgid "View analytics"
+#~ msgstr ""
+
+#: src/components/swapv2/LimitOrder/OrderBook/TableHeader.tsx
+msgid "ORDER STATUS"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Contact Us"
-msgstr "联系我们"
+#~ msgid "Contact Us"
+#~ msgstr "联系我们"
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Wallet"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Feedback"
-msgstr ""
+#~ msgid "Feedback"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {text} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {text} across {len} positions"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Keep Profile"
@@ -6575,16 +6633,16 @@ msgid "Suitable for stable pairs. Anticipating price to fluctuate within ~1%. Yo
msgstr ""
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Your Pool Allocation"
-msgstr "您的池分配"
+#~ msgid "Your Pool Allocation"
+#~ msgstr "您的池分配"
#: src/components/Announcement/Popups/index.tsx
msgid "See All"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
-msgstr ""
+#~ msgid "Deposit your liquidity from the Classic Pools here to earn even more attractive farming rewards."
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "You have successfully placed an order to pay <0>{0} {1}0> and receive <1>{2} {3} 1><2>at {4} price of {5} {6}.2>"
@@ -6622,13 +6680,6 @@ msgstr "开"
#~ msgid "Crosschain amount larger than {0} {1} could take up to 12 hours"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/SwapV3/ApprovalModal.tsx
@@ -6636,25 +6687,11 @@ msgstr "开"
msgid "Approve"
msgstr "批准"
-#: src/components/PoolList/ItemCard/index.tsx
-#: src/components/PoolList/ListItem.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
#: src/components/ShareModal/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-#: src/pages/Pools/index.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
-#: src/pages/ProAmmPools/ListItem.tsx
-#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
msgid "Share"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -6675,28 +6712,32 @@ msgstr ""
#: src/components/SwapForm/TradeTypeSelection.tsx
#: src/components/swapv2/TradeTypeSelection.tsx
-msgid "Maximum Return"
-msgstr "最大的收益"
+#~ msgid "Maximum Return"
+#~ msgstr "最大的收益"
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "Subscribe to receive notifications on your limit orders"
#~ msgstr ""
+#: src/components/SlippageWarningNote/index.tsx
+msgid "<0>Your 0><1>Slippage1><2> {msg}2>"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel Orders"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
-msgstr ""
+#~ msgid "<0>Already have a token in mind?0> <1/>Find on-chain & technical insights that provide you the edge to make the right decision, at the right time."
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "On-Chain Analysis"
-msgstr ""
+#~ msgid "On-Chain Analysis"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
-msgstr ""
+#~ msgid "<0>Add liquidity0> to the corresponding <1>Elastic pool1> and receive a NFT token for your liquidity position."
+#~ msgstr ""
#: src/components/Toggle/ListToggle.tsx
msgid "OFF"
@@ -6723,7 +6764,6 @@ msgid "Your currently existing order is {filled}% filled."
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
msgid "My Pool APR"
msgstr ""
@@ -6732,8 +6772,8 @@ msgid "How to participate"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 7: Withdraw your liquidty"
-msgstr ""
+#~ msgid "Step 7: Withdraw your liquidty"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Vote submitting"
@@ -6755,7 +6795,7 @@ msgstr ""
msgid "You need to first allow KyberSwap's smart contract to use your {0}. <0>Read more ↗0>"
msgstr ""
-#: src/components/Header/groups/AnalyticNavGroup.tsx
+#: src/components/Header/index.tsx
#: src/components/Menu/index.tsx
msgid "Analytics"
msgstr "分析工具"
@@ -6765,8 +6805,8 @@ msgid "No. Limit orders and cross-chain swaps are not eligible for gas refunds.
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText}"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText}"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
@@ -6787,16 +6827,16 @@ msgstr "按池地址搜索"
#~ msgstr "这些代币通常与其他代币配对。"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select fee tier"
-msgstr ""
+#~ msgid "Select fee tier"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/index.tsx
msgid "During the processing phase, if the price changes by more than this %, you will receive axlUSDC at the destination chain instead. Read more <0>here ↗0>."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY REWARD ↓"
-msgstr ""
+#~ msgid "MY REWARD ↓"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Voting Power next Epoch: {0}"
@@ -6804,20 +6844,16 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Netflow"
-msgstr ""
+#~ msgid "Netflow"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Price"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Earn more with your crypto assets"
-msgstr ""
+#~ msgid "Earn more with your crypto assets"
+#~ msgstr ""
#: src/components/DownloadWalletModal/index.tsx
msgid "Download a Wallet"
@@ -6853,36 +6889,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a pool"
-msgstr "您正在创建一个池"
+#~ msgid "You are creating a pool"
+#~ msgstr "您正在创建一个池"
#:
#~ msgid "Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists."
#~ msgstr "来自非活动列表的代币。 在下方导入特定代币或单击“管理”以激活更多列表。"
#: src/components/FeeSelector/index.tsx
-msgid "Best for rare use cases"
-msgstr ""
+#~ msgid "Best for rare use cases"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
-msgstr ""
+#~ msgid "<0>Slippage0><1> is high. Your transaction may be front-run.1>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Less Effort <0/><1>More Signals1>"
-msgstr ""
+#~ msgid "Less Effort <0/><1>More Signals1>"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Deposit your liquidity from the Elastic Pools here, and then stake it to earn even more attractive farming rewards. Learn about our farming mechanisms"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
-msgstr ""
+#~ msgid "In case a farm has multiple farming range, you can check other ranges by clicking on <0>Farming Ranges0> button and choose the appropriate range for your strategy"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "New Updates to KyberAI"
-msgstr ""
+#~ msgid "New Updates to KyberAI"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
@@ -6891,16 +6927,16 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Funding Rates"
-msgstr ""
+#~ msgid "Funding Rates"
+#~ msgstr ""
#: src/pages/ProAmmPool/index.tsx
msgid "Farming Positions"
msgstr ""
#: src/components/Header/web3/WalletModal/PendingView.tsx
-msgid "Error connecting to {walletName}."
-msgstr ""
+#~ msgid "Error connecting to {walletName}."
+#~ msgstr ""
#: src/pages/About/AboutKNC.tsx
msgid "KNC holders can stake KNC in KyberDAO and vote on important decisions. Voters receive trading fees generated on KyberSwap and other benefits from ecosystem collaborations on Kyber."
@@ -6936,8 +6972,8 @@ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AVG APR ↑"
-msgstr ""
+#~ msgid "AVG APR ↑"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPoolStat.tsx
msgid "Last 24H Transactions"
@@ -6951,23 +6987,23 @@ msgstr ""
#~ msgid "Average estimated return based on yearly fees of the pool"
#~ msgstr ""
-#: src/components/Header/index.tsx
+#: src/components/Header/groups/AboutNavGroup.tsx
#: src/components/Menu/index.tsx
msgid "Blog"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
-msgstr ""
+#~ msgid "Unstake your liquidity positions (NFT tokens) from the farm. You will no longer earn rewards on these positions once unstaked"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live Charts"
-msgstr ""
+#~ msgid "Live Charts"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Disable Metamask in C98"
-msgstr ""
+#~ msgid "Disable Metamask in C98"
+#~ msgstr ""
#: src/components/Toggle/LegacyToggle.tsx
msgid "Off"
@@ -6976,8 +7012,8 @@ msgstr "关"
#: src/pages/CreatePool/FeeTypeSelector.tsx
#: src/pages/CreatePool/index.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
-msgstr "費用會根據市場狀況動態調整,以最大限度地提高流動性提供者的回報。"
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers."
+#~ msgstr "費用會根據市場狀況動態調整,以最大限度地提高流動性提供者的回報。"
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "You need to withdraw your deposited liquidity position from the Farm first"
@@ -6989,43 +7025,41 @@ msgid "per"
msgstr "每个"
#: src/pages/MyEarnings/PoolFilteringBar/index.tsx
-msgid "Expand All"
-msgstr ""
+#~ msgid "Expand All"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Bullish"
-msgstr ""
+#~ msgid "Bullish"
+#~ msgstr ""
#: src/pages/NotificationCenter/PriceAlerts/Header.tsx
msgid "Alerts History"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Add liquidity error"
-msgstr ""
+#~ msgid "Add liquidity error"
+#~ msgstr ""
#: src/components/SwapForm/AddMEVProtectionModal.tsx
msgid "MEV Protection Mode is on"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
-msgstr ""
+#~ msgid "KyberDAO can propose various KNC incentives like liquidity mining rewards on KyberSwap on top of standard trading fees to provide more value to liquidity providers."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
msgid "Turn on to display trade route."
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit your liquidity"
-msgstr ""
+#~ msgid "Deposit your liquidity"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Staked Balance"
msgstr ""
@@ -7046,8 +7080,8 @@ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Learn More ↗"
-msgstr ""
+#~ msgid "Learn More ↗"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/SwitchToEthereumModal.tsx
msgid "{0} is only available on Ethereum chain. Please switch network to continue."
@@ -7075,8 +7109,8 @@ msgid "Cooldown"
msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
-msgid "Watchlist"
-msgstr ""
+#~ msgid "Watchlist"
+#~ msgstr ""
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "Accept update"
@@ -7084,10 +7118,9 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
-msgstr ""
+#~ msgid "Fees are adjusted dynamically according to market conditions to maximise returns for liquidity providers"
+#~ msgstr ""
-#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
msgid "To ensure you dont lose funds due to very high price impact (≥10%), swap has been disabled for this trade. If you still wish to continue, you can turn on Degen Mode from Settings."
msgstr ""
@@ -7105,8 +7138,8 @@ msgid "Stake KNC tokens to vote on proposals that shape Kyber's future and earn
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "Locked Rewards"
-msgstr "锁定奖励"
+#~ msgid "Locked Rewards"
+#~ msgstr "锁定奖励"
#: src/pages/Campaign/ModalRegisterCampaignSuccess.tsx
#~ msgid "You have successfully registered for this trading campaign. Start trading now and good luck!"
@@ -7132,8 +7165,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Top Traded"
-msgstr ""
+#~ msgid "Top Traded"
+#~ msgstr ""
#: src/components/SearchModal/ImportToken.tsx
#~ msgid "Anyone can create a token, including creating fake versions of existing tokens that claim to represent projects"
@@ -7148,10 +7181,6 @@ msgstr ""
#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
-#: src/pages/TrueSightV2/components/table/index.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Action"
msgstr ""
@@ -7162,8 +7191,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Supply"
-msgstr "供应"
+#~ msgid "Supply"
+#~ msgstr "供应"
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
@@ -7176,20 +7205,19 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
#: src/components/YieldPools/ListItem.tsx
-msgid "Available Balance"
-msgstr ""
+#~ msgid "Available Balance"
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Fees Amount<0/>(USD)"
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Help"
-msgstr ""
+#~ msgid "Help"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Tutorial.tsx
#: src/pages/BuyCrypto/index.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
msgid "Get Started"
msgstr ""
@@ -7232,7 +7260,6 @@ msgstr ""
#~ msgstr ""
#: src/components/FarmTag.tsx
-#: src/pages/Pools/index.tsx
msgid "Farming"
msgstr ""
@@ -7245,8 +7272,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic"
-msgstr ""
+#~ msgid "Dynamic"
+#~ msgstr ""
#: src/utils/dmm.ts
#~ msgid "An error occurred. Please try increasing max slippage"
@@ -7266,8 +7293,8 @@ msgid "Insufficient liquidity available. Please reload page or increase max slip
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "You have {numberInRangePos} in-range position(s)"
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
#: src/components/swapv2/LimitOrder/EditOrderModal.tsx
@@ -7287,8 +7314,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
-msgstr ""
+#~ msgid "We're thrilled to have you onboard and can't wait for you to start exploring the world of trading powered by <0>KyberAI0>. We've created this short tutorial for you to highlight KyberAI's main features. Ready?"
+#~ msgstr ""
#: src/components/PositionPreview/index.tsx
#~ msgid "Current {0} Price"
@@ -7303,8 +7330,6 @@ msgid "Get your orders filled without paying any gas fees."
msgstr ""
#: src/components/ModalCommunity/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Community"
msgstr ""
@@ -7312,6 +7337,11 @@ msgstr ""
#~ msgid "Tag:"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Step"
+msgstr ""
+
#: src/components/swapv2/LimitOrder/Modals/CancelOrderModal.tsx
msgid "Cancel an order"
msgstr ""
@@ -7333,8 +7363,8 @@ msgid "Available"
msgstr ""
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Last 7 days"
-msgstr ""
+#~ msgid "Last 7 days"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
#~ msgid "You can swap {0} for {1} (and vice versa)<0/>Exchange rate is always 1 to 1."
@@ -7349,22 +7379,26 @@ msgstr ""
msgid "Axelar/Squid doesn't support this chain"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Treasury Grant Options"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/EligibleTxModal.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
msgid "Your transactions"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Spot Markets"
-msgstr ""
+#~ msgid "Spot Markets"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/OrderItem.tsx
msgid "Created"
msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Funding rate"
-msgstr ""
+#~ msgid "Funding rate"
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/PendingWarning.tsx
#~ msgid "Stuck transaction. Your transaction has been processing for more than {0} mins."
@@ -7380,20 +7414,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Holders (On-chain)"
-msgstr ""
+#~ msgid "Holders (On-chain)"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Liquidations on Centralized Exchanges."
-msgstr ""
+#~ msgid "Liquidations on Centralized Exchanges."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You have turned on <0>Degen Mode0> from settings. Trades with <1>very1> high price impact can be executed."
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
-msgstr ""
+#~ msgid "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume."
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarms.tsx
#~ msgid "Once the current phase ends, you can harvest your rewards from the farm in the <0>Ended0> tab. To continue earning rewards in the new phase, you must restake your NFT position into the active farm"
@@ -7403,11 +7437,11 @@ msgstr ""
#~ msgid "Acknowledge"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/swapv2/LimitOrder/ExpirePicker.tsx
#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/hooks/useLogin.tsx
#: src/hooks/useSessionExpire.ts
+#: src/pages/ElasticSnapshot/components/TermAndPolicyModal.tsx
#: src/pages/KyberDAO/StakeKNC/DelegateConfirmModal.tsx
msgid "Cancel"
msgstr "取消"
@@ -7441,16 +7475,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
-msgstr ""
+#~ msgid "Stake your liquidity positions (NFT tokens) into the farms to start earning rewards. Positions that cover the Active Range of the farm will earn maximum rewards"
+#~ msgstr ""
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Amount to remove"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Negative Netflow Tokens"
-msgstr ""
+#~ msgid "Top CEX Negative Netflow Tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC holders can stake their tokens to vote on proposals and receive rewards in KNC."
@@ -7461,8 +7495,8 @@ msgid "Note: Once your order is filled, you will receive {currencyName} ({curren
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Enable Metamask in C98"
-msgstr ""
+#~ msgid "Enable Metamask in C98"
+#~ msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
msgid "Farms"
@@ -7477,8 +7511,8 @@ msgstr ""
#~ msgstr ""
#: src/components/Vesting/index.tsx
-msgid "No vesting schedule!"
-msgstr "没有奖励归属时间表"
+#~ msgid "No vesting schedule!"
+#~ msgstr "没有奖励归属时间表"
#: src/components/Select/MultipleChainSelect/ApplyButton.tsx
msgid "View Selected Chains"
@@ -7501,8 +7535,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Deposited Liquidity"
-msgstr ""
+#~ msgid "Deposited Liquidity"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Price Alerts"
@@ -7524,16 +7558,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Centralized Exchanges"
-msgstr ""
+#~ msgid "Centralized Exchanges"
+#~ msgstr ""
#:
#~ msgid "DEPOSIT"
#~ msgstr "存款"
#: src/pages/About/AboutKNC.tsx
-msgid "LIQUIDITY INCENTIVES"
-msgstr ""
+#~ msgid "LIQUIDITY INCENTIVES"
+#~ msgstr ""
#: src/components/Announcement/Popups/TransactionPopup.tsx
#: src/components/TransactionConfirmationModal/index.tsx
@@ -7556,12 +7590,10 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/index.tsx
-msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
-msgstr ""
+#~ msgid "Subscribe to receive daily emails on tokens in your watchlist and tokens recommended by KyberAI!"
+#~ msgstr ""
#: src/components/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
-#: src/pages/MyEarnings/ClassicElasticTab.tsx
msgid "Classic Pools"
msgstr ""
@@ -7569,14 +7601,18 @@ msgstr ""
msgid "Your currently existing order is {filledPercent}% filled."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Unable to calculate <0>Price Impact.0>{0}"
+msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
#: src/pages/Farm/index.tsx
-msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Static farms incentivize farmers that provide liquidity to a pool in a pre-configured farming price range that is set by the farm administrator. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Use a referral code to get access to KyberAI faster!"
-msgstr ""
+#~ msgid "Use a referral code to get access to KyberAI faster!"
+#~ msgstr ""
#: src/utils/time.ts
msgid "< 1 minute ago"
@@ -7591,14 +7627,17 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "First Discovered"
+#~ msgid "First Discovered"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Unlocked Amount (USDC)"
msgstr ""
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Your Position"
msgstr ""
-#: src/components/swapv2/LimitOrder/ListOrder/ActionButtons.tsx
#: src/pages/NotificationCenter/Profile/AvatarEdit.tsx
msgid "Edit"
msgstr ""
@@ -7625,16 +7664,16 @@ msgid "Min"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
-msgid "Update Liquidity"
-msgstr ""
+#~ msgid "Update Liquidity"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can only watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "LOWER SLIPPAGE"
-msgstr ""
+#~ msgid "LOWER SLIPPAGE"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/FAQ.tsx
msgid "During this beta phase, only swaps on Ethereum are eligible for gas refunds. We may expand the gas refund program to other chains in the future."
@@ -7653,8 +7692,8 @@ msgid "No staked liquidity found. Check out our <0>Farms.0>"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "You have {numberInRangePos} in-range position(s)."
-msgstr ""
+#~ msgid "You have {numberInRangePos} in-range position(s)."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is low. Your transaction may fail"
@@ -7703,22 +7742,23 @@ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming. Click <0>here0> to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click <0>here0> to go to the farm."
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
-msgstr ""
+#~ msgid "If {injectedName} wallet opens instead of {walletName}, please close the {injectedName} popup then follow the steps below to disable {injectedName} Wallet:"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Note: There are existing pools for this token pair. Please check"
-msgstr "注意:这个代币对现有的池。请检查"
+#~ msgid "Note: There are existing pools for this token pair. Please check"
+#~ msgstr "注意:这个代币对现有的池。请检查"
#: src/pages/MyEarnings/ClassicPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/index.tsx
-msgid "No liquidity found."
-msgstr ""
+#~ msgid "No liquidity found."
+#~ msgstr ""
+#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
msgid "Swap Anyway"
msgstr "Swap Anyway"
@@ -7746,8 +7786,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
-msgstr ""
+#~ msgid "Subscribe to <0>receive daily emails on the top tokens0> as recommended by KyberAI."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/constants.ts
msgid "Suitable for high-risk appetite LPs for pairs with high price volatility. Anticipating price to fluctuate within ~30%. You can earn fees even if the price goes up by 15% or goes down by 15%."
@@ -7762,8 +7802,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "Sort"
-msgstr ""
+#~ msgid "Sort"
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
#: src/pages/NotificationCenter/Profile/ImportAccountModal/UserEnterPasscodeContent.tsx
@@ -7775,16 +7815,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral code is invalid"
-msgstr ""
+#~ msgid "Referral code is invalid"
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#~ msgid "Supplying {0} across {1} positions"
#~ msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "All positions"
-msgstr ""
+#~ msgid "All positions"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Do you want to make a <0>Limit Order0> instead?"
@@ -7792,20 +7832,20 @@ msgstr ""
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Show more"
-msgstr ""
+#~ msgid "Show more"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Refer your friends to KyberAI, and get rewarded with our exclusive NFTs!. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/pages/ProAmmPool/PositionListItem.tsx
#~ msgid "You need to withdraw your liquidity first"
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top All Tokens"
-msgstr ""
+#~ msgid "Top All Tokens"
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/LeaderBoardSection/index.tsx
#~ msgid "Currently there are no Projects"
@@ -7824,15 +7864,15 @@ msgid "DAO Governance"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Farming Ranges"
-msgstr ""
+#~ msgid "Farming Ranges"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Something went wrong. Please try again."
msgstr ""
#: src/components/Header/groups/EarnNavGroup.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
+#: src/components/Menu/index.tsx
#: src/pages/MyPool/index.tsx
msgid "My Pools"
msgstr "我的池"
@@ -7856,10 +7896,6 @@ msgstr ""
#~ msgstr "您将收到的最低金额,否则您的交易将被退回"
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
msgid "Approve {0}"
msgstr "批准 {0}"
@@ -7886,13 +7922,18 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "24H Volume"
+#~ msgid "24H Volume"
+#~ msgstr ""
+
+#: src/components/SwapForm/TradeSummary.tsx
+msgid "Rate"
msgstr ""
#: src/pages/NotificationCenter/Menu/index.tsx
#~ msgid "My Elastic Pools"
#~ msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Balance"
@@ -7904,8 +7945,8 @@ msgid "The total token amount ({0} {1}) you are trying to deposit across the {2}
msgstr ""
#: src/pages/TrueSightV2/pages/LiquidityAnalysis.tsx
-msgid "View all token markets across decentralized and centralized exchanges."
-msgstr ""
+#~ msgid "View all token markets across decentralized and centralized exchanges."
+#~ msgstr ""
#: src/pages/ElasticSnapshot/index.tsx
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit on this category."
@@ -7916,20 +7957,20 @@ msgid "KYBER DAO"
msgstr ""
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Want to know more? Explore KNC in KyberAI!"
-msgstr ""
+#~ msgid "Want to know more? Explore KNC in KyberAI!"
+#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Prices and Pool share"
-msgstr "价格和池份额"
+#~ msgid "Prices and Pool share"
+#~ msgstr "价格和池份额"
#: src/utils/time.ts
#~ msgid "{hour} hours ago"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Note: Live trades may be slightly delayed."
-msgstr ""
+#~ msgid "Note: Live trades may be slightly delayed."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool"
@@ -7950,16 +7991,16 @@ msgid "Accept"
msgstr "接受"
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "List your tokens permissionlessly."
-msgstr ""
+#~ msgid "List your tokens permissionlessly."
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Cross-Chain Swaps"
msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update your liquidity"
-msgstr ""
+#~ msgid "Update your liquidity"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Value Locked:"
@@ -7982,8 +8023,8 @@ msgid "Swapping {amountInDisplay} {symbolIn} for {amountOutDisplay} {symbolOut}"
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
-msgstr ""
+#~ msgid "Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees"
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "You have turned on Degen Mode. Be cautious"
@@ -7997,6 +8038,10 @@ msgstr ""
msgid "Vote - Earn Rewards"
msgstr ""
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Total Amount includes assets that KyberSwap has recovered or rescued under Category 3 & 5"
+msgstr ""
+
#: src/components/Announcement/PrivateAnnoucement/index.tsx
msgid "Limit Orders"
msgstr ""
@@ -8019,12 +8064,12 @@ msgid "Something went wrong,<0/>please try again"
msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Go to farm ↗"
-msgstr ""
+#~ msgid "Go to farm ↗"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
-msgid "My Share of Pool"
-msgstr ""
+#~ msgid "My Share of Pool"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "Chains"
@@ -8051,8 +8096,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Approve Farming Contract"
-msgstr ""
+#~ msgid "Approve Farming Contract"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You have turned on <0>Degen Mode0> from settings. Trades can still be executed when price impact cannot be calculated."
@@ -8086,8 +8131,8 @@ msgid "Please ensure the selected token has been imported in your Brave wallet b
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "No extra deposit or withdrawal fees."
-msgstr ""
+#~ msgid "No extra deposit or withdrawal fees."
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Use the bridge when sending the same token between chains without swapping. Not every token may be available for bridging"
@@ -8113,6 +8158,10 @@ msgstr ""
msgid "Error when changing network."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "Consider requesting a {limitOrderLink} instead, or click 'Swap Anyway' if you wish to continue by enabling Degen Mode."
+msgstr ""
+
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "Active Alerts: {totalActiveAlerts}/{maxActiveAlerts}"
msgstr ""
@@ -8130,8 +8179,8 @@ msgid "What is the maximum gas refund limit for a user?"
msgstr ""
#: src/pages/About/AboutKNC.tsx
-msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
-msgstr ""
+#~ msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) protocol that provides superior rates for traders and maximizes earnings for liquidity providers."
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
#~ msgid "Add liquidity to the corresponding <0>Classic pool0> to receive Liquidity Provider (LP) tokens"
@@ -8141,9 +8190,13 @@ msgstr ""
msgid "Claimed"
msgstr ""
+#: src/components/SwapForm/SlippageSetting.tsx
+#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
+msgid "Your slippage setting might be high compared to typical stable pair trades. Consider adjusting it to reduce the risk of front-running."
+msgstr ""
+
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
#: src/pages/NotificationCenter/Profile/ExportAccountModal/UserEnterPasscodeContent.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Next"
msgstr ""
@@ -8152,8 +8205,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create"
-msgstr "创建"
+#~ msgid "Create"
+#~ msgstr "创建"
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Claim on {networkName}"
@@ -8192,8 +8245,9 @@ msgstr ""
#~ msgstr ""
#: src/components/Menu/ClaimRewardModal.tsx
-#: src/components/Vesting/VestingCard.tsx
#: src/components/WalletPopup/RewardCenter.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/Vote/index.tsx
@@ -8204,10 +8258,14 @@ msgstr "领取"
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%) {4}"
msgstr ""
+#: src/pages/ElasticSnapshot/index.tsx
+msgid "You can find the vesting details of each category of assets that were affected by the exploit below."
+msgstr ""
+
#: src/components/ElasticZap/RangeSelector.tsx
#: src/components/ElasticZap/RangeSelector.tsx
-msgid "Farming Range"
-msgstr ""
+#~ msgid "Farming Range"
+#~ msgstr ""
#: src/components/Announcement/AnnoucementView.tsx
#~ msgid "to view My inbox"
@@ -8234,16 +8292,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
-msgstr ""
+#~ msgid "Tokens that could be <0>trending0> in the near future. Trending indicates interest in a token - it doesnt imply bullishness or bearishness"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useNotificationLimitOrder.tsx
msgid "Order Expired"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Staked Balance"
-msgstr ""
+#~ msgid "Staked Balance"
+#~ msgstr ""
#: src/pages/Campaign/CampaignContent.tsx
#~ msgid "Fulfil these requirements to participate in the campaign."
@@ -8258,16 +8316,14 @@ msgid "Create a new liquidity pool and earn fees on trades for this token pair."
msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Support / Resistance Levels"
-msgstr ""
+#~ msgid "Support / Resistance Levels"
+#~ msgstr ""
#: src/pages/NotificationCenter/NotificationPreference/index.tsx
msgid "Save Error"
msgstr ""
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter a recipient"
msgstr "输入收件人"
@@ -8279,7 +8335,6 @@ msgstr "输入收件人"
#: src/components/Announcement/PrivateAnnoucement/InboxItemPoolPosition.tsx
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "Out of range"
msgstr ""
@@ -8304,13 +8359,17 @@ msgstr ""
#~ msgid "An error occurred. Try refreshing the price rate or increase max slippage"
#~ msgstr ""
-#: src/pages/IncreaseLiquidity/index.tsx
-msgid "404"
+#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
+msgid "Expires in"
msgstr ""
+#: src/pages/IncreaseLiquidity/index.tsx
+#~ msgid "404"
+#~ msgstr ""
+
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic Farm"
-msgstr ""
+#~ msgid "Dynamic Farm"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
#: src/pages/Bridge/Disclaimer.tsx
@@ -8324,11 +8383,10 @@ msgid "Notifications"
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Identify0> the Elastic farm you would like to participate in."
-msgstr ""
+#~ msgid "<0>Identify0> the Elastic farm you would like to participate in."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/CustomPopup.tsx
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
msgid "Back"
msgstr "返回"
@@ -8337,16 +8395,16 @@ msgstr "返回"
#~ msgstr "您目前的头寸"
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Supplying {amountAText} and {amountBText} across {len} positions"
-msgstr ""
+#~ msgid "Supplying {amountAText} and {amountBText} across {len} positions"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
-msgstr ""
+#~ msgid "Some of your current farms have new farming ranges. Check them out below to see if you'd like to participate in them. You are still earning farming rewards from your current farming range."
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
-msgstr ""
+#~ msgid "Total estimated return based on yearly fees and bonus rewards of the pool."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/Status.tsx
msgid "Checking"
@@ -8356,8 +8414,11 @@ msgstr ""
msgid "TVL From DEXs"
msgstr ""
+#: src/components/swapv2/GasTokenSetting.tsx
+msgid "The PayMaster module & contracts are developed and operated by HoldStations, <0>details0>"
+msgstr ""
+
#: src/components/NavigationTabs/index.tsx
-#: src/components/YieldPools/ShareFarmAddressModal.tsx
msgid "Share with your friends!"
msgstr ""
@@ -8365,8 +8426,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "24h volume"
-msgstr ""
+#~ msgid "24h volume"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationModal.tsx
#~ msgid "Email is invalid format"
@@ -8385,53 +8446,39 @@ msgstr ""
msgid "{0}% Transaction Fee"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/hooks/useGetInputError.tsx
#: src/hooks/useWrapCallback.ts
#: src/hooks/useWrapCallback.ts
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/state/burn/hooks.ts
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/hooks.ts
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Enter an amount"
msgstr "输入金额"
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Top 25 Holders"
-msgstr ""
+#~ msgid "Top 25 Holders"
+#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/Header/web3/SelectWallet.tsx
#: src/components/Menu/FaucetModal.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
#: src/components/swapv2/LimitOrder/ActionButtonLimitOrder.tsx
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
-#: src/components/YieldPools/ListItem.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/Bridge/SwapForm.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
#: src/pages/KyberDAO/Vote/index.tsx
#: src/pages/KyberDAO/Vote/ProposalItem/index.tsx
-#: src/pages/MyEarnings/Placeholder.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/components/RequireConnectWallet.tsx
#: src/state/burn/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
#: src/state/mint/proamm/hooks.tsx
@@ -8443,8 +8490,8 @@ msgid "Suitable for pairs with low price volatility. Anticipating price to fluct
msgstr ""
#: src/components/Menu/index.tsx
-msgid "Business Enquiries"
-msgstr ""
+#~ msgid "Business Enquiries"
+#~ msgstr ""
#: src/pages/Bridge/SelectNetwork.tsx
msgid "Select a network"
@@ -8454,13 +8501,21 @@ msgstr ""
#~ msgid "Earn more due to compounding"
#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Aggregator Trading"
+msgstr ""
+
+#: src/components/Button/index.tsx
+msgid "Approved {tokenSymbol}"
+msgstr ""
+
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "You can turn on <0>Degen Mode0> from Settings to execute trades when price impact cannot be calculated. This can result in bad rates and loss of funds!"
#~ msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by MetaMask Wallet. Disable MetaMask extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient W{nativeTokenSymbol} balance"
@@ -8471,8 +8526,8 @@ msgstr ""
#~ msgstr "即将推出"
#: src/components/Menu/index.tsx
-msgid "KyberAI Widget"
-msgstr ""
+#~ msgid "KyberAI Widget"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/PoolPosition.tsx
msgid "Current Market Price is {currentPrice} {token0Symbol} per {token1Symbol}"
@@ -8487,16 +8542,16 @@ msgid "Your order to pay {mainMsg} was successfully filled"
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/index.tsx
-msgid "Checking data..."
-msgstr ""
+#~ msgid "Checking data..."
+#~ msgstr ""
#: src/pages/Bridge/SwapForm.tsx
#~ msgid "Note: Your transfer amount ({0} {1}) is more than {2}% of the available liquidity ({poolLiquidity} {3})!"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Dynamic Farms"
-msgstr ""
+#~ msgid "About Dynamic Farms"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#~ msgid "Do you wish to have a look?"
@@ -8523,7 +8578,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/web3/NetworkModal/components/DraggableNetworkButton.tsx
-#: src/components/Menu/index.tsx
msgid "New"
msgstr "新"
@@ -8533,8 +8587,8 @@ msgstr "新"
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "Not Applicable"
-msgstr ""
+#~ msgid "Not Applicable"
+#~ msgstr ""
#: src/hooks/useLogin.tsx
#: src/hooks/useLogin.tsx
@@ -8550,8 +8604,8 @@ msgid "Delegate is only available on Ethereum chain"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "View Farms"
-msgstr ""
+#~ msgid "View Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "SELECTED PRICE RANGE"
@@ -8562,15 +8616,7 @@ msgstr ""
#~ msgstr ""
#: src/components/Button/index.tsx
-#: src/components/ElasticZap/QuickZap.tsx
#: src/components/SwapForm/SwapActionButton/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/Farm/ElasticFarmv2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Approving"
@@ -8587,8 +8633,8 @@ msgid "Github"
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
-msgstr ""
+#~ msgid "You dont have any relevant liquidity positions yet.<0/> Add liquidity to the farming pools first. Check out our <1>Pools.1>"
+#~ msgstr ""
#: src/components/SearchModal/ManageLists.tsx
#~ msgid "https:// or ipfs:// or ENS name"
@@ -8620,12 +8666,12 @@ msgid "You have already delegated your voting power to this address."
msgstr ""
#: src/components/PoolList/ListItem.tsx
-msgid "Available for yield farming"
-msgstr "可用于流动性挖矿"
+#~ msgid "Available for yield farming"
+#~ msgstr "可用于流动性挖矿"
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
-msgstr ""
+#~ msgid "You will need to install {0} extension/dapp before you can connect with it on KyberSwap. Get it <0>here↗0>"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Click Get Started to subscribe to Telegram"
@@ -8637,8 +8683,8 @@ msgstr ""
#~ msgstr "放大系数"
#: src/pages/TrueSightV2/components/table/index.tsx
-msgid "Token Name"
-msgstr ""
+#~ msgid "Token Name"
+#~ msgstr ""
#: src/components/Header/web3/SignWallet/ConfirmModal.tsx
msgid "Sign in with the connected wallet"
@@ -8649,16 +8695,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "On-chain & Open Source"
-msgstr ""
+#~ msgid "On-chain & Open Source"
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "Price Impact is Very High"
#~ msgstr "价格影响非常大"
#: src/pages/MyEarnings/EarningsBreakdownPanel.tsx
-msgid "Tokens Breakdown"
-msgstr ""
+#~ msgid "Tokens Breakdown"
+#~ msgstr ""
#: src/components/SearchModal/CurrencySearch.tsx
#~ msgid "Search token name, symbol or address"
@@ -8686,12 +8732,12 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
-msgstr ""
+#~ msgid "Anyone can access this liquidity from KyberSwap for their own use case e.g. Dapps, Aggregators."
+#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Your favourite pairs will appear here"
-msgstr ""
+#~ msgid "Your favourite pairs will appear here"
+#~ msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
#~ msgid "• Added by user"
@@ -8699,14 +8745,7 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#: src/components/RangeSelector/index.tsx
-#: src/components/YieldPools/ElasticFarmGroup/PostionDetail.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/StakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
-#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
msgid "Min Price"
msgstr ""
@@ -8719,8 +8758,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Ape Smart with <0>KyberAI0>"
-msgstr ""
+#~ msgid "Ape Smart with <0>KyberAI0>"
+#~ msgstr ""
#: src/components/SwapForm/GasPriceNote.tsx
msgid "Gas fees is very high. You will lose your funds."
@@ -8740,24 +8779,24 @@ msgid "Review Order"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Dynamic Farms"
-msgstr ""
+#~ msgid "Dynamic Farms"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmFee.tsx
#~ msgid "Total fee rewards"
#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Farming Guide"
-msgstr ""
+#~ msgid "Farming Guide"
+#~ msgstr ""
#: src/pages/Bridge/ConfirmBridgeModal.tsx
msgid "Note: It may take upto 30 minutes for your transaction to show up under Transfer History"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Static"
-msgstr ""
+#~ msgid "Static"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Staking {inputValue} KNC to KyberDAO"
@@ -8769,17 +8808,17 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "You don't have any available position, Please deposit and stake first"
-msgstr ""
+#~ msgid "You don't have any available position, Please deposit and stake first"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CommonView.tsx
#: src/pages/MyEarnings/PoolFilteringBar/ViewEarningOrPositionButton.tsx
-msgid "View Earnings"
-msgstr ""
+#~ msgid "View Earnings"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "END TIME ↓"
-msgstr ""
+#~ msgid "END TIME ↓"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "{filledPercent} Filled {increasedFilledPercent}"
@@ -8831,28 +8870,19 @@ msgstr ""
#~ msgstr ""
#: src/components/PositionCard/index.tsx
-msgid "Available for yield farming."
-msgstr ""
+#~ msgid "Available for yield farming."
+#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/AdvancedSwapDetails.tsx
#: src/components/swapv2/SwapModalFooter.tsx
-#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/ElasticLegacy/AllPositionLegacy.tsx
-#: src/pages/IncreaseLiquidity/Chart.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/PriceRangeChart.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
-#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
msgid "Current Price"
msgstr "当前价格"
@@ -8862,8 +8892,8 @@ msgstr "当前价格"
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "View more ↗"
-msgstr ""
+#~ msgid "View more ↗"
+#~ msgstr ""
#: src/pages/CreateReferral/ShareLinkModal.tsx
#~ msgid "Successfully Created"
@@ -8889,13 +8919,15 @@ msgstr ""
msgid "Deposit"
msgstr ""
+#: src/components/TransactionConfirmationModal/index.tsx
+msgid "Add {0} to {name}"
+msgstr ""
+
#: src/components/PositionCard/index.tsx
msgid "One token is close to 0% in the pool ratio. Pool might go inactive."
msgstr "一个代币在池中的比例接近0%时,池可能会变得不活跃。"
#: src/components/SwapForm/hooks/useGetInputError.tsx
-#: src/state/swap/hooks.ts
-#: src/state/swap/useAggregator.ts
msgid "Invalid recipient"
msgstr "收件人无效"
@@ -8910,16 +8942,16 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/ListView.tsx
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
-msgstr ""
+#~ msgid "You still have {0} in liquidity to stake to earn even more farming rewards"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your order to pay {mainMsg} has expired{filledComponent}"
msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
-msgstr ""
+#~ msgid "Tokens with a <0>significant change in KyberScore0> between two consecutive time periods. This may indicate a change in trend of the token."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "You can place limit orders, bridge tokens, or buy crypto with multiple payment options!"
@@ -8950,12 +8982,12 @@ msgid "On the “Pending” tab, there is a countdown timer showing when pending
msgstr ""
#: src/constants/networks.ts
-msgid "Elastic is not supported on Aurora. Please switch to other chains"
-msgstr ""
+#~ msgid "Elastic is not supported on Aurora. Please switch to other chains"
+#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↑"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↑"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapModalAreYouSure.tsx
msgid "Due to market conditions, your output has been updated from {0} {1} to {2} {3} ({formattedOutputChangePercent}%)."
@@ -8973,7 +9005,6 @@ msgstr ""
msgid "You don't have any balance token"
msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
#: src/pages/AddLiquidityV2/styled.tsx
msgid "Zap will be available soon."
msgstr ""
@@ -8995,7 +9026,6 @@ msgstr "导入"
#: src/components/SwapForm/AddMEVProtectionModal.tsx
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
-#: src/pages/TrueSightV2/components/WatchlistButton.tsx
msgid "Yes"
msgstr ""
@@ -9039,7 +9069,6 @@ msgid "Due to a potential issue with our legacy <0>Elastic protocol0>, we have
msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/Vote/VoteConfirmModal.tsx
msgid "Vote"
msgstr ""
@@ -9066,12 +9095,12 @@ msgstr "收到的最小值"
#: src/pages/TrueSightV2/components/shareContent/ExploreTopShareContent.tsx
#: src/pages/TrueSightV2/components/shareContent/KyberScoreShareContent.tsx
-msgid "Calculated at {0} when price was {1}"
-msgstr ""
+#~ msgid "Calculated at {0} when price was {1}"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
-msgid "Update Selected"
-msgstr ""
+#~ msgid "Update Selected"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
msgid "Cancel All"
@@ -9083,13 +9112,17 @@ msgid "I pay"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "{0}% claimable"
-msgstr ""
+#~ msgid "{0}% claimable"
+#~ msgstr ""
#: src/pages/MyPool/index.tsx
msgid "Here you can view all your liquidity and staked balances in the Classic Pools."
msgstr ""
+#: src/components/SwapForm/PriceImpactNote.tsx
+msgid "<0><1>Price Impact1>0> is very high. You will lose funds!"
+msgstr ""
+
#: src/pages/Verify/index.tsx
#~ msgid "Your verification link has expired!"
#~ msgstr ""
@@ -9100,8 +9133,8 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Risk"
-msgstr ""
+#~ msgid "Estimated Risk"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
#: src/pages/SwapV3/HeaderRightMenu.tsx
@@ -9123,12 +9156,12 @@ msgid "Liquidity Sources"
msgstr ""
#: src/pages/TrueSightV2/components/FeedbackSurvey.tsx
-msgid "Fill survey"
-msgstr ""
+#~ msgid "Fill survey"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
-msgstr ""
+#~ msgid "<0>On the lookout for tokens?0> <1/>Start with the Rankings section. You will see top tokens ranked by Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon and Currently Trending."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "In this default delegation method, your delegate is responsible for voting on your behalf and distributing your KNC rewards to you, though only you can withdraw/unstake your own KNC"
@@ -9157,14 +9190,13 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Insufficient liquidity available. Please reload page and try again!"
-msgstr "可用的流动性不足。请重新加载页面并再次尝试!"
+#~ msgid "Insufficient liquidity available. Please reload page and try again!"
+#~ msgstr "可用的流动性不足。请重新加载页面并再次尝试!"
#: src/components/NavigationTabs/index.tsx
msgid "Use this tool to find pairs that don't automatically appear in the interface"
msgstr ""
-#: src/pages/PartnerSwap/index.tsx
#: src/pages/SwapV3/index.tsx
msgid "Your trade route"
msgstr "您的交易路由"
@@ -9212,7 +9244,11 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top CEX Positive Netflow Tokens"
+#~ msgid "Top CEX Positive Netflow Tokens"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "You have chosen option C for KyberSwap Elastic Exploit Treasury Grant Program"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
@@ -9245,8 +9281,8 @@ msgstr "不足 W{0} 余额"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "You're first in line!"
-msgstr ""
+#~ msgid "You're first in line!"
+#~ msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
#~ msgid "Select All"
@@ -9271,20 +9307,25 @@ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "KyberScore Delta"
-msgstr ""
+#~ msgid "KyberScore Delta"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Unstaked your liquidity"
#~ msgstr ""
#: src/pages/About/KyberSwapGeneralIntro.tsx
-msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgid "KyberSwap is also an automated market maker (AMM) with industry-leading liquidity protocols and <0>concentrated liquidity0>. Liquidity providers can add liquidity to our pools & <1>earn fees1>!"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Phase 2"
msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Top Trade Tokens"
-msgstr ""
+#~ msgid "Top Trade Tokens"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/index.tsx
#~ msgid "You don't have any order history"
@@ -9295,8 +9336,8 @@ msgid "Fees charged by KyberSwap and Squid."
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "MY DEPOSIT ↓"
-msgstr ""
+#~ msgid "MY DEPOSIT ↓"
+#~ msgstr ""
#: src/hooks/useWrapCallback.ts
msgid "Insufficient {nativeTokenSymbol} balance"
@@ -9308,8 +9349,8 @@ msgstr ""
#: src/components/swapv2/PairSuggestion/index.tsx
#: src/components/swapv2/PairSuggestion/PairSuggestionItem.tsx
-msgid "You can only favorite up to three token pairs."
-msgstr ""
+#~ msgid "You can only favorite up to three token pairs."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
#: src/pages/BuyCrypto/index.tsx
@@ -9335,7 +9376,11 @@ msgid "Copy address to clipboard"
msgstr ""
#: src/components/swapv2/LimitOrder/LimitOrderForm.tsx
-msgid "Expires In"
+#~ msgid "Expires In"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/InstantClaim.tsx
+msgid "Available assets for claiming"
msgstr ""
#: src/components/Menu/index.tsx
@@ -9344,8 +9389,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "AVG APR"
-msgstr ""
+#~ msgid "AVG APR"
+#~ msgstr ""
#: src/pages/PoolFinder/index.tsx
msgid "Select a token to find your liquidity."
@@ -9356,8 +9401,8 @@ msgstr "选择一个代币以找到您的流动性。"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/SubscribeForm.tsx
-msgid "Referral Code (Optional)"
-msgstr ""
+#~ msgid "Referral Code (Optional)"
+#~ msgstr ""
#: src/components/PoolList/ItemCard/index.tsx
#: src/components/PositionCard/index.tsx
@@ -9369,8 +9414,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Seamless liquidity."
-msgstr ""
+#~ msgid "Seamless liquidity."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
#~ msgid "Unable to calculate Price Impact"
@@ -9388,13 +9433,17 @@ msgstr ""
#~ msgid "Update list"
#~ msgstr "更新列表"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#: src/components/swapv2/LimitOrder/OrderBook/index.tsx
+msgid "No orders."
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "<0>Whether you're looking to identify new tokens to trade, or get alpha on a specific token, KyberAI has it all! KyberAI currently provides trading insights on <1>4000+ tokens1> across <2>7 blockchains!2>0> <3>For traders who are in discovery mode, start with the Rankings section. Here you will see top tokens under each of the 7 categories - <4>Bullish, Bearish, Top CEX Inflow, Top CEX Outflow, Top Traded, Trending Soon, Currently Trending.4> We update the token rankings multiple times a day!3> <5>For traders looking to spot alpha on specific tokens, start with the Explore section. You will find a number of On-Chain and Technical insights on your token that you can look at to make an informed trading decision.5>"
+#~ msgstr ""
+
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
-msgstr ""
+#~ msgid "You can add more tokens to your watchlist from <0>KyberAI0>.<1/>You can watch up to {WATCHLIST_MAX_LIMIT} tokens"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Terms and Conditions"
@@ -9426,32 +9475,36 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useKyberAIData.tsx
-msgid "All {displayName}"
-msgstr ""
+#~ msgid "All {displayName}"
+#~ msgstr ""
#: src/components/TransactionSettings/index.tsx
msgid "Zap will include DEX aggregator to find the best price."
msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Email"
+#~ msgid "Your Email"
+#~ msgstr ""
+
+#: src/constants/networks.ts
+msgid "Classic is not supported on Blast. Please switch to other chains"
msgstr ""
#: src/pages/TrueSightV2/index.tsx
-msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
-msgstr ""
+#~ msgid "Subscribe to receive daily email notifications witha curated list of tokens from each category!"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/shareContent/TokenAnalysisListShareContent.tsx
-msgid "Today, <0>{0}0>"
-msgstr ""
+#~ msgid "Today, <0>{0}0>"
+#~ msgstr ""
#: src/components/WalletPopup/SendToken/WarningBrave.tsx
msgid "Notice for Brave wallet users"
msgstr ""
#: src/pages/TrueSightV2/components/TokenOverview.tsx
-msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
-msgstr ""
+#~ msgid "KyberScore uses AI to measure the upcoming trend of a token (bullish or bearish) by taking into account multiple on-chain and off-chain indicators. The score ranges from 0 to 100. Higher the score, more bullish the token in the short-term. Read more <0>here ↗0>"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapBrief.tsx
msgid "Output Amount (incl. fee)"
@@ -9462,20 +9515,20 @@ msgid "Email Verified"
msgstr ""
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "You can only create up to 5 custom watchlists."
-msgstr ""
+#~ msgid "You can only create up to 5 custom watchlists."
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Tier"
msgstr ""
#: src/pages/Farm/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Active Farms"
-msgstr ""
+#~ msgid "Active Farms"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Can be bought"
@@ -9487,16 +9540,16 @@ msgstr ""
#~ msgstr "信息"
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "Low"
-msgstr ""
+#~ msgid "Low"
+#~ msgstr ""
#: src/pages/TrueSight/index.tsx
#~ msgid "You can subscribe to email notifications for tokens that could be trending soon. We will send out notifications periodically on the top 3 tokens that could be trending soon"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
-msgstr ""
+#~ msgid "<0>Monitor token prices - Set a price alert0>, sit back and we'll notify you."
+#~ msgstr ""
#:
#~ msgid "Max APR Available ↗️"
@@ -9511,8 +9564,8 @@ msgid "Specify the amount of time that must pass before the alert can be fired a
msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
-msgstr ""
+#~ msgid "<0>Approve0> the farming contract (if you haven't) to let it access your liquidity positions (NFT tokens)."
+#~ msgstr ""
#: src/components/Badge/RangeBadge.tsx
msgid "The price of this pool is outside of your selected price range. Currently, your position is not earning any fees or rewards."
@@ -9555,10 +9608,18 @@ msgstr ""
#: src/pages/Farm/ElasticFarmv2/components/UnstakeWithNFTsModal.tsx
#: src/pages/Farm/ElasticFarmv2/components/UpdateLiquidityModal.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "My Rewards"
-msgstr "我的奖励"
+#~ msgid "My Rewards"
+#~ msgstr "我的奖励"
+
+#: src/pages/About/AboutKyberSwap/index.tsx
+msgid "<0>Swap0> Tokens at Superior Rates"
+msgstr ""
#: src/components/SwapForm/hooks/useBuildRoute.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
#: src/state/burn/hooks.ts
#: src/state/mint/hooks.ts
msgid "Something went wrong"
@@ -9573,8 +9634,8 @@ msgid "Open Source"
msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
-msgstr ""
+#~ msgid "An intelligent platform that provides valuable insights on <0>4000+ Tokens0> across <1>7 Chains1>."
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Token pool analytics →"
@@ -9585,8 +9646,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ListItem.tsx
-msgid "Get pool info"
-msgstr ""
+#~ msgid "Get pool info"
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/MigrateModal.tsx
msgid "KNC Migration"
@@ -9598,8 +9659,8 @@ msgstr ""
#~ msgstr "最大的滑点:"
#: src/components/PoolList/ItemCard/index.tsx
-msgid "View Pool Details"
-msgstr ""
+#~ msgid "View Pool Details"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/SwapDetails/UpdatedBadge.tsx
msgid "We got you a higher amount. The initial output amount was {output}"
@@ -9610,8 +9671,8 @@ msgid "Learn more about our limit orders <0>here0>."
msgstr ""
#: src/state/farms/elastic/hooks.ts
-msgid "Stake Error"
-msgstr ""
+#~ msgid "Stake Error"
+#~ msgstr ""
#: src/utils/errorMessage.ts
msgid "Your chain is mismatched, please make sure your wallet is switch to the expected chain."
@@ -9621,10 +9682,15 @@ msgstr ""
msgid "Confirm this transaction in your wallet"
msgstr "在您的钱包中确认此交易"
-#: src/pages/TrueSightV2/components/TutorialModal.tsx
-msgid "Let's go!"
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Opt Out"
msgstr ""
+#: src/pages/TrueSightV2/components/TutorialModal.tsx
+#~ msgid "Let's go!"
+#~ msgstr ""
+
#: src/pages/ProAmmPool/index.tsx
#~ msgid "Staked Positions"
#~ msgstr ""
@@ -9639,10 +9705,10 @@ msgstr ""
#~ msgstr "管理奖励池中的流动性"
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "to Centralized Exchanges"
-msgstr ""
+#~ msgid "to Centralized Exchanges"
+#~ msgstr ""
-#: src/components/Menu/index.tsx
+#: src/components/Header/groups/CampaignNavGroup.tsx
msgid "Campaigns"
msgstr ""
@@ -9655,7 +9721,6 @@ msgstr ""
#~ msgstr "夜间模式"
#: src/components/PositionCard/index.tsx
-#: src/pages/MyEarnings/ClassicPools/SinglePool/Position.tsx
msgid "Total LP Tokens"
msgstr "LP代币总数"
@@ -9680,7 +9745,6 @@ msgstr ""
#~ msgstr ""
#: src/components/Header/groups/KyberDaoGroup.tsx
-#: src/components/Menu/index.tsx
#: src/pages/KyberDAO/KNCUtility/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
msgid "KNC Utility"
@@ -9718,7 +9782,6 @@ msgstr ""
#~ msgstr ""
#: src/components/SearchModal/bridge/CurrencySearchBridge.tsx
-#: src/components/YieldPools/ElasticFarmGroup/index.tsx
msgid "Pool"
msgstr "池"
@@ -9731,8 +9794,8 @@ msgstr "池"
#~ msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "Top traded pairs"
-msgstr ""
+#~ msgid "Top traded pairs"
+#~ msgstr ""
#: src/components/LiveChart/index.tsx
msgid "Chart is unavailable right now"
@@ -9743,7 +9806,6 @@ msgstr ""
#~ msgstr ""
#: src/components/ConfirmAddModalBottom/index.tsx
-#: src/pages/Pools/index.tsx
msgid "Create Pool"
msgstr ""
@@ -9752,12 +9814,10 @@ msgstr ""
#~ msgstr "搜索名称或粘贴地址"
#: src/pages/MyEarnings/Positions.tsx
-msgid "View All"
-msgstr ""
+#~ msgid "View All"
+#~ msgstr ""
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/ProAmm/ProAmmPoolStat.tsx
-#: src/pages/ProAmmPools/CardItem.tsx
msgid "Volume (24H)"
msgstr ""
@@ -9766,12 +9826,12 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "AMP LIQUIDITY ↓"
-msgstr ""
+#~ msgid "AMP LIQUIDITY ↓"
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
-msgstr ""
+#~ msgid "Thousands of users and multiple decentralized applications are already providing and using our liquidity."
+#~ msgstr ""
#: src/components/Menu/NavDropDown.tsx
#~ msgid "{title}"
@@ -9798,8 +9858,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "HIGHER RETURNS"
-msgstr ""
+#~ msgid "HIGHER RETURNS"
+#~ msgstr ""
#: src/pages/BuyCrypto/index.tsx
msgid "A cryptocurrency wallet gives you access to your digital tokens and acts as a gateway to many blockchain applications like KyberSwap. You can buy, store, send and swap tokens using this wallet.<0/><1/>On KyberSwap we support a list of wallets including: MetaMask, Coin98, Wallet Connect, Coinbase Wallet, Ledger and others."
@@ -9810,8 +9870,8 @@ msgid "Cancel all orders failed. Please try again."
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number of Trades / Type of Trade"
-msgstr ""
+#~ msgid "Number of Trades / Type of Trade"
+#~ msgstr ""
#: src/pages/Bridge/Disclaimer.tsx
msgid "However, in the event of a security breach on our partners platform, KyberSwap won't assume any liability for any losses incurred."
@@ -9833,6 +9893,7 @@ msgstr ""
#~ msgid "Stands for amplification factor. Pools with a higher AMP provide higher capital efficiency within a particular price range. We recommend higher AMP for stable token pairs and lower AMP for volatile token pairs"
#~ msgstr "代表放大系数。具有较高AMP的池在特定的价格范围内提供较高的资本效率。我们建议稳定的代币对采用较高的AMP,波动大的代币对采用较低的AMP。"
+#: src/pages/ElasticSnapshot/components/InstantClaimModal.tsx
#: src/pages/ElasticSnapshot/index.tsx
#: src/pages/ElasticSnapshot/index.tsx
msgid "Total Amount (USD)"
@@ -9883,8 +9944,8 @@ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-msgid "Increase"
-msgstr ""
+#~ msgid "Increase"
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/index.tsx
#: src/pages/CrossChain/TransfersHistory/TabSelector.tsx
@@ -9918,16 +9979,16 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
-msgid "Pool Information"
-msgstr "Pool Info"
+#~ msgid "Pool Information"
+#~ msgstr "Pool Info"
#: src/components/Popups/ListUpdatePopup.tsx
#~ msgid "The token list \"{0}\" has been updated to <0>{1}0>."
#~ msgstr "代币列表“{0}”已更新为 <0>{1}0>。"
#: src/pages/MyEarnings/ElasticPools/SinglePosition/PositionView.tsx
-msgid "Amount staked in a farm."
-msgstr ""
+#~ msgid "Amount staked in a farm."
+#~ msgstr ""
#: src/utils/time.ts
#~ msgid "{min} minutes ago"
@@ -9938,8 +9999,8 @@ msgid "You are delegating your voting power to this address. Your stake balance
msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Trending Soon:"
-msgstr ""
+#~ msgid "Trending Soon:"
+#~ msgstr ""
#: src/components/swap/AdvancedSwapDetails.tsx
#: src/components/swap/SwapModalFooter.tsx
@@ -9951,8 +10012,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/NewUpdateAnnoucement.tsx
-msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
-msgstr ""
+#~ msgid "<0><1>We have created a new rankings list called <2>KyberScore Delta2> for tokens that have a significant change in the KyberScore. Now you can spot tokens that go from bearish to bullish and vice-versa immediately!1><3>Create multiple <4>custom watchlists4> and organize your favorite tokens more easily. Hit the subscribe button to receive daily market updates on tokens in your watchlist!3><5>We have created a new rankings list called <6>Funding Rates6> for tokens based on funding rates from centralized exchanges. Now you can get an overview of tokens that are being longed or shorted in real-time5><7><8>Filter tokens8> in the rankings by chain, market cap, number of holders and more. You can also sort the tokens in the rankings.7>0> <9>We have many more upgrades coming up so keep an eye out!9>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignButtonWithOptions.tsx
#~ msgid "Swap on {networkName}"
@@ -9970,7 +10031,6 @@ msgstr ""
msgid "None of the liquidity position(s) held by your wallet ({0}) were affected by the exploit."
msgstr ""
-#: src/components/Header/web3/WalletModal/PendingView.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "Try Again"
msgstr "再试一次"
@@ -9980,8 +10040,8 @@ msgstr "再试一次"
#~ msgstr ""
#: src/pages/TrueSightV2/components/table/LiquidityMarkets.tsx
-msgid "Decentralized Exchanges"
-msgstr ""
+#~ msgid "Decentralized Exchanges"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonGoogle.tsx
msgid "Sign-In with Google"
@@ -9996,17 +10056,17 @@ msgid "{0} out of {numberOfDEXes} selected"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Code Audited"
-msgstr ""
+#~ msgid "Code Audited"
+#~ msgstr ""
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
#: src/pages/MyEarnings/ClassicPools/SinglePool/index.tsx
-msgid "Available for yield farming. Click {here} to go to the farm."
-msgstr ""
+#~ msgid "Available for yield farming. Click {here} to go to the farm."
+#~ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Change network"
-msgstr ""
+#~ msgid "Change network"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Value of each trade (calculated at the point of the trade) on KyberSwap has to be ≥ $200."
@@ -10016,10 +10076,18 @@ msgstr ""
msgid "You have turned on Degen Mode from settings. Trades with very high price impact can be executed"
msgstr ""
+#: src/components/swapv2/TokenInfo/index.tsx
+msgid "Token security info provided by Goplus. Please conduct your own research before trading"
+msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Crosschain amount larger than {amount} {symbol} could take up to 12 hours"
msgstr ""
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Total Vested Amount (USDC)"
+msgstr ""
+
#: src/components/swapv2/SwapModalHeader.tsx
#~ msgid "We may send multiple tx to complete the swap"
#~ msgstr ""
@@ -10029,8 +10097,8 @@ msgid "Buy"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Trades & Type of Trades"
-msgstr ""
+#~ msgid "Number of Trades & Type of Trades"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/index.tsx
#~ msgid "Create a Solflare wallet"
@@ -10042,8 +10110,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "New Positions"
-msgstr ""
+#~ msgid "New Positions"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "Farms setup using this mechanism rely on 2 factors:"
@@ -10054,12 +10122,12 @@ msgid "Completed"
msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "TVL ↓"
-msgstr ""
+#~ msgid "TVL ↓"
+#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
-msgstr ""
+#~ msgid "<0>Deposit0> your liquidity position (NFT token) into the farming contract. Then <1>stake1> it into the farm."
+#~ msgstr ""
#: src/components/WalletPopup/Transactions/index.tsx
#: src/pages/KyberDAO/StakeKNC/YourTransactionsModal.tsx
@@ -10067,16 +10135,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/index.tsx
-msgid "KyberAI Watchlist"
-msgstr ""
+#~ msgid "KyberAI Watchlist"
+#~ msgstr ""
#: src/pages/TrueSight/components/FilterBar/index.tsx
#~ msgid "Search by token name or tag"
#~ msgstr ""
#: src/pages/AddLiquidityV2/components/NewPoolNote.tsx
-msgid "Gas fees will be higher than usual due to initialization of the pool."
-msgstr ""
+#~ msgid "Gas fees will be higher than usual due to initialization of the pool."
+#~ msgstr ""
#: src/pages/GrantProgram/SingleProgram/RewardSection.tsx
#~ msgid "The final winning projects have the highest total of participants at the end of the 4-week grant campaign."
@@ -10086,6 +10154,10 @@ msgstr ""
msgid "Subscribe to receive emails on your Elastic liquidity positions across all chains. Whenever a position goes<0>out-of-range0> or comes back <1>in-range1>, you will receive an email."
msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Thank you. You have chosen to Opt Out."
+msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "ABOUT KNC"
msgstr ""
@@ -10100,8 +10172,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Number of Holders"
-msgstr ""
+#~ msgid "Number of Holders"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/index.tsx
msgid "Claming {amount} KNC"
@@ -10140,20 +10212,20 @@ msgid "KyberSwap is a decentralized exchange (DEX) aggregator and an automated m
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
-msgstr ""
+#~ msgid "After viewing the details of a Farm that you want to participate in, you can click on the <0>Stake0> button and choose the NFT position that you want to stake in the Farm. After staking, you will start receiving rewards."
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
-msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
-msgstr ""
+#~ msgid "Check out our latest trading campaigns and participate in them to earn rewards!"
+#~ msgstr ""
#: src/components/Announcement/Popups/DetailAnnouncementPopup.tsx
msgid "Detail"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
-msgstr "您正在创建一个新的池,并将成为第一个流动性提供者。您在下面提供的代币比例将设定这个池的初始价格。一旦您对该比率感到满意,请继续提供流动性。"
+#~ msgid "You are creating a new pool and will be the first liquidity provider. The ratio of tokens you supply below will set the initial price of this pool. Once you are satisfied with the rate, proceed to supply liquidity."
+#~ msgstr "您正在创建一个新的池,并将成为第一个流动性提供者。您在下面提供的代币比例将设定这个池的初始价格。一旦您对该比率感到满意,请继续提供流动性。"
#:
#:
@@ -10161,6 +10233,10 @@ msgstr "您正在创建一个新的池,并将成为第一个流动性提供者
#~ msgid "APY"
#~ msgstr ""
+#: src/pages/About/AboutKNC.tsx
+msgid "KNC is a utility and governance token and an integral part of Kyber Network and its product KyberSwap - the multi-chain decentralized exchange (DEX) that provides superior rates for traders."
+msgstr ""
+
#: src/components/swap/AdvancedSwapDetails.tsx
#~ msgid "Route"
#~ msgstr "路由"
@@ -10174,12 +10250,12 @@ msgid "this profile"
msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
-msgid "View positions"
-msgstr ""
+#~ msgid "View positions"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Share this token"
-msgstr ""
+#~ msgid "Share this token"
+#~ msgstr ""
#: src/pages/Swap/index.tsx
#~ msgid "Price:"
@@ -10189,10 +10265,6 @@ msgstr ""
msgid "Order has been successfully cancelled."
msgstr ""
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/RemoveLiquidityProAmm/index.tsx
msgid "Preview"
msgstr ""
@@ -10210,12 +10282,12 @@ msgid "View less"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
-msgid "Price Range ({0} per {1})"
-msgstr ""
+#~ msgid "Price Range ({0} per {1})"
+#~ msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
-msgstr ""
+#~ msgid "Dynamic farms incentivize farmers that provide liquidity to a pool in a customizable price range that supports the current price of the pool. Each farmer can choose their own price range. Learn more <0>here ↗0>."
+#~ msgstr ""
#: src/components/YieldPools/HarvestAll.tsx
#~ msgid "My Total Rewards"
@@ -10280,8 +10352,8 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmPoolSort.tsx
-msgid "FEES ↑"
-msgstr ""
+#~ msgid "FEES ↑"
+#~ msgstr ""
#: src/pages/ElasticSwap/hooks/index.ts
msgid "Swap Error"
@@ -10293,10 +10365,14 @@ msgstr ""
msgid "Confirm Swap Details"
msgstr ""
-#: src/components/Tutorial/TutorialSwap/constant.ts
-msgid "KyberAI - Ape Smart!"
+#: src/utils/errorMessage.ts
+msgid "Insufficient ERC20 balance to pay gas fee"
msgstr ""
+#: src/components/Tutorial/TutorialSwap/constant.ts
+#~ msgid "KyberAI - Ape Smart!"
+#~ msgstr ""
+
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "You will receive at least this amount, or your transaction will revert by Axelar."
msgstr ""
@@ -10314,8 +10390,8 @@ msgid "Min Price of your range is {minPrice} {token0Symbol} per {token1Symbol}"
msgstr ""
#: src/pages/Pools/FarmingPoolsMarquee.tsx
-msgid "Farming Pools"
-msgstr ""
+#~ msgid "Farming Pools"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/utils.ts
msgid "Proxy Contract"
@@ -10327,8 +10403,8 @@ msgstr ""
#: src/components/PoolList/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "There are no pools for this token pair."
-msgstr "此代币对没有池。"
+#~ msgid "There are no pools for this token pair."
+#~ msgstr "此代币对没有池。"
#: src/pages/ElasticSnapshot/index.tsx
msgid "POSITION FEE (USD)"
@@ -10339,8 +10415,8 @@ msgid "Place Limit Orders, Bridge Tokens or Buy Crypto"
msgstr ""
#: src/components/Vesting/VestingCard.tsx
-msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
-msgstr ""
+#~ msgid "The amount of rewards that are unlocked and can be claimed instantly as their vesting is over."
+#~ msgstr ""
#: src/hooks/usePermit.ts
#: src/hooks/usePermit.ts
@@ -10348,8 +10424,8 @@ msgid "Permit Error"
msgstr ""
#: src/pages/TrueSightV2/components/TruesightFooter.tsx
-msgid "Connect your wallet to start trading"
-msgstr ""
+#~ msgid "Connect your wallet to start trading"
+#~ msgstr ""
#: src/components/CurrencyInputPanel/index.tsx
msgid "Half"
@@ -10372,27 +10448,26 @@ msgstr ""
msgid "Wallet"
msgstr ""
-#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
#: src/pages/MyPool/index.tsx
msgid "Import it."
msgstr "导入它。"
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
-msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
-msgstr ""
+#~ msgid "Some farms have a target trading volume (represented by the progress bar) to determine the amount of reward you will earn. The more trading volume your liquidity positions support, the more rewards per second you will make.<0/><1/>Once you have fully unlocked the target volume, you will start earning the maximum rewards per second. Adjusting the staked amount will recalculate the target volume.<2/>Learn more <3>here.3>"
+#~ msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Live DEX Trades"
-msgstr ""
+#~ msgid "Live DEX Trades"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/NotificationCenter/KyberAI.tsx
-msgid "Here are our top tokens by KyberAI:"
-msgstr ""
+#~ msgid "Here are our top tokens by KyberAI:"
+#~ msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "POOLS | AMP"
-msgstr ""
+#~ msgid "POOLS | AMP"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/index.tsx
msgid "Here's a quick tutorial guide about KyberSwap's main features. Do you wish to have a look?"
@@ -10403,12 +10478,12 @@ msgid "Your orders below has expired:<0/>{listOrderName}"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "KyberAI Tutorial"
-msgstr ""
+#~ msgid "KyberAI Tutorial"
+#~ msgstr ""
#: src/pages/Farm/ElasticFarmCombination.tsx
-msgid "Your rewards may be automatically harvested a few days after the farm ends."
-msgstr ""
+#~ msgid "Your rewards may be automatically harvested a few days after the farm ends."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Profile updated"
@@ -10418,8 +10493,6 @@ msgstr ""
msgid "Wrong Chain"
msgstr ""
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/ActionButtons.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -10468,20 +10541,28 @@ msgid "I want to transfer"
msgstr ""
#: src/pages/MyEarnings/Positions.tsx
-msgid "{numOfInactivePositions} Inactive"
-msgstr ""
+#~ msgid "{numOfInactivePositions} Inactive"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/ListOrder/SummaryNotify.tsx
msgid "Your orders below was successfully filled:<0/>{listOrderName}"
msgstr ""
#: src/pages/MyEarnings/ShareModal.tsx
-msgid "{0} - {1}"
+#~ msgid "{0} - {1}"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "To apply for KyberSwap Treasury Grant, complete your KYC process and select your preferred option before January 31, 2024 - 14 OTC"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
#: src/pages/CreatePool/FeeTypeSelector.tsx
-msgid "Dynamic Fees"
+#~ msgid "Dynamic Fees"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Once you make a selection, you are unable to change your choice."
msgstr ""
#: src/components/SubscribeButton/NotificationPreference/index.tsx
@@ -10499,13 +10580,17 @@ msgid "Undelegate"
msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
-msgid "View Farm"
-msgstr ""
+#~ msgid "View Farm"
+#~ msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
#~ msgid "CURRENT PRICE"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Option {userSelectedOption}"
+msgstr ""
+
#: src/components/Header/index.tsx
#~ msgid "You are currently connected through WalletConnect. If you want to change the connected network, please disconnect your wallet before changing the network."
#~ msgstr ""
@@ -10520,8 +10605,8 @@ msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Outflow"
-msgstr ""
+#~ msgid "Outflow"
+#~ msgstr ""
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
@@ -10546,8 +10631,8 @@ msgid "Stake Amount"
msgstr ""
#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "Step 4: Stake in a farm"
-msgstr ""
+#~ msgid "Step 4: Stake in a farm"
+#~ msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx
#~ msgid "Add {0} to Metamask"
@@ -10567,33 +10652,32 @@ msgstr ""
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Stake your LP tokens in the farm you identified earlier."
-msgstr ""
+#~ msgid "Stake your LP tokens in the farm you identified earlier."
+#~ msgstr ""
#: src/pages/MyEarnings/TotalEarningsAndChainSelect.tsx
-msgid "This indicates change in the value of your earnings in the last 24H"
-msgstr ""
+#~ msgid "This indicates change in the value of your earnings in the last 24H"
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
-msgid "FEES (24H)"
-msgstr ""
+#~ msgid "FEES (24H)"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/EmailLoginForm.tsx
-#: src/pages/TrueSightV2/pages/RegisterWhitelist/SignInForm.tsx
msgid "Sign-In with Email"
msgstr ""
#: src/pages/CreatePool/index.tsx
-msgid "Create Classic Pool Error"
-msgstr ""
+#~ msgid "Create Classic Pool Error"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
#~ msgid "Create a watchlist of your favorite tokens, and analyze them quickly"
#~ msgstr ""
#: src/components/YieldPools/FarmGuide.tsx
-msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
-msgstr ""
+#~ msgid "Claim your farming rewards! (Note: some farms may have a vesting period)."
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Expected gas refund:"
@@ -10607,6 +10691,10 @@ msgstr ""
#~ msgid "Limit order price is >=30% higher than the market. We just want to make sure this is correct"
#~ msgstr ""
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Only available on Polygon, you may need to spend a small gas fee to complete your KYC"
+msgstr ""
+
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Gas Refund Rewards is only available on Ethereum chain. Switch your network to continue <0>here0>"
msgstr ""
@@ -10617,8 +10705,8 @@ msgid "All Chains"
msgstr ""
#: src/components/Header/web3/WalletModal/Option.tsx
-msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
-msgstr ""
+#~ msgid "Brave Wallet overridden by Phantom Wallet. Disable Phantom extension in order to use Brave Wallet."
+#~ msgstr ""
#: src/components/Tutorial/index.tsx
#: src/components/Tutorial/index.tsx
@@ -10634,8 +10722,8 @@ msgid "order to pay {tokenAmountIn} {tokenSymbolIn} and receive {tokenAmountOut}
msgstr ""
#: src/components/YieldPools/ElasticFarmModals/StakeModal.tsx
-msgid "Status"
-msgstr ""
+#~ msgid "Status"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/buttons.tsx
#~ msgid "Withdraw your liquidity positions (i.e. your NFT tokens) from the farming contract"
@@ -10644,20 +10732,20 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/FarmCard.tsx
#: src/components/YieldPools/ElasticFarmGroup/Row.tsx
-msgid "To be extended soon"
-msgstr ""
+#~ msgid "To be extended soon"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePool/SharePoolEarningsButton.tsx
-msgid "My Pool Earnings"
-msgstr ""
+#~ msgid "My Pool Earnings"
+#~ msgstr ""
#: src/pages/Oauth/AuthForm/ButtonEth.tsx
msgid "Signing In"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
-msgstr ""
+#~ msgid "Based on highest KyberScore which analyzes on-chain and off-chain indicators"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
#~ msgid "Total Trading Volume:"
@@ -10680,8 +10768,6 @@ msgstr ""
#~ msgid "via {0} token list"
#~ msgstr "通过 {0} 代币列表"
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Output is estimated. If the price changes by more than {displaySlp}% your transaction will revert."
@@ -10692,8 +10778,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/components/SearchWithDropDown.tsx
-msgid "Ape Smart!"
-msgstr ""
+#~ msgid "Ape Smart!"
+#~ msgstr ""
#: src/components/YieldPools/ElasticFarmSummary/SummaryContent.tsx
#~ msgid "The <0>total time0> your liquidity position is active (aka in range) in the pool."
@@ -10704,8 +10790,8 @@ msgid "Once an order expires, it will be cancelled automatically. No gas fees wi
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Wallets which hold 1% or more of the circulating supply of this token."
-msgstr ""
+#~ msgid "Wallets which hold 1% or more of the circulating supply of this token."
+#~ msgstr ""
#: src/pages/Bridge/PoolInfo.tsx
msgid "loading token"
@@ -10750,8 +10836,6 @@ msgstr ""
#~ msgstr "预计退还"
#: src/components/Header/groups/AboutNavGroup.tsx
-#: src/components/Header/KyberAINavItem.tsx
-#: src/components/Menu/index.tsx
#: src/components/Menu/index.tsx
msgid "About"
msgstr "关于"
@@ -10782,7 +10866,6 @@ msgstr ""
#~ msgid "You have successfully subscribed with the email address {0}"
#~ msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Insufficient Liquidity in the Liquidity Pool to Swap"
@@ -10793,8 +10876,8 @@ msgstr "流动性池中的流动性不足,无法进行兑换"
#~ msgstr "删除池代币会将您的头寸以当前比率转换回基础代币,与您在池中的份额成正比。 应计费用包含在您收到的金额中"
#: src/pages/Farm/ElasticFarmv2/components/NewRangesNotiModal.tsx
-msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
-msgstr ""
+#~ msgid "One or more of the Elastic static farm ranges you were participating in have become idle and have new farming ranges. You are still earning farming rewards from this idle farm range. However, to keep earning fees, please stake your liquidity that is in-range position"
+#~ msgstr ""
#: src/pages/KyberDAO/KNCUtility/GasRefundBox.tsx
msgid "Available to claim in <0/>"
@@ -10805,12 +10888,12 @@ msgid "Cross-Chain Bridge"
msgstr ""
#: src/components/YieldPools/FairLaunchPools.tsx
-msgid "STAKED TVL"
-msgstr ""
+#~ msgid "STAKED TVL"
+#~ msgstr ""
#: src/pages/Pools/InstructionAndGlobalData.tsx
-msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
-msgstr ""
+#~ msgid "Add liquidity to our Classic Pools and earn trading fees automatically."
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact. This can result in bad rates and loss of funds"
@@ -10821,8 +10904,8 @@ msgid "Profile"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
-msgstr ""
+#~ msgid "With our Dynamic Trade Routing technology, we aggregate liquidity from multiple DEXs (including KyberSwap) and identify superior trade routes for you."
+#~ msgstr ""
#: src/pages/NotificationCenter/Profile/index.tsx
msgid "Wallet Address"
@@ -10835,21 +10918,15 @@ msgid "Notification Preferences"
msgstr ""
#: src/components/ProAmm/ProAmmPooledTokens.tsx
-#: src/pages/MyEarnings/ElasticPools/SinglePosition/EarningView.tsx
#: src/pages/ProAmmPool/PositionListItem.tsx
msgid "My Farm APR"
msgstr ""
#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/Header/groups/SwapNavGroup.tsx
-#: src/components/PoolList/ItemCard/index.tsx
#: src/components/SwapForm/SwapActionButton/SwapButtonWithPriceImpact.tsx
#: src/components/SwapForm/SwapModal/ConfirmSwapModalContent.tsx
-#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/CrossChain/SwapForm/index.tsx
-#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
#: src/pages/SwapV3/Tabs/index.tsx
-#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
msgid "Swap"
msgstr "兑换"
@@ -10866,17 +10943,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Link"
-msgstr ""
+#~ msgid "Your Referral Link"
+#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
msgid "You can turn on Degen Mode from Settings to execute trades with very high price impact or Place a {limitOrderLink}. This can result in bad rates and loss of funds"
msgstr ""
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "KyberSwap Elastic Exploit Treasury Grant Program (“Program”) will support Affected Users who have lost Affected Assets to the KyberSwap Elastic Exploit. Under the Program, an Affected User who fulfils Eligibility Requirements can choose from one of the following options for the Treasury Grants in respect of each Affected Address of such Affected User."
+msgstr ""
+
#: src/pages/TrueSightV2/components/index.tsx
#: src/pages/TrueSightV2/components/index.tsx
-msgid "Hide"
-msgstr ""
+#~ msgid "Hide"
+#~ msgstr ""
#: src/components/swapv2/TokenInfo/SecurityInfo/Content.tsx
msgid "Attention Item"
@@ -10892,17 +10973,16 @@ msgid "Since you have chosen to keep your current profile connected, we will kee
msgstr ""
#: src/components/Badge/RangeBadge.tsx
-#: src/state/farms/elastic/hooks.ts
msgid "In range"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid ""
-"Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
-"indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
-"which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
-"increase in prices and low volume cryptocurrency could indicate prices falling."
-msgstr ""
+#~ msgid ""
+#~ "Indicates how many times a token changes hands in a given time frame. Its measured in $. Trading volume\n"
+#~ "indicates interest in a token. The more people are buying and selling something, the higher the volume,\n"
+#~ "which can drive even more interest in that token. Typically, high volume trading for a token can mean an\n"
+#~ "increase in prices and low volume cryptocurrency could indicate prices falling."
+#~ msgstr ""
#: src/pages/ProAmmPools/ListItem.tsx
#~ msgid "Share this pool"
@@ -10920,9 +11000,9 @@ msgstr ""
msgid "Language"
msgstr "语言"
-#: src/components/Menu/index.tsx
-#~ msgid "Referral"
-#~ msgstr ""
+#: src/components/Header/groups/CampaignNavGroup.tsx
+msgid "Referral"
+msgstr ""
#: src/components/swapv2/SwapSettingsPanel/SlippageSetting.tsx
#~ msgid "Slippage is high. Your transaction may be front-run"
@@ -10934,8 +11014,8 @@ msgstr ""
#: src/state/swap/hooks.ts
#: src/state/swap/useAggregator.ts
-msgid "Insufficient {symbol} balance."
-msgstr ""
+#~ msgid "Insufficient {symbol} balance."
+#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
msgid "FOR TRADERS"
@@ -10944,8 +11024,8 @@ msgstr ""
#: src/pages/AddLiquidity/TokenPair.tsx
#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/CreatePool/index.tsx
-msgid "Unamplified Pool existed"
-msgstr "现存未放大的池"
+#~ msgid "Unamplified Pool existed"
+#~ msgstr "现存未放大的池"
#: src/pages/KyberDAO/KNCUtility/index.tsx
msgid "Gas Refund Program"
@@ -10991,8 +11071,8 @@ msgstr ""
#~ msgstr "卖出的最大值"
#: src/components/YieldPools/PartnerFarmTag.tsx
-msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
-msgstr ""
+#~ msgid "KyberSwap Frax farms do not currently receive KNC incentives. They are continuously available for staking so that users can participate in KyberSwap Frax gauges to earn FXS emissions. The amount of FXS emissions depends on the results of each weekly Frax gauge voting cycle. More info: <0>https://app.frax.finance/gauge0> and <1>https://docs.frax.finance/vefxs/gauge1>"
+#~ msgstr ""
#: src/pages/Campaign/CampaignActions.tsx
#~ msgid "Banned"
@@ -11015,14 +11095,13 @@ msgstr ""
#~ msgstr "您可以通过提供单一代币(来自代币对的任一代币)向池中添加流动性。我们将自动为您创建LP代币,并将其添加到流动性池中--所有操作都在一次交易中完成。"
#: src/pages/ProAmmPools/KyberAIModalInPool.tsx
-msgid "Not Available"
-msgstr ""
+#~ msgid "Not Available"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/useValidateInputError.tsx
msgid "Invalid input amount"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is too high"
msgstr "价格影响相當大"
@@ -11032,8 +11111,8 @@ msgstr "价格影响相當大"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/TechnicalAnalysis.tsx
-msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
-msgstr ""
+#~ msgid "Funding rate is useful in identifying short-term trends. <0>Positive funding rates0> suggests traders are <1>bullish1>. Extremely positive funding rates may result in long positions getting squeezed. <2>Negative funding rates2> suggests traders are <3>bearish3>. Extremely negative funding rates may result in short positions getting squeezed."
+#~ msgstr ""
#: src/components/swapv2/SwapSettingsPanel/TransactionTimeLimitSetting.tsx
msgid "Transaction time limit"
@@ -11044,8 +11123,8 @@ msgstr "交易时限"
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
-msgstr ""
+#~ msgid "<0>Crypto traders all around the world face various challenges every day. <1>Having to stay on top of the news, making high pressure decisions, spending a lot of time researching information and analysing market movements... it's not easy.1>0><2>But what if there was a solution to these problems. What if you could have access to <3>a tool that could assist you to navigate the dizzy world of crypto with ease?3>2><4>Well, there is.4>"
+#~ msgstr ""
#: src/pages/CrossChain/CrossChainLink.tsx
msgid "Looking to make a"
@@ -11055,7 +11134,6 @@ msgstr ""
msgid "50%"
msgstr ""
-#: src/pages/AddLiquidity/ZapIn.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
msgid "Price impact is high"
msgstr "价格影响很大"
@@ -11065,16 +11143,16 @@ msgstr "价格影响很大"
#~ msgstr ""
#: src/components/YieldPools/ElasticFarmModals/DepositModal.tsx
-msgid "Deposit Selected"
-msgstr ""
+#~ msgid "Deposit Selected"
+#~ msgstr ""
#: src/components/PositionCard/index.tsx
#~ msgid "Your pool share:"
#~ msgstr "您的池份额:"
#: src/pages/Farm/ElasticFarmv2/components/FarmCard.tsx
-msgid "Manage"
-msgstr "管理"
+#~ msgid "Manage"
+#~ msgstr "管理"
#: src/pages/KyberDAO/StakeKNC/StakeKNCComponent.tsx
msgid "Insufficient amount"
@@ -11090,20 +11168,24 @@ msgstr ""
#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/pages/IncreaseLiquidity/Chart.tsx
-msgid "Your position will be 100% composed of {baseSymbol} at this price"
-msgstr ""
+#~ msgid "Your position will be 100% composed of {baseSymbol} at this price"
+#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "24h Volume"
+#~ msgid "24h Volume"
+#~ msgstr ""
+
+#: src/pages/ElasticSnapshot/components/SelectTreasuryGrant.tsx
+msgid "Choose Grant Option"
msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Click on the Settings icon"
-msgstr ""
+#~ msgid "Click on the Settings icon"
+#~ msgstr ""
#: src/components/Header/web3/WalletModal/WarningBox.tsx
-msgid "Open C98 Browser Extension"
-msgstr ""
+#~ msgid "Open C98 Browser Extension"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
#~ msgid "Add to watchlist"
@@ -11118,16 +11200,16 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Key Features"
-msgstr ""
+#~ msgid "Key Features"
+#~ msgstr ""
#: src/components/SwapForm/TradeSummary.tsx
msgid "Swap fees charged by {clientId}."
msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
-msgid "Select a Range"
-msgstr ""
+#~ msgid "Select a Range"
+#~ msgstr ""
#: src/components/YieldPools/ProMMFarmModals/StakeModal.tsx
#~ msgid "Stake your liquidity positions into the farms to start earning rewards. Only your in-range positions will earn rewards"
@@ -11138,10 +11220,9 @@ msgstr ""
#~ msgstr ""
#: src/components/SwapForm/PriceImpactNote.tsx
-msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
-msgstr ""
+#~ msgid "<0>Price Impact0><1>is very high. You will lose funds!1>"
+#~ msgstr ""
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
#: src/components/SwapForm/SlippageSetting.tsx
#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
#: src/components/swapv2/SwapModalFooter.tsx
@@ -11168,8 +11249,8 @@ msgstr ""
#: src/pages/TrueSightV2/components/TokenFilter/WatchlistSelect.tsx
#: src/pages/TrueSightV2/components/WatchlistButton.tsx
-msgid "Manage Lists"
-msgstr ""
+#~ msgid "Manage Lists"
+#~ msgstr ""
#: src/pages/KyberDAO/Vote/ProposalItem/VoteInformation.tsx
msgid "Your KIP Voting Power"
@@ -11183,17 +11264,21 @@ msgstr ""
msgid "All Closed Orders"
msgstr ""
-#: src/components/YieldPools/FarmStepGuide/index.tsx
-msgid "About Static Farms"
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
+msgid "Sign with your wallet"
msgstr ""
+#: src/components/YieldPools/FarmStepGuide/index.tsx
+#~ msgid "About Static Farms"
+#~ msgstr ""
+
#: src/pages/ElasticSnapshot/index.tsx
msgid "You can find the list of your liquidity positions in KyberSwap Elastic pools that were affected by the exploit below. Snapshots for each chain are taken based on the last block prior to the exploit.<0/><1/>Prices are sourced based on the closest available pricing data from CoinGecko immediately following the exploit."
msgstr ""
#: src/components/swapv2/PairSuggestion/ListPair.tsx
-msgid "We could not find anything. Try again."
-msgstr ""
+#~ msgid "We could not find anything. Try again."
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
msgid "You have {numberOfInsufficientFundOrders} active orders that don't have sufficient funds."
@@ -11204,8 +11289,8 @@ msgid "has been failed to transferred from"
msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
-msgstr ""
+#~ msgid "Liquidity providers can earn passive income by participating in our KyberSwap Classic protocol. Simply deposit your liquidity and start earning."
+#~ msgstr ""
#: src/pages/ProAmmPools/index.tsx
#~ msgid "YOUR LIQUIDITY"
@@ -11216,17 +11301,21 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/RegisterWhitelist/WaitListForm.tsx
-msgid "Your Referral Code"
-msgstr ""
+#~ msgid "Your Referral Code"
+#~ msgstr ""
#: src/pages/CrossChain/SwapForm/TradeTypeSelection.tsx
msgid "Regular"
msgstr ""
-#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
-msgid "Chain"
+#: src/pages/ElasticSnapshot/components/Vesting.tsx
+msgid "Grant Plan: USD stablecoins equivalent of {0} of Reference Value of Affected Assets associated with such Affected Address, vested over {1} months."
msgstr ""
+#: src/components/SwapForm/SwapModal/SwapDetails/index.tsx
+#~ msgid "Chain"
+#~ msgstr ""
+
#: src/pages/About/AboutKyberSwap/index.tsx
#~ msgid "Total Value Locked"
#~ msgstr "Total Value Locked"
@@ -11240,8 +11329,8 @@ msgid "All Active Orders"
msgstr ""
#: src/components/PoolList/index.tsx
-msgid "AMP LIQUIDITY"
-msgstr ""
+#~ msgid "AMP LIQUIDITY"
+#~ msgstr ""
#: src/components/FeeControlGroup/index.tsx
msgid "No tip"
@@ -11253,17 +11342,13 @@ msgid "Keep Current Profile"
msgstr ""
#: src/pages/TrueSightV2/pages/OnChainAnalysis.tsx
-msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
-msgstr ""
+#~ msgid "Indicates the number of addresses that hold a token. An increase in the number of holders may indicate more interest in the token and vice-versa. Number of holders may also indicate the distribution of the token. High number of holders may reduce the impact an individual (like a whale) can have on the price."
+#~ msgstr ""
#: src/pages/SwapV3/Header.tsx
msgid "Instantly buy or sell tokens at superior prices"
msgstr ""
-#: src/pages/AddLiquidity/TokenPair.tsx
-#: src/pages/AddLiquidity/ZapIn.tsx
-#: src/pages/CreatePool/index.tsx
-#: src/pages/CreatePool/index.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/TokenPair.tsx
#: src/pages/RemoveLiquidity/ZapOut.tsx
@@ -11277,8 +11362,8 @@ msgstr "使用包裹化代币"
#: src/pages/MyEarnings/ElasticPools/index.tsx
#: src/pages/MyEarnings/ElasticPools/SinglePool/index.tsx
#: src/pages/ProAmmPools/index.tsx
-msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
-msgstr ""
+#~ msgid "Average estimated return based on yearly trading fees from the pool & additional bonus rewards if you participate in the farm."
+#~ msgstr ""
#: src/pages/KyberDAO/StakeKNC/index.tsx
#: src/pages/KyberDAO/StakeKNC/index.tsx
@@ -11288,12 +11373,12 @@ msgid "Migrate"
msgstr ""
#: src/pages/TrueSightV2/components/KyberAIWidget.tsx
-msgid "My Watchlists"
-msgstr ""
+#~ msgid "My Watchlists"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/TokenAnalysisList.tsx
-msgid "Currently Trending"
-msgstr ""
+#~ msgid "Currently Trending"
+#~ msgstr ""
#: src/utils/sendTransaction.ts
#~ msgid "Error encountered. We haven’t send the transaction yet."
@@ -11304,8 +11389,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/hooks/useRenderRankingList.tsx
-msgid "Last 7d price"
-msgstr ""
+#~ msgid "Last 7d price"
+#~ msgstr ""
#: src/components/swapv2/AdvancedSwapDetails.tsx
msgid "Gas Fee: {fee} {0} for your cross-chain transaction on destination chain"
@@ -11337,22 +11422,17 @@ msgstr ""
#~ msgid "{day} {0} ago"
#~ msgstr ""
-#: src/components/ElasticZap/QuickZap.tsx
-#: src/pages/AddLiquidityV2/index.tsx
-#: src/pages/IncreaseLiquidity/index.tsx
#: src/pages/PoolFinder/index.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
-#: src/pages/TrueSightV2/components/TokenOverview.tsx
msgid "Loading"
msgstr "加载中"
#: src/pages/ProAmmPools/index.tsx
-msgid "VOLUME (24H)"
-msgstr ""
+#~ msgid "VOLUME (24H)"
+#~ msgstr ""
#: src/pages/SwapV3/Tabs/LimitTab.tsx
-msgid "Limit"
-msgstr ""
+#~ msgid "Limit"
+#~ msgstr ""
#: src/components/TransactionSettings/AdvanceModeModal.tsx
#~ msgid "Please type the word 'confirm' below to enable Advanced Mode."
@@ -11364,8 +11444,8 @@ msgid "Snapshot"
msgstr ""
#: src/pages/TrueSightV2/components/DisplaySettings.tsx
-msgid "Number / Volume of Tranfers"
-msgstr ""
+#~ msgid "Number / Volume of Tranfers"
+#~ msgstr ""
#: src/pages/Verify/VerifyComponent.tsx
#~ msgid "Subscription Error"
@@ -11384,16 +11464,16 @@ msgstr ""
#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemKyberAI.tsx
-msgid "Bearish:"
-msgstr ""
+#~ msgid "Bearish:"
+#~ msgstr ""
#: src/pages/TrueSightV2/pages/SingleToken.tsx
-msgid "Set a price alert"
-msgstr ""
+#~ msgid "Set a price alert"
+#~ msgstr ""
#: src/pages/MyEarnings/ElasticPools/SinglePosition/CollectFeesPanel.tsx
-msgid "Fees Earned"
-msgstr ""
+#~ msgid "Fees Earned"
+#~ msgstr ""
#: src/components/Tutorial/TutorialSwap/constant.ts
#~ msgid "Customize your settings"
@@ -11413,16 +11493,16 @@ msgstr ""
#: src/pages/AddLiquidityV2/index.tsx
#: src/pages/IncreaseLiquidity/index.tsx
-msgid "Estimated Profit"
-msgstr ""
+#~ msgid "Estimated Profit"
+#~ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
msgid "This order is not supported gasless cancel. Because it was created by our old contract"
msgstr ""
#: src/components/swapv2/GasPriceTrackerPanel.tsx
-msgid "High"
-msgstr ""
+#~ msgid "High"
+#~ msgstr ""
#: src/components/Announcement/Popups/CenterPopup.tsx
#: src/components/Announcement/Popups/CtaButton.tsx
@@ -11431,6 +11511,7 @@ msgstr ""
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/swapv2/LimitOrder/Modals/CancelButtons.tsx
#: src/components/TransactionConfirmationModal/index.tsx
+#: src/pages/ElasticSnapshot/components/ChooseGrantModal.tsx
msgid "Close"
msgstr "关闭"
@@ -11441,8 +11522,8 @@ msgstr ""
#: src/components/YieldPools/ElasticFarmGroup/index.tsx
#: src/pages/Farm/ElasticFarmv2/index.tsx
-msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
-msgstr ""
+#~ msgid "Total value of liquidity positions (i.e. NFT tokens) you've deposited into the farming contract."
+#~ msgstr ""
#: src/pages/SwapV2/index.tsx
#~ msgid "<0>KyberSwap0> gets you the best token rates"
@@ -11461,8 +11542,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/Farm/index.tsx
-msgid "My Farms"
-msgstr ""
+#~ msgid "My Farms"
+#~ msgstr ""
#: src/pages/NotificationCenter/CreateAlert/ConfirmModal.tsx
msgid "View Price Alerts"
@@ -11473,15 +11554,14 @@ msgstr ""
#~ msgstr ""
#: src/pages/About/AboutKyberSwap/index.tsx
-msgid "Rainmaker Yield Farming"
-msgstr ""
+#~ msgid "Rainmaker Yield Farming"
+#~ msgstr ""
#: src/components/Announcement/PrivateAnnoucement/InboxItemLO.tsx
msgid "100% Filled"
msgstr ""
#: src/components/ProAmm/ProAmmPriceRange.tsx
-#: src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
msgid "Your position will be 100% composed of {quoteSymbol} at this price."
msgstr ""
@@ -11530,7 +11610,6 @@ msgstr ""
msgid "Swap Now"
msgstr ""
-#: src/pages/AddLiquidity/index.tsx
#: src/pages/RemoveLiquidity/index.tsx
msgid "pool"
msgstr "池"
@@ -11556,8 +11635,8 @@ msgstr ""
#~ msgstr ""
#: src/pages/TrueSightV2/pages/LandingPage.tsx
-msgid "Access deep insights & stay informed."
-msgstr ""
+#~ msgid "Access deep insights & stay informed."
+#~ msgstr ""
#: src/pages/CreateReferral/index.tsx
#~ msgid "You can include the chain in your referral link so referees are automatically re-directed to this network on KyberSwap. You will still earn commission on trades that are made on other chains and use your referral link"
diff --git a/src/state/index.ts b/src/state/index.ts
index 3351ea4a3a..d7a9ab8863 100644
--- a/src/state/index.ts
+++ b/src/state/index.ts
@@ -110,7 +110,6 @@ const store = configureStore({
[tokenApi.reducerPath]: tokenApi.reducer,
[referralApi.reducerPath]: referralApi.reducer,
[campaignApi.reducerPath]: campaignApi.reducer,
- [socialApi.reducerPath]: socialApi.reducer,
[commonServiceApi.reducerPath]: commonServiceApi.reducer,
[blackjackApi.reducerPath]: blackjackApi.reducer,
[marketOverviewApi.reducerPath]: marketOverviewApi.reducer,
diff --git a/src/state/user/actions.ts b/src/state/user/actions.ts
index 062b6c2d51..32d388d13c 100644
--- a/src/state/user/actions.ts
+++ b/src/state/user/actions.ts
@@ -1,6 +1,5 @@
import { ChainId, Token } from '@kyberswap/ks-sdk-core'
import { createAction } from '@reduxjs/toolkit'
-import { RecentConnectionMeta } from 'connection/types'
import { SupportedLocale } from 'constants/locales'
@@ -71,6 +70,3 @@ export const toggleMyEarningChart = createAction('user/toggleMyEarningChar
export const setCrossChainSetting = createAction('user/setCrossChainSetting')
export const setPaymentToken = createAction('user/setPaymentToken')
-export const updateRecentConnectionMeta = createAction('user/updateRecentConnectionMeta')
-export const setRecentConnectionDisconnected = createAction('user/setRecentConnectionDisconnected')
-export const clearRecentConnectionMeta = createAction('user/clearRecentConnectionMeta')
diff --git a/src/state/user/reducer.ts b/src/state/user/reducer.ts
index 2550d26f8b..d04c52fc57 100644
--- a/src/state/user/reducer.ts
+++ b/src/state/user/reducer.ts
@@ -1,7 +1,5 @@
import { ChainId, Token } from '@kyberswap/ks-sdk-core'
import { createReducer } from '@reduxjs/toolkit'
-import { getRecentConnectionMeta, setRecentConnectionMeta } from 'connection/meta'
-import { RecentConnectionMeta } from 'connection/types'
import {
DEFAULT_DEADLINE_FROM_NOW,
@@ -19,7 +17,6 @@ import {
addSerializedPair,
addSerializedToken,
changeViewMode,
- clearRecentConnectionMeta,
permitError,
permitUpdate,
pinSlippageControl,
@@ -28,7 +25,6 @@ import {
revokePermit,
setCrossChainSetting,
setPaymentToken,
- setRecentConnectionDisconnected,
toggleFavoriteToken,
toggleHolidayMode,
toggleMyEarningChart,
@@ -38,7 +34,6 @@ import {
updateChainId,
updatePoolDegenMode,
updatePoolSlippageTolerance,
- updateRecentConnectionMeta,
updateUserDeadline,
updateUserDegenMode,
updateUserLocale,
@@ -60,8 +55,6 @@ export type CrossChainSetting = {
}
export interface UserState {
- recentConnectionMeta?: RecentConnectionMeta
-
// the timestamp of the last updateVersion action
lastUpdateVersionTimestamp?: number
@@ -146,7 +139,6 @@ export const CROSS_CHAIN_SETTING_DEFAULT = {
}
const initialState: UserState = {
- recentConnectionMeta: getRecentConnectionMeta(),
userDegenMode: false, // For SWAP page
userDegenModeAutoDisableTimestamp: 0,
poolDegenMode: false, // For POOL and other pages
@@ -355,21 +347,6 @@ export default createReducer(initialState, builder =>
.addCase(setPaymentToken, (state, { payload }) => {
state.paymentToken = payload
})
- .addCase(updateRecentConnectionMeta, (state, { payload: meta }: { payload: RecentConnectionMeta }) => {
- setRecentConnectionMeta(meta)
- state.recentConnectionMeta = meta
- })
- .addCase(setRecentConnectionDisconnected, state => {
- if (!state.recentConnectionMeta) return
-
- const disconnectedMeta = { ...state.recentConnectionMeta, disconnected: true }
- setRecentConnectionMeta(disconnectedMeta)
- state.recentConnectionMeta = disconnectedMeta
- })
- .addCase(clearRecentConnectionMeta, state => {
- setRecentConnectionMeta(undefined)
- state.recentConnectionMeta = undefined
- })
.addCase(toggleTradeRoutes, state => {
state.showTradeRoutes = !state.showTradeRoutes
}),
diff --git a/vite.config.ts b/vite.config.ts
index 0d8962e09d..25854254f2 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -57,6 +57,8 @@ export default defineConfig({
__dirname,
'node_modules/@walletconnect/ethereum-provider/dist/index.umd.js',
),
+
+ //'@web3-react/core': path.resolve(__dirname, 'src/connection/web3reactShim.ts'),
},
},
server: {
diff --git a/yarn.lock b/yarn.lock
index 64dd653174..497e23a2b2 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1585,6 +1585,13 @@
dependencies:
regenerator-runtime "^0.14.0"
+"@babel/runtime@^7.19.4", "@babel/runtime@^7.23.2":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.4.tgz#6ef37d678428306e7d75f054d5b1bdb8cf8aa8ee"
+ integrity sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==
+ dependencies:
+ regenerator-runtime "^0.14.0"
+
"@babel/runtime@^7.20.13", "@babel/runtime@^7.21.0":
version "7.23.6"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.6.tgz#c05e610dc228855dc92ef1b53d07389ed8ab521d"
@@ -1592,13 +1599,6 @@
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/runtime@^7.22.6":
- version "7.22.10"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682"
- integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==
- dependencies:
- regenerator-runtime "^0.14.0"
-
"@babel/template@^7.16.7", "@babel/template@^7.22.15", "@babel/template@^7.22.5":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
@@ -1780,45 +1780,33 @@
resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz#371ba8be66d556812dc7fb169ebc3c08378f69d4"
integrity sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==
-"@blocto/sdk@^0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.10.0.tgz#31a4777773673b137e8c039b39ca6b348c852e64"
- integrity sha512-PjmyQZtYTl7UkQcl223S8nh7j5pmWSEnyE3bTdMoXOaXd0blj9aIbkqu1ErvHb96GII2Co+FnbcSp6ioTZG+XQ==
+"@blocto/sdk@^0.10.3":
+ version "0.10.3"
+ resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.10.3.tgz#b651a0e39425557f5cbf27530e48c5621162c9cf"
+ integrity sha512-9Ot5R3YULaX8IIRGyVYXhoGC01H+kaXCqwfLWzUSKciNYT2GxiF547LEAnT1a7e5HMrJdqjQ+94OsS32fHmq9A==
dependencies:
buffer "^6.0.3"
eip1193-provider "^1.0.1"
js-sha3 "^0.8.0"
-"@blocto/web3-react-connector@^1.0.7":
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/@blocto/web3-react-connector/-/web3-react-connector-1.0.7.tgz#eef9cf081b75cb17b7a59a7bd28f0f99f22a6313"
- integrity sha512-Zy+4NQcIb21q8Nw2BTVGDHzqLg4GAihMiNngCdHLIQwy/Xj9o6HR8phGvOlUCmAK0zdMykY54jvLSKkOYCTdnQ==
+"@blocto/wagmi-connector@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@blocto/wagmi-connector/-/wagmi-connector-2.0.4.tgz#6d70b546509500e8e921be9fb73601f946e3b480"
+ integrity sha512-7WxHiPoOtS93Cp1VUegW3T8H3fc13e2LrJ0+eoVwdeuGLuj1fBxY/pd3XMCY70XT++Dvi8JB7T2Y/DXNRoFu3Q==
dependencies:
- "@blocto/sdk" "^0.10.0"
- "@web3-react/types" "^8.1.2-beta.0"
+ "@blocto/sdk" "^0.10.3"
-"@coinbase/wallet-sdk@^3.0.4":
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.7.1.tgz#44b3b7a925ff5cc974e4cbf7a44199ffdcf03541"
- integrity sha512-LjyoDCB+7p0waQXfK+fUgcAs3Ezk6S6e+LYaoFjpJ6c9VTop3NyZF40Pi7df4z7QJohCwzuIDjz0Rhtig6Y7Pg==
+"@coinbase/wallet-sdk@4.0.4":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-4.0.4.tgz#634cd89bac93eeaf381a1f026476794e53431ed6"
+ integrity sha512-74c040CRnGhfRjr3ArnkAgud86erIqdkPHNt5HR1k9u97uTIZCJww9eGYT67Qf7gHPpGS/xW8Be1D4dvRm63FA==
dependencies:
- "@metamask/safe-event-emitter" "2.0.0"
- "@solana/web3.js" "^1.70.1"
- bind-decorator "^1.0.11"
- bn.js "^5.1.1"
buffer "^6.0.3"
- clsx "^1.1.0"
- eth-block-tracker "6.1.0"
- eth-json-rpc-filters "5.1.0"
- eth-rpc-errors "4.0.2"
- json-rpc-engine "6.1.0"
- keccak "^3.0.1"
- preact "^10.5.9"
- qs "^6.10.3"
- rxjs "^6.6.3"
+ clsx "^1.2.1"
+ eventemitter3 "^5.0.1"
+ keccak "^3.0.3"
+ preact "^10.16.0"
sha.js "^2.4.11"
- stream-browserify "^3.0.0"
- util "^0.12.4"
"@colors/colors@1.5.0":
version "1.5.0"
@@ -2565,6 +2553,38 @@
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.38.0.tgz#73a8a0d8aa8a8e6fe270431c5e72ae91b5337892"
integrity sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==
+"@ethereumjs/common@^3.2.0":
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-3.2.0.tgz#b71df25845caf5456449163012074a55f048e0a0"
+ integrity sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==
+ dependencies:
+ "@ethereumjs/util" "^8.1.0"
+ crc-32 "^1.2.0"
+
+"@ethereumjs/rlp@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-4.0.1.tgz#626fabfd9081baab3d0a3074b0c7ecaf674aaa41"
+ integrity sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==
+
+"@ethereumjs/tx@^4.1.2", "@ethereumjs/tx@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-4.2.0.tgz#5988ae15daf5a3b3c815493bc6b495e76009e853"
+ integrity sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==
+ dependencies:
+ "@ethereumjs/common" "^3.2.0"
+ "@ethereumjs/rlp" "^4.0.1"
+ "@ethereumjs/util" "^8.1.0"
+ ethereum-cryptography "^2.0.0"
+
+"@ethereumjs/util@^8.1.0":
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.1.0.tgz#299df97fb6b034e0577ce9f94c7d9d1004409ed4"
+ integrity sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==
+ dependencies:
+ "@ethereumjs/rlp" "^4.0.1"
+ ethereum-cryptography "^2.0.0"
+ micro-ftch "^0.3.1"
+
"@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.7.0":
version "5.7.0"
resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449"
@@ -2604,7 +2624,7 @@
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
-"@ethersproject/address@5.7.0", "@ethersproject/address@^5", "@ethersproject/address@^5.0.2", "@ethersproject/address@^5.7.0":
+"@ethersproject/address@5.7.0", "@ethersproject/address@^5.0.2", "@ethersproject/address@^5.7.0":
version "5.7.0"
resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37"
integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==
@@ -2756,7 +2776,7 @@
dependencies:
"@ethersproject/logger" "^5.7.0"
-"@ethersproject/providers@5.7.2", "@ethersproject/providers@^5", "@ethersproject/providers@^5.0.5":
+"@ethersproject/providers@5.7.2", "@ethersproject/providers@^5.0.5":
version "5.7.2"
resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb"
integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==
@@ -3698,16 +3718,6 @@
resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60"
integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==
-"@kyberswap/krystal-walletconnect-v2@0.0.1":
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/@kyberswap/krystal-walletconnect-v2/-/krystal-walletconnect-v2-0.0.1.tgz#ce9657ca0c8029f06209ea379d89452791210453"
- integrity sha512-/vR1nUCazlMH1lFRpI4E5xCA3xk6psd7gvWOnNjgwZqi77aML8KlXnB+PTdgmLtq/APR0FRDOqo2XVI+o11/YA==
- dependencies:
- "@walletconnect/ethereum-provider" "2.8.1"
- "@walletconnect/modal" "2.4.7"
- "@web3-react/types" "8.2.0"
- eventemitter3 "4.0.7"
-
"@kyberswap/ks-sdk-classic@^1.0.3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@kyberswap/ks-sdk-classic/-/ks-sdk-classic-1.0.3.tgz#8ee8e454b2838359a36aee387729d1d2e5aa9c20"
@@ -3901,26 +3911,186 @@
dependencies:
moo "^0.5.1"
-"@metamask/detect-provider@^1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@metamask/detect-provider/-/detect-provider-1.2.0.tgz#3667a7531f2a682e3c3a43eaf3a1958bdb42a696"
- integrity sha512-ocA76vt+8D0thgXZ7LxFPyqw3H7988qblgzddTDA6B8a/yU0uKV42QR/DhA+Jh11rJjxW0jKvwb5htA6krNZDQ==
+"@metamask/eth-json-rpc-provider@^1.0.0":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@metamask/eth-json-rpc-provider/-/eth-json-rpc-provider-1.0.1.tgz#3fd5316c767847f4ca107518b611b15396a5a32c"
+ integrity sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==
+ dependencies:
+ "@metamask/json-rpc-engine" "^7.0.0"
+ "@metamask/safe-event-emitter" "^3.0.0"
+ "@metamask/utils" "^5.0.1"
-"@metamask/safe-event-emitter@2.0.0", "@metamask/safe-event-emitter@^2.0.0":
+"@metamask/json-rpc-engine@^7.0.0":
+ version "7.3.3"
+ resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-7.3.3.tgz#f2b30a2164558014bfcca45db10f5af291d989af"
+ integrity sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==
+ dependencies:
+ "@metamask/rpc-errors" "^6.2.1"
+ "@metamask/safe-event-emitter" "^3.0.0"
+ "@metamask/utils" "^8.3.0"
+
+"@metamask/json-rpc-engine@^8.0.1", "@metamask/json-rpc-engine@^8.0.2":
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-8.0.2.tgz#29510a871a8edef892f838ee854db18de0bf0d14"
+ integrity sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==
+ dependencies:
+ "@metamask/rpc-errors" "^6.2.1"
+ "@metamask/safe-event-emitter" "^3.0.0"
+ "@metamask/utils" "^8.3.0"
+
+"@metamask/json-rpc-middleware-stream@^7.0.1":
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/@metamask/json-rpc-middleware-stream/-/json-rpc-middleware-stream-7.0.2.tgz#2e8b2cbc38968e3c6239a9144c35bbb08a8fb57d"
+ integrity sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==
+ dependencies:
+ "@metamask/json-rpc-engine" "^8.0.2"
+ "@metamask/safe-event-emitter" "^3.0.0"
+ "@metamask/utils" "^8.3.0"
+ readable-stream "^3.6.2"
+
+"@metamask/object-multiplex@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-2.0.0.tgz#aa6e4aa7b4e2f457ea4bb51cd7281d931e0aa35d"
+ integrity sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA==
+ dependencies:
+ once "^1.4.0"
+ readable-stream "^3.6.2"
+
+"@metamask/onboarding@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@metamask/onboarding/-/onboarding-1.0.1.tgz#14a36e1e175e2f69f09598e2008ab6dc1b3297e6"
+ integrity sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==
+ dependencies:
+ bowser "^2.9.0"
+
+"@metamask/providers@16.1.0":
+ version "16.1.0"
+ resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-16.1.0.tgz#7da593d17c541580fa3beab8d9d8a9b9ce19ea07"
+ integrity sha512-znVCvux30+3SaUwcUGaSf+pUckzT5ukPRpcBmy+muBLC0yaWnBcvDqGfcsw6CBIenUdFrVoAFa8B6jsuCY/a+g==
+ dependencies:
+ "@metamask/json-rpc-engine" "^8.0.1"
+ "@metamask/json-rpc-middleware-stream" "^7.0.1"
+ "@metamask/object-multiplex" "^2.0.0"
+ "@metamask/rpc-errors" "^6.2.1"
+ "@metamask/safe-event-emitter" "^3.1.1"
+ "@metamask/utils" "^8.3.0"
+ detect-browser "^5.2.0"
+ extension-port-stream "^3.0.0"
+ fast-deep-equal "^3.1.3"
+ is-stream "^2.0.0"
+ readable-stream "^3.6.2"
+ webextension-polyfill "^0.10.0"
+
+"@metamask/rpc-errors@^6.2.1":
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/@metamask/rpc-errors/-/rpc-errors-6.3.1.tgz#d5bb4740e070c3d87e91717ff4c3c6061a081cab"
+ integrity sha512-ugDY7cKjF4/yH5LtBaOIKHw/AiGGSAmzptAUEiAEGr/78LwuzcXAxmzEQfSfMIfI+f9Djr8cttq1pRJJKfTuCg==
+ dependencies:
+ "@metamask/utils" "^9.0.0"
+ fast-safe-stringify "^2.0.6"
+
+"@metamask/safe-event-emitter@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz#af577b477c683fad17c619a78208cede06f9605c"
integrity sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==
-"@metamask/utils@^3.0.1":
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-3.6.0.tgz#b218b969a05ca7a8093b5d1670f6625061de707d"
- integrity sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==
+"@metamask/safe-event-emitter@^3.0.0", "@metamask/safe-event-emitter@^3.1.1":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.1.1.tgz#e89b840a7af8097a8ed4953d8dc8470d1302d3ef"
+ integrity sha512-ihb3B0T/wJm1eUuArYP4lCTSEoZsClHhuWyfo/kMX3m/odpqNcPfsz5O2A3NT7dXCAgWPGDQGPqygCpgeniKMw==
+
+"@metamask/sdk-communication-layer@0.27.0":
+ version "0.27.0"
+ resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.27.0.tgz#8d618fadd39f11627d5b3ef1bc72867439e33ff4"
+ integrity sha512-G9LCaQzIqp5WmUmvHN6UUdjWrBh67MbRobmbbs5fcc2+9XFhj3vBgtyleUYjun91jSlPHoZeo+f/Pj4/WoPIJg==
+ dependencies:
+ bufferutil "^4.0.8"
+ date-fns "^2.29.3"
+ debug "^4.3.4"
+ utf-8-validate "^5.0.2"
+ uuid "^8.3.2"
+
+"@metamask/sdk-install-modal-web@0.26.5":
+ version "0.26.5"
+ resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.26.5.tgz#b696c78818adaff85d01a4f41fecc8fd2c80bc59"
+ integrity sha512-qVA9Nk+NorGx5hXyODy5wskptE8R7RNYTYt49VbQpJogqbbVe1dnJ98+KaA43PBN4XYMCXmcIhULNiEHGsLynA==
+ dependencies:
+ qr-code-styling "^1.6.0-rc.1"
+
+"@metamask/sdk@0.27.0":
+ version "0.27.0"
+ resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.27.0.tgz#38617985b8305a0f5d482cdd7af8ddec87968bb7"
+ integrity sha512-6sMjr/0qR700X1svPGEQ4rBdtccidBLeTC27fYQc7r9ROgSixB1DUUAyu/LoySVqt3Hu/Zm7NnAHXuT228ht7A==
+ dependencies:
+ "@metamask/onboarding" "^1.0.1"
+ "@metamask/providers" "16.1.0"
+ "@metamask/sdk-communication-layer" "0.27.0"
+ "@metamask/sdk-install-modal-web" "0.26.5"
+ "@types/dom-screen-wake-lock" "^1.0.0"
+ bowser "^2.9.0"
+ cross-fetch "^4.0.0"
+ debug "^4.3.4"
+ eciesjs "^0.3.15"
+ eth-rpc-errors "^4.0.3"
+ eventemitter2 "^6.4.7"
+ i18next "23.11.5"
+ i18next-browser-languagedetector "7.1.0"
+ obj-multiplex "^1.0.0"
+ pump "^3.0.0"
+ qrcode-terminal-nooctal "^0.12.1"
+ react-native-webview "^11.26.0"
+ readable-stream "^3.6.2"
+ rollup-plugin-visualizer "^5.9.2"
+ socket.io-client "^4.5.1"
+ util "^0.12.4"
+ uuid "^8.3.2"
+
+"@metamask/superstruct@^3.0.0", "@metamask/superstruct@^3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@metamask/superstruct/-/superstruct-3.1.0.tgz#148f786a674fba3ac885c1093ab718515bf7f648"
+ integrity sha512-N08M56HdOgBfRKkrgCMZvQppkZGcArEop3kixNEtVbJKm6P9Cfg0YkI6X0s1g78sNrj2fWUwvJADdZuzJgFttA==
+
+"@metamask/utils@^5.0.1":
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-5.0.2.tgz#140ba5061d90d9dac0280c19cab101bc18c8857c"
+ integrity sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==
dependencies:
+ "@ethereumjs/tx" "^4.1.2"
"@types/debug" "^4.1.7"
debug "^4.3.4"
semver "^7.3.8"
superstruct "^1.0.3"
+"@metamask/utils@^8.3.0":
+ version "8.5.0"
+ resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-8.5.0.tgz#ddd0d4012d5191809404c97648a837ea9962cceb"
+ integrity sha512-I6bkduevXb72TIM9q2LRO63JSsF9EXduh3sBr9oybNX2hNNpr/j1tEjXrsG0Uabm4MJ1xkGAQEMwifvKZIkyxQ==
+ dependencies:
+ "@ethereumjs/tx" "^4.2.0"
+ "@metamask/superstruct" "^3.0.0"
+ "@noble/hashes" "^1.3.1"
+ "@scure/base" "^1.1.3"
+ "@types/debug" "^4.1.7"
+ debug "^4.3.4"
+ pony-cause "^2.1.10"
+ semver "^7.5.4"
+ uuid "^9.0.1"
+
+"@metamask/utils@^9.0.0":
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-9.1.0.tgz#54e5afcec07e6032d4dd4171e862b36daa52d77e"
+ integrity sha512-g2REf+xSt0OZfMoNNdC4+/Yy8eP3KUqvIArel54XRFKPoXbHI6+YjFfrLtfykWBjffOp7DTfIc3Kvk5TLfuiyg==
+ dependencies:
+ "@ethereumjs/tx" "^4.2.0"
+ "@metamask/superstruct" "^3.1.0"
+ "@noble/hashes" "^1.3.1"
+ "@scure/base" "^1.1.3"
+ "@types/debug" "^4.1.7"
+ debug "^4.3.4"
+ pony-cause "^2.1.10"
+ semver "^7.5.4"
+ uuid "^9.0.1"
+
"@motionone/animation@^10.15.1":
version "10.15.1"
resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.15.1.tgz#4a85596c31cbc5100ae8eb8b34c459fb0ccf6807"
@@ -4006,12 +4176,26 @@
dependencies:
"@noble/hashes" "1.3.2"
-"@noble/curves@^1.0.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.1.0.tgz#f13fc667c89184bc04cccb9b11e8e7bae27d8c3d"
- integrity sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==
+"@noble/curves@1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.4.0.tgz#f05771ef64da724997f69ee1261b2417a49522d6"
+ integrity sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==
+ dependencies:
+ "@noble/hashes" "1.4.0"
+
+"@noble/curves@1.4.2", "@noble/curves@~1.4.0":
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.4.2.tgz#40309198c76ed71bc6dbf7ba24e81ceb4d0d1fe9"
+ integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==
+ dependencies:
+ "@noble/hashes" "1.4.0"
+
+"@noble/curves@^1.4.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.5.0.tgz#7a9b9b507065d516e6dce275a1e31db8d2a100dd"
+ integrity sha512-J5EKamIHnKPyClwVrzmaf5wSdQXgdHcPZIZLu3bwnbeCx8/7NPK5q2ZBWF+5FvYGByjiQQsJYX6jfgB2wDPn3A==
dependencies:
- "@noble/hashes" "1.3.1"
+ "@noble/hashes" "1.4.0"
"@noble/ed25519@^1.7.0":
version "1.7.1"
@@ -4023,21 +4207,26 @@
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183"
integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==
-"@noble/hashes@1.3.1", "@noble/hashes@^1.3.1":
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.1.tgz#8831ef002114670c603c458ab8b11328406953a9"
- integrity sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==
-
"@noble/hashes@1.3.2", "@noble/hashes@^1", "@noble/hashes@^1.0.0", "@noble/hashes@~1.3.2":
version "1.3.2"
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39"
integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==
+"@noble/hashes@1.4.0", "@noble/hashes@^1.4.0", "@noble/hashes@~1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426"
+ integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==
+
"@noble/hashes@^1.1.2", "@noble/hashes@~1.3.0":
version "1.3.0"
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1"
integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==
+"@noble/hashes@^1.3.1":
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.1.tgz#8831ef002114670c603c458ab8b11328406953a9"
+ integrity sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==
+
"@noble/secp256k1@1.7.1", "@noble/secp256k1@^1.6.3":
version "1.7.1"
resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c"
@@ -4069,6 +4258,98 @@
resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-3.4.2-solc-0.7.tgz#38f4dbab672631034076ccdf2f3201fab1726635"
integrity sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==
+"@parcel/watcher-android-arm64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84"
+ integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==
+
+"@parcel/watcher-darwin-arm64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34"
+ integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==
+
+"@parcel/watcher-darwin-x64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020"
+ integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==
+
+"@parcel/watcher-freebsd-x64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8"
+ integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==
+
+"@parcel/watcher-linux-arm-glibc@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d"
+ integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==
+
+"@parcel/watcher-linux-arm64-glibc@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7"
+ integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==
+
+"@parcel/watcher-linux-arm64-musl@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635"
+ integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==
+
+"@parcel/watcher-linux-x64-glibc@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39"
+ integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==
+
+"@parcel/watcher-linux-x64-musl@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16"
+ integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==
+
+"@parcel/watcher-wasm@^2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz#c4353e4fdb96ee14389856f7f6f6d21b7dcef9e1"
+ integrity sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==
+ dependencies:
+ is-glob "^4.0.3"
+ micromatch "^4.0.5"
+ napi-wasm "^1.1.0"
+
+"@parcel/watcher-win32-arm64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc"
+ integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==
+
+"@parcel/watcher-win32-ia32@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7"
+ integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==
+
+"@parcel/watcher-win32-x64@2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf"
+ integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==
+
+"@parcel/watcher@^2.4.1":
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8"
+ integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==
+ dependencies:
+ detect-libc "^1.0.3"
+ is-glob "^4.0.3"
+ micromatch "^4.0.5"
+ node-addon-api "^7.0.0"
+ optionalDependencies:
+ "@parcel/watcher-android-arm64" "2.4.1"
+ "@parcel/watcher-darwin-arm64" "2.4.1"
+ "@parcel/watcher-darwin-x64" "2.4.1"
+ "@parcel/watcher-freebsd-x64" "2.4.1"
+ "@parcel/watcher-linux-arm-glibc" "2.4.1"
+ "@parcel/watcher-linux-arm64-glibc" "2.4.1"
+ "@parcel/watcher-linux-arm64-musl" "2.4.1"
+ "@parcel/watcher-linux-x64-glibc" "2.4.1"
+ "@parcel/watcher-linux-x64-musl" "2.4.1"
+ "@parcel/watcher-win32-arm64" "2.4.1"
+ "@parcel/watcher-win32-ia32" "2.4.1"
+ "@parcel/watcher-win32-x64" "2.4.1"
+
"@pedrouid/environment@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec"
@@ -4550,29 +4831,21 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@safe-global/safe-apps-provider@^0.16.0":
- version "0.16.0"
- resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.16.0.tgz#55cb8ef168900fa13d4f4508a99ef00b565bf55d"
- integrity sha512-oeRlvU+2hjFx/7EbskGq30kkwL2hyfdseZZZYf6na/xD85mZ59zKO81lBxZcWnvofJFqjqtScz84PAKth9Sq2g==
+"@safe-global/safe-apps-provider@0.18.3":
+ version "0.18.3"
+ resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.18.3.tgz#805a42e24f5dde803cb96dac251a3c9e256de45b"
+ integrity sha512-f/0cNv3S4v7p8rowAjj0hDCg8Q8P/wBjp5twkNWeBdvd0RDr7BuRBPPk74LCqmjQ82P+1ltLlkmVFSmxTIT7XQ==
dependencies:
- "@safe-global/safe-apps-sdk" "7.10.0"
+ "@safe-global/safe-apps-sdk" "^9.1.0"
events "^3.3.0"
-"@safe-global/safe-apps-sdk@7.10.0":
- version "7.10.0"
- resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-sdk/-/safe-apps-sdk-7.10.0.tgz#e75fc581126f27c52ec2601da51bca5eb99b61f4"
- integrity sha512-is0QAHVoGkP06YfOPcp4X3/YUEA3wRdgFUyKZ4rT47uOEnzxA9Sm8BFJrIZqZOjjqC+aJXRMF0cE2qucS953rg==
- dependencies:
- "@safe-global/safe-gateway-typescript-sdk" "^3.5.3"
- ethers "^5.7.2"
-
-"@safe-global/safe-apps-sdk@^7.10.0":
- version "7.11.0"
- resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-sdk/-/safe-apps-sdk-7.11.0.tgz#2cbc164fb70141cdf4d3331ff222cd98a2529316"
- integrity sha512-RDamzPM1Lhhiiz0O+Dn6FkFqIh47jmZX+HCV/BBnBBOSKfBJE//IGD3+02zMgojXHTikQAburdPes9qmH1SA1A==
+"@safe-global/safe-apps-sdk@9.1.0", "@safe-global/safe-apps-sdk@^9.1.0":
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-sdk/-/safe-apps-sdk-9.1.0.tgz#0e65913e0f202e529ed3c846e0f5a98c2d35aa98"
+ integrity sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==
dependencies:
"@safe-global/safe-gateway-typescript-sdk" "^3.5.3"
- ethers "^5.7.2"
+ viem "^2.1.1"
"@safe-global/safe-gateway-typescript-sdk@^3.5.3":
version "3.9.0"
@@ -4581,6 +4854,11 @@
dependencies:
cross-fetch "^3.1.5"
+"@scure/base@^1.1.3", "@scure/base@~1.1.6":
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.7.tgz#fe973311a5c6267846aa131bc72e96c5d40d2b30"
+ integrity sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==
+
"@scure/base@~1.1.0":
version "1.1.1"
resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938"
@@ -4600,6 +4878,15 @@
"@noble/hashes" "~1.3.2"
"@scure/base" "~1.1.2"
+"@scure/bip32@1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.4.0.tgz#4e1f1e196abedcef395b33b9674a042524e20d67"
+ integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==
+ dependencies:
+ "@noble/curves" "~1.4.0"
+ "@noble/hashes" "~1.4.0"
+ "@scure/base" "~1.1.6"
+
"@scure/bip39@1.2.1":
version "1.2.1"
resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a"
@@ -4608,6 +4895,14 @@
"@noble/hashes" "~1.3.0"
"@scure/base" "~1.1.0"
+"@scure/bip39@1.3.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.3.0.tgz#0f258c16823ddd00739461ac31398b4e7d6a18c3"
+ integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==
+ dependencies:
+ "@noble/hashes" "~1.4.0"
+ "@scure/base" "~1.1.6"
+
"@sentry/browser@7.24.2":
version "7.24.2"
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.24.2.tgz#1e514448cd07ff7da78d02797149ecc1922ffcc2"
@@ -4693,6 +4988,11 @@
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
+"@socket.io/component-emitter@~3.1.0":
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz#821f8442f4175d8f0467b9daf26e3a18e2d02af2"
+ integrity sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==
+
"@solana/buffer-layout@^4.0.0":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz#b996235eaec15b1e0b5092a8ed6028df77fa6c15"
@@ -4733,27 +5033,6 @@
rpc-websockets "^7.5.0"
superstruct "^0.14.2"
-"@solana/web3.js@^1.70.1":
- version "1.78.4"
- resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.78.4.tgz#e8ca9abe4ec2af5fc540c1d272efee24aaffedb3"
- integrity sha512-up5VG1dK+GPhykmuMIozJZBbVqpm77vbOG6/r5dS7NBGZonwHfTLdBbsYc3rjmaQ4DpCXUa3tUc4RZHRORvZrw==
- dependencies:
- "@babel/runtime" "^7.22.6"
- "@noble/curves" "^1.0.0"
- "@noble/hashes" "^1.3.1"
- "@solana/buffer-layout" "^4.0.0"
- agentkeepalive "^4.3.0"
- bigint-buffer "^1.1.5"
- bn.js "^5.2.1"
- borsh "^0.7.0"
- bs58 "^4.0.1"
- buffer "6.0.3"
- fast-stable-stringify "^1.0.0"
- jayson "^4.1.0"
- node-fetch "^2.6.12"
- rpc-websockets "^7.5.1"
- superstruct "^0.14.2"
-
"@spruceid/siwe-parser@^2.1.2":
version "2.1.2"
resolved "https://registry.yarnpkg.com/@spruceid/siwe-parser/-/siwe-parser-2.1.2.tgz#3e13e7d3ac0bfdaf109a07342590eb21daee2fc3"
@@ -4858,7 +5137,7 @@
"@stablelib/constant-time" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
-"@stablelib/random@^1.0.1", "@stablelib/random@^1.0.2":
+"@stablelib/random@1.0.2", "@stablelib/random@^1.0.1", "@stablelib/random@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@stablelib/random/-/random-1.0.2.tgz#2dece393636489bf7e19c51229dd7900eddf742c"
integrity sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==
@@ -4889,7 +5168,7 @@
resolved "https://registry.yarnpkg.com/@stablelib/wipe/-/wipe-1.0.1.tgz#d21401f1d59ade56a62e139462a97f104ed19a36"
integrity sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==
-"@stablelib/x25519@^1.0.3":
+"@stablelib/x25519@1.0.3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@stablelib/x25519/-/x25519-1.0.3.tgz#13c8174f774ea9f3e5e42213cbf9fc68a3c7b7fd"
integrity sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==
@@ -5948,6 +6227,18 @@
viem "^1.6.0"
wait-on "^7.0.1"
+"@tanstack/query-core@5.52.0":
+ version "5.52.0"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.52.0.tgz#44070b2d6eb58c3a5ce2788471d842e932294a87"
+ integrity sha512-U1DOEgltjUwalN6uWYTewSnA14b+tE7lSylOiASKCAO61ENJeCq9VVD/TXHA6O5u9+6v5+UgGYBSccTKDoyMqw==
+
+"@tanstack/react-query@^5.52.1":
+ version "5.52.1"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.52.1.tgz#d454e2bb86ab21621de016c7044514d6412db7ee"
+ integrity sha512-soyn4dNIUZ8US8NaPVXv06gkZFHaZnPfKWPDjRJjFRW3Y7WZ0jx72eT6zhw3VQlkMPysmXye8l35ewPHspKgbQ==
+ dependencies:
+ "@tanstack/query-core" "5.52.0"
+
"@testing-library/cypress@^9.0.0":
version "9.0.0"
resolved "https://registry.yarnpkg.com/@testing-library/cypress/-/cypress-9.0.0.tgz#3facad49c4654a99bbd138f83f33b415d2d6f097"
@@ -6444,6 +6735,11 @@
resolved "https://registry.yarnpkg.com/@types/doctrine/-/doctrine-0.0.9.tgz#d86a5f452a15e3e3113b99e39616a9baa0f9863f"
integrity sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==
+"@types/dom-screen-wake-lock@^1.0.0":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@types/dom-screen-wake-lock/-/dom-screen-wake-lock-1.0.3.tgz#c3588a5f6f40fae957f9ce5be9bc4927a61bb9a0"
+ integrity sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==
+
"@types/dompurify@^3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@types/dompurify/-/dompurify-3.0.3.tgz#d34ba1cf4f8b8f2cbfe5d3118dc3b7d81858fa42"
@@ -6877,6 +7173,13 @@
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
+"@types/secp256k1@^4.0.6":
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/@types/secp256k1/-/secp256k1-4.0.6.tgz#d60ba2349a51c2cbc5e816dcd831a42029d376bf"
+ integrity sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==
+ dependencies:
+ "@types/node" "*"
+
"@types/semver@^7.3.12":
version "7.3.13"
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
@@ -7376,27 +7679,49 @@
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780"
integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==
-"@walletconnect/core@2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.8.1.tgz#f74404af372a11e05c214cbc14b5af0e9c0cf916"
- integrity sha512-mN9Zkdl/NeThntK8cydDoQOW6jUEpOeFgYR1RCKPLH51VQwlbdSgvvQIeanSQXEY4U7AM3x8cs1sxqMomIfRQg==
- dependencies:
- "@walletconnect/heartbeat" "1.2.1"
- "@walletconnect/jsonrpc-provider" "1.0.13"
- "@walletconnect/jsonrpc-types" "1.0.3"
+"@wagmi/connectors@5.1.7":
+ version "5.1.7"
+ resolved "https://registry.yarnpkg.com/@wagmi/connectors/-/connectors-5.1.7.tgz#cfe57ed48029451526267591b9a8ea1dc77dd7ca"
+ integrity sha512-sFoxkxl1ltUkDT5wA2liuQ4LRjfVfkNGMAocGHRyik+8i2Tlr+3SjDAUKjDrcq6sqMQVd40hpcBVbxs2HeRosw==
+ dependencies:
+ "@coinbase/wallet-sdk" "4.0.4"
+ "@metamask/sdk" "0.27.0"
+ "@safe-global/safe-apps-provider" "0.18.3"
+ "@safe-global/safe-apps-sdk" "9.1.0"
+ "@walletconnect/ethereum-provider" "2.15.1"
+ "@walletconnect/modal" "2.6.2"
+ cbw-sdk "npm:@coinbase/wallet-sdk@3.9.3"
+
+"@wagmi/core@2.13.4":
+ version "2.13.4"
+ resolved "https://registry.yarnpkg.com/@wagmi/core/-/core-2.13.4.tgz#8d5da08e450171bfe34f72a079cfa2b81825410a"
+ integrity sha512-J6gfxHYr8SCc/BzEa712LnI+qLFs5K2nBLupwQqQl4WiAlCu8SdcpbZokqiwfCMYhIRMj0+YFEP9qe4ypcexmw==
+ dependencies:
+ eventemitter3 "5.0.1"
+ mipd "0.0.7"
+ zustand "4.4.1"
+
+"@walletconnect/core@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.15.1.tgz#98536057874246988428d9aadf4b25b23c3fd57f"
+ integrity sha512-9MWVt33MFrLiAeK9nqY/B30/y0M4uiq8v9EXenIBQdlgkmXM++RTcOnn7u7EAbthGgzx3WLPRm4ViwIb+rI/Cg==
+ dependencies:
+ "@walletconnect/heartbeat" "1.2.2"
+ "@walletconnect/jsonrpc-provider" "1.0.14"
+ "@walletconnect/jsonrpc-types" "1.0.4"
"@walletconnect/jsonrpc-utils" "1.0.8"
- "@walletconnect/jsonrpc-ws-connection" "^1.0.11"
- "@walletconnect/keyvaluestorage" "^1.0.2"
- "@walletconnect/logger" "^2.0.1"
- "@walletconnect/relay-api" "^1.0.9"
- "@walletconnect/relay-auth" "^1.0.4"
- "@walletconnect/safe-json" "^1.0.2"
- "@walletconnect/time" "^1.0.2"
- "@walletconnect/types" "2.8.1"
- "@walletconnect/utils" "2.8.1"
- events "^3.3.0"
+ "@walletconnect/jsonrpc-ws-connection" "1.0.14"
+ "@walletconnect/keyvaluestorage" "1.1.1"
+ "@walletconnect/logger" "2.1.2"
+ "@walletconnect/relay-api" "1.0.11"
+ "@walletconnect/relay-auth" "1.0.4"
+ "@walletconnect/safe-json" "1.0.2"
+ "@walletconnect/time" "1.0.2"
+ "@walletconnect/types" "2.15.1"
+ "@walletconnect/utils" "2.15.1"
+ events "3.3.0"
lodash.isequal "4.5.0"
- uint8arrays "^3.1.0"
+ uint8arrays "3.1.0"
"@walletconnect/environment@^1.0.1":
version "1.0.1"
@@ -7405,22 +7730,23 @@
dependencies:
tslib "1.14.1"
-"@walletconnect/ethereum-provider@2.8.1", "@walletconnect/ethereum-provider@^2.8.0":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.8.1.tgz#1743072f42b5c940648b0303a382e8907a362a00"
- integrity sha512-YlF8CCiFTSEZRyANIBsop/U+t+d1Z1/UXXoE9+iwjSGKJsaym6PgBLPb2d8XdmS/qR6Tcx7lVodTp4cVtezKnA==
+"@walletconnect/ethereum-provider@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.15.1.tgz#178c2063d5830671f50450d55abeaaf7627c117b"
+ integrity sha512-3ssEAKc/rLYshwyE2ZIaoTxzi/p9Ws+kj/FIsd1Ed/CC37Rl5l/KYHaRJtevWeni9s4dGqyqKsYkJ0VwwUcnfQ==
dependencies:
- "@walletconnect/jsonrpc-http-connection" "^1.0.7"
- "@walletconnect/jsonrpc-provider" "^1.0.13"
- "@walletconnect/jsonrpc-types" "^1.0.3"
- "@walletconnect/jsonrpc-utils" "^1.0.8"
- "@walletconnect/sign-client" "2.8.1"
- "@walletconnect/types" "2.8.1"
- "@walletconnect/universal-provider" "2.8.1"
- "@walletconnect/utils" "2.8.1"
- events "^3.3.0"
-
-"@walletconnect/events@^1.0.1":
+ "@walletconnect/jsonrpc-http-connection" "1.0.8"
+ "@walletconnect/jsonrpc-provider" "1.0.14"
+ "@walletconnect/jsonrpc-types" "1.0.4"
+ "@walletconnect/jsonrpc-utils" "1.0.8"
+ "@walletconnect/modal" "2.6.2"
+ "@walletconnect/sign-client" "2.15.1"
+ "@walletconnect/types" "2.15.1"
+ "@walletconnect/universal-provider" "2.15.1"
+ "@walletconnect/utils" "2.15.1"
+ events "3.3.0"
+
+"@walletconnect/events@1.0.1", "@walletconnect/events@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@walletconnect/events/-/events-1.0.1.tgz#2b5f9c7202019e229d7ccae1369a9e86bda7816c"
integrity sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==
@@ -7428,35 +7754,43 @@
keyvaluestorage-interface "^1.0.0"
tslib "1.14.1"
-"@walletconnect/heartbeat@1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz#afaa3a53232ae182d7c9cff41c1084472d8f32e9"
- integrity sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==
+"@walletconnect/heartbeat@1.2.2":
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/@walletconnect/heartbeat/-/heartbeat-1.2.2.tgz#e8dc5179db7769950c6f9cf59b23516d9b95227d"
+ integrity sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==
dependencies:
"@walletconnect/events" "^1.0.1"
"@walletconnect/time" "^1.0.2"
- tslib "1.14.1"
+ events "^3.3.0"
-"@walletconnect/jsonrpc-http-connection@^1.0.7":
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz#a6973569b8854c22da707a759d241e4f5c2d5a98"
- integrity sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==
+"@walletconnect/jsonrpc-http-connection@1.0.8":
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.8.tgz#2f4c3948f074960a3edd07909560f3be13e2c7ae"
+ integrity sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==
dependencies:
"@walletconnect/jsonrpc-utils" "^1.0.6"
"@walletconnect/safe-json" "^1.0.1"
cross-fetch "^3.1.4"
- tslib "1.14.1"
+ events "^3.3.0"
-"@walletconnect/jsonrpc-provider@1.0.13", "@walletconnect/jsonrpc-provider@^1.0.13":
- version "1.0.13"
- resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz#9a74da648d015e1fffc745f0c7d629457f53648b"
- integrity sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==
+"@walletconnect/jsonrpc-provider@1.0.14":
+ version "1.0.14"
+ resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.14.tgz#696f3e3b6d728b361f2e8b853cfc6afbdf2e4e3e"
+ integrity sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==
dependencies:
"@walletconnect/jsonrpc-utils" "^1.0.8"
"@walletconnect/safe-json" "^1.0.2"
- tslib "1.14.1"
+ events "^3.3.0"
+
+"@walletconnect/jsonrpc-types@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz#ce1a667d79eadf2a2d9d002c152ceb68739c230c"
+ integrity sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==
+ dependencies:
+ events "^3.3.0"
+ keyvaluestorage-interface "^1.0.0"
-"@walletconnect/jsonrpc-types@1.0.3", "@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3":
+"@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz#65e3b77046f1a7fa8347ae02bc1b841abe6f290c"
integrity sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==
@@ -7464,7 +7798,7 @@
keyvaluestorage-interface "^1.0.0"
tslib "1.14.1"
-"@walletconnect/jsonrpc-utils@1.0.8", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.7", "@walletconnect/jsonrpc-utils@^1.0.8":
+"@walletconnect/jsonrpc-utils@1.0.8", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.8":
version "1.0.8"
resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz#82d0cc6a5d6ff0ecc277cb35f71402c91ad48d72"
integrity sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==
@@ -7473,50 +7807,66 @@
"@walletconnect/jsonrpc-types" "^1.0.3"
tslib "1.14.1"
-"@walletconnect/jsonrpc-ws-connection@^1.0.11":
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.11.tgz#1ce59d86f273d576ca73385961303ebd44dd923f"
- integrity sha512-TiFJ6saasKXD+PwGkm5ZGSw0837nc6EeFmurSPgIT/NofnOV4Tv7CVJqGQN0rQYoJUSYu21cwHNYaFkzNpUN+w==
+"@walletconnect/jsonrpc-ws-connection@1.0.14":
+ version "1.0.14"
+ resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.14.tgz#eec700e74766c7887de2bd76c91a0206628732aa"
+ integrity sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==
dependencies:
"@walletconnect/jsonrpc-utils" "^1.0.6"
"@walletconnect/safe-json" "^1.0.2"
events "^3.3.0"
- tslib "1.14.1"
ws "^7.5.1"
-"@walletconnect/keyvaluestorage@^1.0.2":
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz#92f5ca0f54c1a88a093778842ce0c874d86369c8"
- integrity sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==
+"@walletconnect/keyvaluestorage@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.1.1.tgz#dd2caddabfbaf80f6b8993a0704d8b83115a1842"
+ integrity sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==
dependencies:
- safe-json-utils "^1.1.1"
- tslib "1.14.1"
+ "@walletconnect/safe-json" "^1.0.1"
+ idb-keyval "^6.2.1"
+ unstorage "^1.9.0"
-"@walletconnect/logger@^2.0.1":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/logger/-/logger-2.0.1.tgz#7f489b96e9a1ff6bf3e58f0fbd6d69718bf844a8"
- integrity sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==
+"@walletconnect/logger@2.1.2":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/@walletconnect/logger/-/logger-2.1.2.tgz#813c9af61b96323a99f16c10089bfeb525e2a272"
+ integrity sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==
dependencies:
+ "@walletconnect/safe-json" "^1.0.2"
pino "7.11.0"
- tslib "1.14.1"
-"@walletconnect/modal@2.4.7", "@walletconnect/modal@^2.4.5":
- version "2.4.7"
- resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.4.7.tgz#fd84d6f1ac767865d63153e32150f790739a189a"
- integrity sha512-kFpvDTT44CgNGcwQVC0jHrYed4xorghKX1DOGo8ZfBSJ5TJx3p6d6SzLxkH1cZupWbljWkYS6SqvZcUBs8vWpg==
+"@walletconnect/modal-core@2.6.2":
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/@walletconnect/modal-core/-/modal-core-2.6.2.tgz#d73e45d96668764e0c8668ea07a45bb8b81119e9"
+ integrity sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==
dependencies:
- "@web3modal/core" "2.4.7"
- "@web3modal/ui" "2.4.7"
+ valtio "1.11.2"
-"@walletconnect/relay-api@^1.0.9":
- version "1.0.9"
- resolved "https://registry.yarnpkg.com/@walletconnect/relay-api/-/relay-api-1.0.9.tgz#f8c2c3993dddaa9f33ed42197fc9bfebd790ecaf"
- integrity sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==
+"@walletconnect/modal-ui@2.6.2":
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/@walletconnect/modal-ui/-/modal-ui-2.6.2.tgz#fa57c087c57b7f76aaae93deab0f84bb68b59cf9"
+ integrity sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==
+ dependencies:
+ "@walletconnect/modal-core" "2.6.2"
+ lit "2.8.0"
+ motion "10.16.2"
+ qrcode "1.5.3"
+
+"@walletconnect/modal@2.6.2":
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651"
+ integrity sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==
+ dependencies:
+ "@walletconnect/modal-core" "2.6.2"
+ "@walletconnect/modal-ui" "2.6.2"
+
+"@walletconnect/relay-api@1.0.11":
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/@walletconnect/relay-api/-/relay-api-1.0.11.tgz#80ab7ef2e83c6c173be1a59756f95e515fb63224"
+ integrity sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==
dependencies:
"@walletconnect/jsonrpc-types" "^1.0.2"
- tslib "1.14.1"
-"@walletconnect/relay-auth@^1.0.4":
+"@walletconnect/relay-auth@1.0.4":
version "1.0.4"
resolved "https://registry.yarnpkg.com/@walletconnect/relay-auth/-/relay-auth-1.0.4.tgz#0b5c55c9aa3b0ef61f526ce679f3ff8a5c4c2c7c"
integrity sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==
@@ -7528,91 +7878,90 @@
tslib "1.14.1"
uint8arrays "^3.0.0"
-"@walletconnect/safe-json@^1.0.1", "@walletconnect/safe-json@^1.0.2":
+"@walletconnect/safe-json@1.0.2", "@walletconnect/safe-json@^1.0.1", "@walletconnect/safe-json@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@walletconnect/safe-json/-/safe-json-1.0.2.tgz#7237e5ca48046e4476154e503c6d3c914126fa77"
integrity sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==
dependencies:
tslib "1.14.1"
-"@walletconnect/sign-client@2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.8.1.tgz#8c6de724eff6a306c692dd66e66944089be5e30a"
- integrity sha512-6DbpjP9BED2YZOZdpVgYo0HwPBV7k99imnsdMFrTn16EFAxhuYP0/qPwum9d072oNMGWJSA6d4rzc8FHNtHsCA==
+"@walletconnect/sign-client@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.15.1.tgz#95b430164a8c6f3fe629531a5481dec9c9be02b4"
+ integrity sha512-YnLNEmCHgZ8yBpE3hwZnHD/bVznVMguSAlwLBNOoWUH2f4d9mR8bqa6KeVXqZ3e8mVHcxKTJTjTJ3oQMLyKIjw==
dependencies:
- "@walletconnect/core" "2.8.1"
- "@walletconnect/events" "^1.0.1"
- "@walletconnect/heartbeat" "1.2.1"
+ "@walletconnect/core" "2.15.1"
+ "@walletconnect/events" "1.0.1"
+ "@walletconnect/heartbeat" "1.2.2"
"@walletconnect/jsonrpc-utils" "1.0.8"
- "@walletconnect/logger" "^2.0.1"
- "@walletconnect/time" "^1.0.2"
- "@walletconnect/types" "2.8.1"
- "@walletconnect/utils" "2.8.1"
- events "^3.3.0"
+ "@walletconnect/logger" "2.1.2"
+ "@walletconnect/time" "1.0.2"
+ "@walletconnect/types" "2.15.1"
+ "@walletconnect/utils" "2.15.1"
+ events "3.3.0"
-"@walletconnect/time@^1.0.2":
+"@walletconnect/time@1.0.2", "@walletconnect/time@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@walletconnect/time/-/time-1.0.2.tgz#6c5888b835750ecb4299d28eecc5e72c6d336523"
integrity sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==
dependencies:
tslib "1.14.1"
-"@walletconnect/types@2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.8.1.tgz#640eb6ad23866886fbe09a9b29832bf3f8647a09"
- integrity sha512-MLISp85b+27vVkm3Wkud+eYCwySXCdOrmn0yQCSN6DnRrrunrD05ksz4CXGP7h2oXUvvXPDt/6lXBf1B4AfqrA==
- dependencies:
- "@walletconnect/events" "^1.0.1"
- "@walletconnect/heartbeat" "1.2.1"
- "@walletconnect/jsonrpc-types" "1.0.3"
- "@walletconnect/keyvaluestorage" "^1.0.2"
- "@walletconnect/logger" "^2.0.1"
- events "^3.3.0"
-
-"@walletconnect/universal-provider@2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.8.1.tgz#3fc51c56d1c94a02eb952f9bf948293cc7aace7e"
- integrity sha512-6shgE4PM/S+GEh9oTWMloHZlt2BLsCitRn9tBh2Vf+jZiGlug3WNm+tBc/Fo6ILyHuzeYPbkzCM67AxcutOHGQ==
- dependencies:
- "@walletconnect/jsonrpc-http-connection" "^1.0.7"
- "@walletconnect/jsonrpc-provider" "1.0.13"
- "@walletconnect/jsonrpc-types" "^1.0.2"
- "@walletconnect/jsonrpc-utils" "^1.0.7"
- "@walletconnect/logger" "^2.0.1"
- "@walletconnect/sign-client" "2.8.1"
- "@walletconnect/types" "2.8.1"
- "@walletconnect/utils" "2.8.1"
- eip1193-provider "1.0.1"
- events "^3.3.0"
+"@walletconnect/types@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.15.1.tgz#5a093d28a32581e88fd4246690989099789f0830"
+ integrity sha512-4WkMsHD8ioZI5GmxNT0qMlz6msI7ZajBcTyDxfRncaNZVau0C+Btw1U4jWO+gxwJVDJY+Ue/cb1QKJ5BanZsyw==
+ dependencies:
+ "@walletconnect/events" "1.0.1"
+ "@walletconnect/heartbeat" "1.2.2"
+ "@walletconnect/jsonrpc-types" "1.0.4"
+ "@walletconnect/keyvaluestorage" "1.1.1"
+ "@walletconnect/logger" "2.1.2"
+ events "3.3.0"
+
+"@walletconnect/universal-provider@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.15.1.tgz#2c06faa0f22232ed09fd82b8a4ae047c3e56e9b4"
+ integrity sha512-JvKwHoE/ugWSKOmrEr03go1V79N0bbYV6w24Lqlzz4VAoReZZo8TDKsya7UkJ1L5HUCgKVP+AVktuJv8khzJ6w==
+ dependencies:
+ "@walletconnect/jsonrpc-http-connection" "1.0.8"
+ "@walletconnect/jsonrpc-provider" "1.0.14"
+ "@walletconnect/jsonrpc-types" "1.0.4"
+ "@walletconnect/jsonrpc-utils" "1.0.8"
+ "@walletconnect/logger" "2.1.2"
+ "@walletconnect/sign-client" "2.15.1"
+ "@walletconnect/types" "2.15.1"
+ "@walletconnect/utils" "2.15.1"
+ events "3.3.0"
-"@walletconnect/utils@2.8.1":
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.8.1.tgz#1356f4bba7f8b6664fc5b61ce3497596c8d9d603"
- integrity sha512-d6p9OX3v70m6ijp+j4qvqiQZQU1vbEHN48G8HqXasyro3Z+N8vtcB5/gV4pTYsbWgLSDtPHj49mzbWQ0LdIdTw==
+"@walletconnect/utils@2.15.1":
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.15.1.tgz#4f90abe4869ee1cff6c0102c57b45e959811ca8d"
+ integrity sha512-i5AR8XpZdcX8ghaCjYV13Er/KAGe56c1mLaG9c2cv9kmnZMZijeMdInjX/flnSM1RFDUiZXvKPMUNwlCL4NsWw==
dependencies:
"@stablelib/chacha20poly1305" "1.0.1"
"@stablelib/hkdf" "1.0.1"
- "@stablelib/random" "^1.0.2"
+ "@stablelib/random" "1.0.2"
"@stablelib/sha256" "1.0.1"
- "@stablelib/x25519" "^1.0.3"
- "@walletconnect/relay-api" "^1.0.9"
- "@walletconnect/safe-json" "^1.0.2"
- "@walletconnect/time" "^1.0.2"
- "@walletconnect/types" "2.8.1"
- "@walletconnect/window-getters" "^1.0.1"
- "@walletconnect/window-metadata" "^1.0.1"
+ "@stablelib/x25519" "1.0.3"
+ "@walletconnect/relay-api" "1.0.11"
+ "@walletconnect/safe-json" "1.0.2"
+ "@walletconnect/time" "1.0.2"
+ "@walletconnect/types" "2.15.1"
+ "@walletconnect/window-getters" "1.0.1"
+ "@walletconnect/window-metadata" "1.0.1"
detect-browser "5.3.0"
query-string "7.1.3"
- uint8arrays "^3.1.0"
+ uint8arrays "3.1.0"
-"@walletconnect/window-getters@^1.0.1":
+"@walletconnect/window-getters@1.0.1", "@walletconnect/window-getters@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@walletconnect/window-getters/-/window-getters-1.0.1.tgz#f36d1c72558a7f6b87ecc4451fc8bd44f63cbbdc"
integrity sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==
dependencies:
tslib "1.14.1"
-"@walletconnect/window-metadata@^1.0.1":
+"@walletconnect/window-metadata@1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@walletconnect/window-metadata/-/window-metadata-1.0.1.tgz#2124f75447b7e989e4e4e1581d55d25bc75f7be5"
integrity sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==
@@ -7620,108 +7969,6 @@
"@walletconnect/window-getters" "^1.0.1"
tslib "1.14.1"
-"@web3-react/coinbase-wallet@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/coinbase-wallet/-/coinbase-wallet-8.2.0.tgz#038bb9e915834046320621aa49db5ba79130e488"
- integrity sha512-SFPrsRbyw1gECyKJmE/TAB3iMhHAqh9DTa8X2FKPMgPyNPVPcha4+G0SuWy55rysh0MO6TJbj9pofX3HvXaYpw==
- dependencies:
- "@web3-react/types" "^8.2.0"
-
-"@web3-react/core@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/core/-/core-8.2.0.tgz#95fb615bb283be520e6f61b5e48cfb0047943808"
- integrity sha512-r7dmK2E8Jrpvm/DF93hGMB+8lECHSI3Oo0NrHbhxkisK6in6rdgAXeYFhZtM48LBAm9py6fQvLzjCM6Qx9q0oQ==
- dependencies:
- "@web3-react/store" "^8.2.0"
- "@web3-react/types" "^8.2.0"
- zustand "^4.3.5"
- optionalDependencies:
- "@ethersproject/providers" "^5"
-
-"@web3-react/eip1193@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/eip1193/-/eip1193-8.2.0.tgz#a7953769f9d0bec54472aceb01f72c889458378f"
- integrity sha512-Ugbt+FisHO8aLD5o5B4AZdtgSVpjrbmtC5MgHrOEBw+IwFqr20EJreh052u8ExI2OrPjARIVOkNcp50Xxs7oUw==
- dependencies:
- "@web3-react/types" "^8.2.0"
- eventemitter3 "^4.0.7"
-
-"@web3-react/empty@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/empty/-/empty-8.2.0.tgz#dac248ab22867700b5be716cd5a3f8f95308e8c5"
- integrity sha512-U8BIF56lW1GHXFz9cPAJnlmKM8VcsjpXr+LXNXGS+9mr5AEjNcjbn9T9EnQf4hY4YXUPHAnjsVcZoUfw3q6u7Q==
- dependencies:
- "@web3-react/types" "^8.2.0"
-
-"@web3-react/gnosis-safe@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/gnosis-safe/-/gnosis-safe-8.2.0.tgz#003e7f5b335751b6699152be301256c989631b51"
- integrity sha512-52Z1uHcnIVsyfEPjj2C+cDF21wNCMrCT6kr1JTFXkvLMfZ3LvfWOX1j+C9lOBGUyZRBe5ZtkjiLiogGqRqZYmA==
- dependencies:
- "@safe-global/safe-apps-provider" "^0.16.0"
- "@safe-global/safe-apps-sdk" "^7.10.0"
- "@web3-react/types" "^8.2.0"
-
-"@web3-react/metamask@8.2.1":
- version "8.2.1"
- resolved "https://registry.yarnpkg.com/@web3-react/metamask/-/metamask-8.2.1.tgz#7ffac16e2a55ff8f1195e2831a9f9f99fa0bfba9"
- integrity sha512-JysxkAImIygkD95Bimrj7HwcTq79tq4ZSlphZt24LBMrEVY5K8k+e5mCAuJuDZ7Fu+aBxqpS0lgPjaBGKdNu/A==
- dependencies:
- "@metamask/detect-provider" "^1.2.0"
- "@web3-react/types" "^8.2.0"
-
-"@web3-react/network@8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/network/-/network-8.2.0.tgz#225ae9e135711e8c64ab3123570abaa5b82b8145"
- integrity sha512-3OcJwuaot8A+VTSoCe17MZv/K/TNVw7DjtYoS7lBRS/CmzYIwP53Tosea4MkliOuXiUUKj7Ge1D2FpWohq6pHw==
- dependencies:
- "@ethersproject/providers" "^5"
- "@web3-react/types" "^8.2.0"
-
-"@web3-react/store@^8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/store/-/store-8.2.0.tgz#4260c7d1fca3c8e0358f32ed8909a5d8dba69a80"
- integrity sha512-cG8nb+tBeRUJu+98ko6YZuAWmoipGMEbR3bhineCNd4x2mXv3GbWSPtE17GeWVshZgDbZu2/Du0okTx+22VWCg==
- dependencies:
- "@ethersproject/address" "^5"
- "@web3-react/types" "^8.2.0"
- zustand "^4.3.5"
-
-"@web3-react/types@8.2.0", "@web3-react/types@^8.1.2-beta.0", "@web3-react/types@^8.2.0":
- version "8.2.0"
- resolved "https://registry.yarnpkg.com/@web3-react/types/-/types-8.2.0.tgz#195464ebb94cb417e6dc3c16951573f9b6b3832a"
- integrity sha512-TBYTFlqJZaEpVbuAAKRJFX5PZc3lI1TqDZzY94zwCrCh4GBepwwK7+PxmRAppMFuNa5x0vFX/ghLEC44e6TCFg==
- dependencies:
- zustand "^4.3.5"
-
-"@web3-react/walletconnect-v2@^8.3.3":
- version "8.3.3"
- resolved "https://registry.yarnpkg.com/@web3-react/walletconnect-v2/-/walletconnect-v2-8.3.3.tgz#c5c7be5f7717e273d8b113351b16f44e424f542f"
- integrity sha512-qSLlfen4xnFLkMnZXbzsxtXIFRuM/6ASMcyOyUg6SVE1vfbTAWjeitSbyhgd1keVlVz5Uu8aeui2TemMKmQvtw==
- dependencies:
- "@walletconnect/ethereum-provider" "^2.8.0"
- "@walletconnect/modal" "^2.4.5"
- "@web3-react/types" "^8.2.0"
- eventemitter3 "^4.0.7"
-
-"@web3modal/core@2.4.7":
- version "2.4.7"
- resolved "https://registry.yarnpkg.com/@web3modal/core/-/core-2.4.7.tgz#e128be449bc5f6f23f6fb32f12021c096b5e7a07"
- integrity sha512-FZMmI4JnEZovRDdN+PZBMe2ot8ly+UftVkZ6lmtfgiRZ2Gy3k/4IYE8/KwOSmN63Lf2Oj2077buLR17i0xoKZA==
- dependencies:
- buffer "6.0.3"
- valtio "1.10.5"
-
-"@web3modal/ui@2.4.7":
- version "2.4.7"
- resolved "https://registry.yarnpkg.com/@web3modal/ui/-/ui-2.4.7.tgz#94d70e60386eb6fae422c56386019e761f80a50a"
- integrity sha512-5tU9u5CVYueZ9y+1x1A1Q0bFUfk3gOIKy3MT6Vx+aI0RDxVu7OYQDw6wbNPlgz/wd9JPYXG6uSv8WTBpdyit8Q==
- dependencies:
- "@web3modal/core" "2.4.7"
- lit "2.7.5"
- motion "10.16.2"
- qrcode "1.5.3"
-
"@wojtekmaj/date-utils@^1.0.2", "@wojtekmaj/date-utils@^1.0.3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@wojtekmaj/date-utils/-/date-utils-1.0.3.tgz#2dcfd92881425c5923e429c2aec86fb3609032a1"
@@ -7799,6 +8046,18 @@ abitype@0.9.8:
resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.8.tgz#1f120b6b717459deafd213dfbf3a3dd1bf10ae8c"
integrity sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==
+abitype@1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.5.tgz#29d0daa3eea867ca90f7e4123144c1d1270774b6"
+ integrity sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==
+
+abort-controller@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
+ integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==
+ dependencies:
+ event-target-shim "^5.0.0"
+
accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8:
version "1.3.8"
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
@@ -7832,6 +8091,11 @@ acorn@^8.11.2:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b"
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==
+acorn@^8.11.3:
+ version "8.12.1"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248"
+ integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==
+
acorn@^8.4.1:
version "8.8.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
@@ -7869,13 +8133,6 @@ agent-base@^7.0.2:
dependencies:
debug "^4.3.4"
-agentkeepalive@^4.3.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923"
- integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==
- dependencies:
- humanize-ms "^1.2.1"
-
aggregate-error@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
@@ -7979,7 +8236,7 @@ any-base@^1.1.0:
resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe"
integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==
-anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.1, anymatch@~3.1.2:
+anymatch@^3.0.0, anymatch@^3.0.3, anymatch@^3.1.3, anymatch@~3.1.1, anymatch@~3.1.2:
version "3.1.3"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
@@ -8559,11 +8816,6 @@ binary-extensions@^2.0.0:
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
-bind-decorator@^1.0.11:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/bind-decorator/-/bind-decorator-1.0.11.tgz#e41bc06a1f65dd9cec476c91c5daf3978488252f"
- integrity sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg==
-
bindings@^1.3.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
@@ -8618,7 +8870,7 @@ bn.js@^4.11.9:
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
-bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.1, bn.js@^5.1.2, bn.js@^5.2.0, bn.js@^5.2.1:
+bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.2.0, bn.js@^5.2.1:
version "5.2.1"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
@@ -8665,6 +8917,11 @@ borsh@^0.7.0:
bs58 "^4.0.0"
text-encoding-utf-8 "^1.0.2"
+bowser@^2.9.0:
+ version "2.11.0"
+ resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f"
+ integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==
+
bplist-parser@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
@@ -8694,6 +8951,13 @@ braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
dependencies:
fill-range "^7.0.1"
+braces@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+ integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
+ dependencies:
+ fill-range "^7.1.1"
+
brorand@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
@@ -8834,6 +9098,13 @@ bufferutil@^4.0.1:
dependencies:
node-gyp-build "^4.3.0"
+bufferutil@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.8.tgz#1de6a71092d65d7766c4d8a522b261a6e787e8ea"
+ integrity sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==
+ dependencies:
+ node-gyp-build "^4.3.0"
+
byte-length@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/byte-length/-/byte-length-1.0.2.tgz#ba5a5909240b0121c079b7f7b15248d6f08223cc"
@@ -8943,6 +9214,21 @@ caseless@~0.12.0:
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==
+"cbw-sdk@npm:@coinbase/wallet-sdk@3.9.3":
+ version "3.9.3"
+ resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.9.3.tgz#daf10cb0c85d0363315b7270cb3f02bedc408aab"
+ integrity sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==
+ dependencies:
+ bn.js "^5.2.1"
+ buffer "^6.0.3"
+ clsx "^1.2.1"
+ eth-block-tracker "^7.1.0"
+ eth-json-rpc-filters "^6.0.0"
+ eventemitter3 "^5.0.1"
+ keccak "^3.0.3"
+ preact "^10.16.0"
+ sha.js "^2.4.11"
+
ccount@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
@@ -9043,6 +9329,21 @@ chokidar@^3.5.1, chokidar@^3.5.3:
optionalDependencies:
fsevents "~2.3.2"
+chokidar@^3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
+ integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
+ dependencies:
+ anymatch "~3.1.2"
+ braces "~3.0.2"
+ glob-parent "~5.1.2"
+ is-binary-path "~2.1.0"
+ is-glob "~4.0.1"
+ normalize-path "~3.0.0"
+ readdirp "~3.6.0"
+ optionalDependencies:
+ fsevents "~2.3.2"
+
chownr@^1.1.1:
version "1.1.4"
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
@@ -9058,6 +9359,13 @@ ci-info@^3.2.0, ci-info@^3.7.0:
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
+citty@^0.1.5, citty@^0.1.6:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/citty/-/citty-0.1.6.tgz#0f7904da1ed4625e1a9ea7e0fa780981aab7c5e4"
+ integrity sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==
+ dependencies:
+ consola "^3.2.3"
+
classlist-polyfill@^1.0.3:
version "1.2.0"
resolved "https://registry.yarnpkg.com/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz#935bc2dfd9458a876b279617514638bcaa964a2e"
@@ -9136,6 +9444,15 @@ client-oauth2@^4.3.3:
popsicle "^12.0.5"
safe-buffer "^5.2.0"
+clipboardy@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-4.0.0.tgz#e73ced93a76d19dd379ebf1f297565426dffdca1"
+ integrity sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==
+ dependencies:
+ execa "^8.0.1"
+ is-wsl "^3.1.0"
+ is64bit "^2.0.0"
+
cliui@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
@@ -9154,6 +9471,15 @@ cliui@^7.0.2:
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
+cliui@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
+ integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^7.0.0"
+
clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@@ -9175,7 +9501,7 @@ clone@^1.0.2:
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==
-clsx@^1.1.0, clsx@^1.1.1, clsx@^1.2.1:
+clsx@^1.1.1, clsx@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12"
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
@@ -9306,11 +9632,21 @@ concat-stream@^1.6.2:
readable-stream "^2.2.2"
typedarray "^0.0.6"
+confbox@^0.1.7:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579"
+ integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==
+
connect-history-api-fallback@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8"
integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==
+consola@^3.2.3:
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/consola/-/consola-3.2.3.tgz#0741857aa88cfa0d6fd53f1cff0375136e98502f"
+ integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==
+
content-disposition@0.5.4, content-disposition@^0.5.2:
version "0.5.4"
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
@@ -9333,6 +9669,11 @@ convert-source-map@^2.0.0:
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+cookie-es@^1.1.0:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.2.2.tgz#18ceef9eb513cac1cb6c14bcbf8bdb2679b34821"
+ integrity sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==
+
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
@@ -9422,6 +9763,11 @@ cosmjs-types@^0.8.0:
long "^4.0.0"
protobufjs "~6.11.2"
+crc-32@^1.2.0:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff"
+ integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==
+
create-require@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
@@ -9434,6 +9780,13 @@ cross-fetch@^3.1.4, cross-fetch@^3.1.5:
dependencies:
node-fetch "2.6.7"
+cross-fetch@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-4.0.0.tgz#f037aef1580bb3a1a35164ea2a848ba81b445983"
+ integrity sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==
+ dependencies:
+ node-fetch "^2.6.12"
+
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
@@ -9443,6 +9796,11 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
shebang-command "^2.0.0"
which "^2.0.1"
+crossws@^0.2.0, crossws@^0.2.4:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03"
+ integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==
+
crypto-hash@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247"
@@ -9954,6 +10312,13 @@ debug@^3.1.0:
dependencies:
ms "^2.1.1"
+debug@~4.3.1, debug@~4.3.2:
+ version "4.3.6"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
+ integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
+ dependencies:
+ ms "2.1.2"
+
decamelize@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
@@ -10126,6 +10491,11 @@ defu@^6.1.2:
resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.3.tgz#6d7f56bc61668e844f9f593ace66fd67ef1205fd"
integrity sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==
+defu@^6.1.4:
+ version "6.1.4"
+ resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479"
+ integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==
+
del@^6.0.0:
version "6.1.1"
resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a"
@@ -10172,12 +10542,17 @@ dequal@^2.0.0, dequal@^2.0.2:
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
+destr@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/destr/-/destr-2.0.3.tgz#7f9e97cb3d16dbdca7be52aca1644ce402cfe449"
+ integrity sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==
+
destroy@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
-detect-browser@5.3.0:
+detect-browser@5.3.0, detect-browser@^5.2.0:
version "5.3.0"
resolved "https://registry.yarnpkg.com/detect-browser/-/detect-browser-5.3.0.tgz#9705ef2bddf46072d0f7265a1fe300e36fe7ceca"
integrity sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==
@@ -10192,6 +10567,11 @@ detect-indent@^6.1.0:
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6"
integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
+detect-libc@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
+ integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
+
detect-node-es@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493"
@@ -10427,12 +10807,21 @@ ecc-jsbn@~0.1.1:
jsbn "~0.1.0"
safer-buffer "^2.1.0"
+eciesjs@^0.3.15:
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/eciesjs/-/eciesjs-0.3.20.tgz#ef66d0304415e88810aef5823bfd5ce6021d2212"
+ integrity sha512-Rz5AB8v9+xmMdS/R7RzWPe/R8DP5QfyrkA6ce4umJopoB5su2H2aDy/GcgIfwhmCwxnBkqGf/PbGzmKcGtIgGA==
+ dependencies:
+ "@types/secp256k1" "^4.0.6"
+ futoin-hkdf "^1.5.3"
+ secp256k1 "^5.0.0"
+
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-eip1193-provider@1.0.1, eip1193-provider@^1.0.1:
+eip1193-provider@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/eip1193-provider/-/eip1193-provider-1.0.1.tgz#420d29cf4f6c443e3f32e718fb16fafb250637c3"
integrity sha512-kSuqwQ26d7CzuS/t3yRXo2Su2cVH0QfvyKbr2H7Be7O5YDyIq4hQGCNTo5wRdP07bt+E2R/8nPCzey4ojBHf7g==
@@ -10509,13 +10898,29 @@ encodeurl@~1.0.2:
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
-end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:
+end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.0, end-of-stream@^1.4.1:
version "1.4.4"
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
dependencies:
once "^1.4.0"
+engine.io-client@~6.5.2:
+ version "6.5.4"
+ resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.5.4.tgz#b8bc71ed3f25d0d51d587729262486b4b33bd0d0"
+ integrity sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==
+ dependencies:
+ "@socket.io/component-emitter" "~3.1.0"
+ debug "~4.3.1"
+ engine.io-parser "~5.2.1"
+ ws "~8.17.1"
+ xmlhttprequest-ssl "~2.0.0"
+
+engine.io-parser@~5.2.1:
+ version "5.2.3"
+ resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.3.tgz#00dc5b97b1f233a23c9398d0209504cf5f94d92f"
+ integrity sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==
+
enquirer@^2.3.6:
version "2.3.6"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
@@ -10778,6 +11183,11 @@ escape-html@~1.0.3:
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
+escape-string-regexp@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
@@ -11026,22 +11436,23 @@ etag@~1.8.1:
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
-eth-block-tracker@6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-6.1.0.tgz#0481f97bbb88a100b9d45806fe7e37af741cbefc"
- integrity sha512-K9SY8+/xMBi4M5HHTDdxnpEqEEGjbNpzHFqvxyjMZej8InV/B+CkFRKM6W+uvrFJ7m8Zd1E0qUkseU3vdIDFYQ==
+eth-block-tracker@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-7.1.0.tgz#dfc16085c6817cc30caabba381deb8d204c1c766"
+ integrity sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==
dependencies:
- "@metamask/safe-event-emitter" "^2.0.0"
- "@metamask/utils" "^3.0.1"
+ "@metamask/eth-json-rpc-provider" "^1.0.0"
+ "@metamask/safe-event-emitter" "^3.0.0"
+ "@metamask/utils" "^5.0.1"
json-rpc-random-id "^1.0.1"
pify "^3.0.0"
-eth-json-rpc-filters@5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/eth-json-rpc-filters/-/eth-json-rpc-filters-5.1.0.tgz#f0c2aeaec2a45e2dc6ca1b9843d8e85447821427"
- integrity sha512-fos+9xmoa1A2Ytsc9eYof17r81BjdJOUcGcgZn4K/tKdCCTb+a8ytEtwlu1op5qsXFDlgGmstTELFrDEc89qEQ==
+eth-json-rpc-filters@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/eth-json-rpc-filters/-/eth-json-rpc-filters-6.0.1.tgz#0b3e370f017f5c6f58d3e7bd0756d8099ed85c56"
+ integrity sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==
dependencies:
- "@metamask/safe-event-emitter" "^2.0.0"
+ "@metamask/safe-event-emitter" "^3.0.0"
async-mutex "^0.2.6"
eth-query "^2.1.2"
json-rpc-engine "^6.1.0"
@@ -11055,20 +11466,23 @@ eth-query@^2.1.2:
json-rpc-random-id "^1.0.0"
xtend "^4.0.1"
-eth-rpc-errors@4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/eth-rpc-errors/-/eth-rpc-errors-4.0.2.tgz#11bc164e25237a679061ac05b7da7537b673d3b7"
- integrity sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==
- dependencies:
- fast-safe-stringify "^2.0.6"
-
-eth-rpc-errors@^4.0.2:
+eth-rpc-errors@^4.0.2, eth-rpc-errors@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/eth-rpc-errors/-/eth-rpc-errors-4.0.3.tgz#6ddb6190a4bf360afda82790bb7d9d5e724f423a"
integrity sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==
dependencies:
fast-safe-stringify "^2.0.6"
+ethereum-cryptography@^2.0.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz#58f2810f8e020aecb97de8c8c76147600b0b8ccf"
+ integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==
+ dependencies:
+ "@noble/curves" "1.4.2"
+ "@noble/hashes" "1.4.0"
+ "@scure/bip32" "1.4.0"
+ "@scure/bip39" "1.3.0"
+
ethers-multicall-provider@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/ethers-multicall-provider/-/ethers-multicall-provider-5.0.0.tgz#0f68a01126a80ffdc5020ca94a2fb8d73d49c271"
@@ -11161,17 +11575,32 @@ etherscan-api@^10.3.0:
gh-pages "4.0.0"
querystring "0.2.1"
+event-target-shim@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
+ integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
+
eventemitter2@6.4.7:
version "6.4.7"
resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d"
integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==
-eventemitter3@4.0.7, eventemitter3@^4.0.0, eventemitter3@^4.0.1, eventemitter3@^4.0.7:
+eventemitter2@^6.4.7:
+ version "6.4.9"
+ resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.9.tgz#41f2750781b4230ed58827bc119d293471ecb125"
+ integrity sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==
+
+eventemitter3@5.0.1, eventemitter3@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
+ integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
+
+eventemitter3@^4.0.0, eventemitter3@^4.0.1, eventemitter3@^4.0.7:
version "4.0.7"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
-events@^3.3.0:
+events@3.3.0, events@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
@@ -11221,6 +11650,21 @@ execa@^7.1.1:
signal-exit "^3.0.7"
strip-final-newline "^3.0.0"
+execa@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c"
+ integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==
+ dependencies:
+ cross-spawn "^7.0.3"
+ get-stream "^8.0.1"
+ human-signals "^5.0.0"
+ is-stream "^3.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^5.1.0"
+ onetime "^6.0.0"
+ signal-exit "^4.1.0"
+ strip-final-newline "^3.0.0"
+
executable@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c"
@@ -11290,6 +11734,14 @@ extend@^3.0.0, extend@~3.0.2:
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+extension-port-stream@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/extension-port-stream/-/extension-port-stream-3.0.0.tgz#00a7185fe2322708a36ed24843c81bd754925fef"
+ integrity sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==
+ dependencies:
+ readable-stream "^3.6.2 || ^4.4.2"
+ webextension-polyfill ">=0.10.0 <1.0"
+
external-editor@^3.0.3:
version "3.1.0"
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
@@ -11538,6 +11990,13 @@ fill-range@^7.0.1:
dependencies:
to-regex-range "^5.0.1"
+fill-range@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+ integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
+ dependencies:
+ to-regex-range "^5.0.1"
+
filter-obj@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b"
@@ -11875,6 +12334,11 @@ functions-have-names@^1.2.2:
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
+futoin-hkdf@^1.5.3:
+ version "1.5.3"
+ resolved "https://registry.yarnpkg.com/futoin-hkdf/-/futoin-hkdf-1.5.3.tgz#6c8024f2e1429da086d4e18289ef2239ad33ee35"
+ integrity sha512-SewY5KdMpaoCeh7jachEWFsh1nNlaDjNHZXWqL5IGwtpEYHTgkr2+AMCgNwKWkcc0wpSYrZfR7he4WdmHFtDxQ==
+
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -11914,6 +12378,11 @@ get-package-type@^0.1.0:
resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
+get-port-please@^3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.2.tgz#502795e56217128e4183025c89a48c71652f4e49"
+ integrity sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==
+
get-port@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193"
@@ -11961,6 +12430,11 @@ get-stream@^6.0.0, get-stream@^6.0.1:
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
+get-stream@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
+ integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
+
get-symbol-description@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
@@ -12221,6 +12695,22 @@ gunzip-maybe@^1.4.2:
pumpify "^1.3.3"
through2 "^2.0.3"
+h3@^1.10.2, h3@^1.11.1:
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/h3/-/h3-1.12.0.tgz#9d7f05f08a997d263e484b02436cb027df3026d8"
+ integrity sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==
+ dependencies:
+ cookie-es "^1.1.0"
+ crossws "^0.2.4"
+ defu "^6.1.4"
+ destr "^2.0.3"
+ iron-webcrypto "^1.1.1"
+ ohash "^1.1.3"
+ radix3 "^1.1.2"
+ ufo "^1.5.3"
+ uncrypto "^0.1.3"
+ unenv "^1.9.0"
+
handle-thing@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
@@ -12506,6 +12996,11 @@ http-proxy@^1.18.1:
follow-redirects "^1.0.0"
requires-port "^1.0.0"
+http-shutdown@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/http-shutdown/-/http-shutdown-1.2.2.tgz#41bc78fc767637c4c95179bc492f312c0ae64c5f"
+ integrity sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==
+
http-signature@~1.3.6:
version "1.3.6"
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9"
@@ -12546,18 +13041,30 @@ human-signals@^4.3.0:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2"
integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==
-humanize-ms@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
- integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==
- dependencies:
- ms "^2.0.0"
+human-signals@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
+ integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
hyphenate-style-name@^1.0.3:
version "1.0.4"
resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
+i18next-browser-languagedetector@7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.1.0.tgz#01876fac51f86b78975e79b48ccb62e2313a2d7d"
+ integrity sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA==
+ dependencies:
+ "@babel/runtime" "^7.19.4"
+
+i18next@23.11.5:
+ version "23.11.5"
+ resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.11.5.tgz#d71eb717a7e65498d87d0594f2664237f9e361ef"
+ integrity sha512-41pvpVbW9rhZPk5xjCX2TPJi2861LEig/YRhUkY+1FQ2IQPS0bKUDYnEqY8XPPbB48h1uIwLnP9iiEfuSl20CA==
+ dependencies:
+ "@babel/runtime" "^7.23.2"
+
iconv-lite@0.4.24, iconv-lite@^0.4.24:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
@@ -12572,6 +13079,11 @@ iconv-lite@0.6:
dependencies:
safer-buffer ">= 2.1.2 < 3.0.0"
+idb-keyval@^6.2.1:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/idb-keyval/-/idb-keyval-6.2.1.tgz#94516d625346d16f56f3b33855da11bfded2db33"
+ integrity sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==
+
idb@7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/idb/-/idb-7.0.1.tgz#d2875b3a2f205d854ee307f6d196f246fea590a7"
@@ -12630,7 +13142,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4:
+inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -12699,7 +13211,7 @@ into-stream@^3.1.0:
from2 "^2.1.1"
p-is-promise "^1.1.0"
-invariant@^2.2.4:
+invariant@2.2.4, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -12726,6 +13238,11 @@ ipaddr.js@^2.0.1:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0"
integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==
+iron-webcrypto@^1.1.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz#aa60ff2aa10550630f4c0b11fd2442becdb35a6f"
+ integrity sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==
+
is-absolute-url@^3.0.0:
version "3.0.3"
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
@@ -12823,6 +13340,11 @@ is-docker@^2.0.0, is-docker@^2.1.1:
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
+is-docker@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200"
+ integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==
+
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -12857,6 +13379,13 @@ is-gzip@^1.0.0:
resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83"
integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==
+is-inside-container@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4"
+ integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==
+ dependencies:
+ is-docker "^3.0.0"
+
is-installed-globally@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520"
@@ -13066,6 +13595,20 @@ is-wsl@^2.1.1, is-wsl@^2.2.0:
dependencies:
is-docker "^2.0.0"
+is-wsl@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-3.1.0.tgz#e1c657e39c10090afcbedec61720f6b924c3cbd2"
+ integrity sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==
+ dependencies:
+ is-inside-container "^1.0.0"
+
+is64bit@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is64bit/-/is64bit-2.0.0.tgz#198c627cbcb198bbec402251f88e5e1a51236c07"
+ integrity sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==
+ dependencies:
+ system-architecture "^0.1.0"
+
isarray@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
@@ -13096,6 +13639,11 @@ isomorphic-ws@^4.0.1:
resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc"
integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
+isows@1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.4.tgz#810cd0d90cc4995c26395d2aa4cfa4037ebdf061"
+ integrity sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==
+
isstream@~0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
@@ -13228,24 +13776,6 @@ jayson@^3.4.4:
uuid "^8.3.2"
ws "^7.4.5"
-jayson@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/jayson/-/jayson-4.1.0.tgz#60dc946a85197317f2b1439d672a8b0a99cea2f9"
- integrity sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==
- dependencies:
- "@types/connect" "^3.4.33"
- "@types/node" "^12.12.54"
- "@types/ws" "^7.4.4"
- JSONStream "^1.3.5"
- commander "^2.20.3"
- delay "^5.0.0"
- es6-promisify "^5.0.0"
- eyes "^0.1.8"
- isomorphic-ws "^4.0.1"
- json-stringify-safe "^5.0.1"
- uuid "^8.3.2"
- ws "^7.4.5"
-
jest-get-type@^29.6.3:
version "29.6.3"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1"
@@ -13322,6 +13852,11 @@ jiti@^1.17.1:
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d"
integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
+jiti@^1.21.0:
+ version "1.21.6"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268"
+ integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==
+
joi@^17.7.0:
version "17.9.2"
resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690"
@@ -13444,7 +13979,7 @@ json-parse-even-better-errors@^2.3.0:
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-json-rpc-engine@6.1.0, json-rpc-engine@^6.1.0:
+json-rpc-engine@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/json-rpc-engine/-/json-rpc-engine-6.1.0.tgz#bf5ff7d029e1c1bf20cb6c0e9f348dcd8be5a393"
integrity sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==
@@ -13533,10 +14068,10 @@ jsprim@^2.0.2:
array-includes "^3.1.5"
object.assign "^4.1.3"
-keccak@^3.0.1:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.3.tgz#4bc35ad917be1ef54ff246f904c2bbbf9ac61276"
- integrity sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==
+keccak@^3.0.3:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.4.tgz#edc09b89e633c0549da444432ecf062ffadee86d"
+ integrity sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==
dependencies:
node-addon-api "^2.0.0"
node-gyp-build "^4.2.0"
@@ -13647,6 +14182,30 @@ lines-and-columns@^1.1.6:
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
+listhen@^1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.7.2.tgz#66b81740692269d5d8cafdc475020f2fc51afbae"
+ integrity sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==
+ dependencies:
+ "@parcel/watcher" "^2.4.1"
+ "@parcel/watcher-wasm" "^2.4.1"
+ citty "^0.1.6"
+ clipboardy "^4.0.0"
+ consola "^3.2.3"
+ crossws "^0.2.0"
+ defu "^6.1.4"
+ get-port-please "^3.1.2"
+ h3 "^1.10.2"
+ http-shutdown "^1.2.2"
+ jiti "^1.21.0"
+ mlly "^1.6.1"
+ node-forge "^1.3.1"
+ pathe "^1.1.2"
+ std-env "^3.7.0"
+ ufo "^1.4.0"
+ untun "^0.1.3"
+ uqr "^0.1.2"
+
listr2@^3.8.3:
version "3.14.0"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e"
@@ -13677,14 +14236,21 @@ lit-html@^2.7.0:
dependencies:
"@types/trusted-types" "^2.0.2"
-lit@2.7.5:
- version "2.7.5"
- resolved "https://registry.yarnpkg.com/lit/-/lit-2.7.5.tgz#60bc82990cfad169d42cd786999356dcf79b035f"
- integrity sha512-i/cH7Ye6nBDUASMnfwcictBnsTN91+aBjXoTHF2xARghXScKxpD4F4WYI+VLXg9lqbMinDfvoI7VnZXjyHgdfQ==
+lit-html@^2.8.0:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-2.8.0.tgz#96456a4bb4ee717b9a7d2f94562a16509d39bffa"
+ integrity sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==
+ dependencies:
+ "@types/trusted-types" "^2.0.2"
+
+lit@2.8.0:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/lit/-/lit-2.8.0.tgz#4d838ae03059bf9cafa06e5c61d8acc0081e974e"
+ integrity sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==
dependencies:
"@lit/reactive-element" "^1.6.0"
lit-element "^3.3.0"
- lit-html "^2.7.0"
+ lit-html "^2.8.0"
load-bmfont@^1.3.1:
version "1.4.1"
@@ -13887,6 +14453,11 @@ lowercase-keys@^1.0.0:
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+lru-cache@^10.2.0:
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
+ integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
+
lru-cache@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -14172,6 +14743,11 @@ methods@~1.1.2:
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
+micro-ftch@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/micro-ftch/-/micro-ftch-0.3.1.tgz#6cb83388de4c1f279a034fb0cf96dfc050853c5f"
+ integrity sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==
+
micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8"
@@ -14461,6 +15037,14 @@ micromatch@^4.0.2, micromatch@^4.0.4:
braces "^3.0.2"
picomatch "^2.3.1"
+micromatch@^4.0.5:
+ version "4.0.7"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5"
+ integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==
+ dependencies:
+ braces "^3.0.3"
+ picomatch "^2.3.1"
+
mime-db@1.52.0, "mime-db@>= 1.43.0 < 2", mime-db@^1.28.0:
version "1.52.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
@@ -14483,6 +15067,11 @@ mime@^2.0.3:
resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367"
integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
+mime@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
+ integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
+
mimic-fn@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
@@ -14571,6 +15160,11 @@ minizlib@^2.1.1:
minipass "^3.0.0"
yallist "^4.0.0"
+mipd@0.0.7:
+ version "0.0.7"
+ resolved "https://registry.yarnpkg.com/mipd/-/mipd-0.0.7.tgz#bb5559e21fa18dc3d9fe1c08902ef14b7ce32fd9"
+ integrity sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==
+
mixpanel-browser@^2.45.0:
version "2.45.0"
resolved "https://registry.yarnpkg.com/mixpanel-browser/-/mixpanel-browser-2.45.0.tgz#a2973be5b66e6d2799ef95a1e55b8ad8eede57e8"
@@ -14593,6 +15187,16 @@ mkdirp@^1.0.3:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
+mlly@^1.6.1, mlly@^1.7.1:
+ version "1.7.1"
+ resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.1.tgz#e0336429bb0731b6a8e887b438cbdae522c8f32f"
+ integrity sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==
+ dependencies:
+ acorn "^8.11.3"
+ pathe "^1.1.2"
+ pkg-types "^1.1.1"
+ ufo "^1.5.3"
+
moo@^0.5.1:
version "0.5.2"
resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.2.tgz#f9fe82473bc7c184b0d32e2215d3f6e67278733c"
@@ -14625,7 +15229,7 @@ ms@2.1.2:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-ms@2.1.3, ms@^2.0.0, ms@^2.1.1:
+ms@2.1.3, ms@^2.1.1:
version "2.1.3"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
@@ -14667,6 +15271,11 @@ nanoid@^3.3.6:
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
+napi-wasm@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.0.tgz#bbe617823765ae9c1bc12ff5942370eae7b2ba4e"
+ integrity sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==
+
natural-compare-lite@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
@@ -14700,6 +15309,16 @@ node-addon-api@^2.0.0:
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==
+node-addon-api@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.1.0.tgz#49da1ca055e109a23d537e9de43c09cca21eb762"
+ integrity sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==
+
+node-addon-api@^7.0.0:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
+ integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
+
node-dir@^0.1.17:
version "0.1.17"
resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
@@ -14712,6 +15331,11 @@ node-fetch-native@^1.4.0:
resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.4.1.tgz#5a336e55b4e1b1e72b9927da09fecd2b374c9be5"
integrity sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==
+node-fetch-native@^1.6.2, node-fetch-native@^1.6.3, node-fetch-native@^1.6.4:
+ version "1.6.4"
+ resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e"
+ integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==
+
node-fetch@2, node-fetch@2.6.7, node-fetch@^2.6.1:
version "2.6.7"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
@@ -14733,7 +15357,7 @@ node-fetch@^2.6.12:
dependencies:
whatwg-url "^5.0.0"
-node-forge@^1:
+node-forge@^1, node-forge@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
@@ -14866,6 +15490,15 @@ nyc@15.1.0:
test-exclude "^6.0.0"
yargs "^15.0.2"
+obj-multiplex@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/obj-multiplex/-/obj-multiplex-1.0.0.tgz#2f2ae6bfd4ae11befe742ea9ea5b36636eabffc1"
+ integrity sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==
+ dependencies:
+ end-of-stream "^1.4.0"
+ once "^1.4.0"
+ readable-stream "^2.3.3"
+
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
@@ -14950,6 +15583,20 @@ obuf@^1.0.0, obuf@^1.1.2:
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+ofetch@^1.3.3:
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.3.4.tgz#7ea65ced3c592ec2b9906975ae3fe1d26a56f635"
+ integrity sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==
+ dependencies:
+ destr "^2.0.3"
+ node-fetch-native "^1.6.3"
+ ufo "^1.5.3"
+
+ohash@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.3.tgz#f12c3c50bfe7271ce3fd1097d42568122ccdcf07"
+ integrity sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==
+
omggif@^1.0.10, omggif@^1.0.9:
version "1.0.10"
resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19"
@@ -15334,6 +15981,11 @@ pathe@^1.1.0, pathe@^1.1.1:
resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a"
integrity sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==
+pathe@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec"
+ integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
+
pathval@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
@@ -15473,6 +16125,15 @@ pkg-dir@^5.0.0:
dependencies:
find-up "^5.0.0"
+pkg-types@^1.1.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.0.tgz#d0268e894e93acff11a6279de147e83354ebd42d"
+ integrity sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==
+ dependencies:
+ confbox "^0.1.7"
+ mlly "^1.7.1"
+ pathe "^1.1.2"
+
pkg-up@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
@@ -15514,6 +16175,11 @@ polished@^4.2.2:
dependencies:
"@babel/runtime" "^7.17.8"
+pony-cause@^2.1.10:
+ version "2.1.11"
+ resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-2.1.11.tgz#d69a20aaccdb3bdb8f74dd59e5c68d8e6772e4bd"
+ integrity sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==
+
popsicle-content-encoding@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/popsicle-content-encoding/-/popsicle-content-encoding-1.0.0.tgz#2ab419083fee0387bf6e64d21b1a9af560795adb"
@@ -15604,10 +16270,10 @@ postinstall-postinstall@^2.1.0:
resolved "https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz#4f7f77441ef539d1512c40bd04c71b06a4704ca3"
integrity sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ==
-preact@^10.5.9:
- version "10.17.1"
- resolved "https://registry.yarnpkg.com/preact/-/preact-10.17.1.tgz#0a1b3c658c019e759326b9648c62912cf5c2dde1"
- integrity sha512-X9BODrvQ4Ekwv9GURm9AKAGaomqXmip7NQTZgY7gcNmr7XE83adOMJvd3N42id1tMFU7ojiynRsYnY6/BRFxLA==
+preact@^10.16.0:
+ version "10.23.2"
+ resolved "https://registry.yarnpkg.com/preact/-/preact-10.23.2.tgz#52deec92796ae0f0cc6b034d9c66e0fbc1b837dc"
+ integrity sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==
prelude-ls@^1.2.1:
version "1.2.1"
@@ -15883,11 +16549,23 @@ puppeteer-core@^2.1.1:
rimraf "^2.6.1"
ws "^6.1.0"
-qrcode-generator@^1.4.1:
+qr-code-styling@^1.6.0-rc.1:
+ version "1.6.0-rc.1"
+ resolved "https://registry.yarnpkg.com/qr-code-styling/-/qr-code-styling-1.6.0-rc.1.tgz#6c89e185fa50cc9135101085c12ae95b06f1b290"
+ integrity sha512-ModRIiW6oUnsP18QzrRYZSc/CFKFKIdj7pUs57AEVH20ajlglRpN3HukjHk0UbNMTlKGuaYl7Gt6/O5Gg2NU2Q==
+ dependencies:
+ qrcode-generator "^1.4.3"
+
+qrcode-generator@^1.4.1, qrcode-generator@^1.4.3:
version "1.4.4"
resolved "https://registry.yarnpkg.com/qrcode-generator/-/qrcode-generator-1.4.4.tgz#63f771224854759329a99048806a53ed278740e7"
integrity sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw==
+qrcode-terminal-nooctal@^0.12.1:
+ version "0.12.1"
+ resolved "https://registry.yarnpkg.com/qrcode-terminal-nooctal/-/qrcode-terminal-nooctal-0.12.1.tgz#45016aca0d82b2818de7af0a06d072ad671fbe2e"
+ integrity sha512-jy/kkD0iIMDjTucB+5T6KBsnirlhegDH47vHgrj5MejchSQmi/EAMM0xMFeePgV9CJkkAapNakpVUWYgHvtdKg==
+
qrcode@1.5.3:
version "1.5.3"
resolved "https://registry.yarnpkg.com/qrcode/-/qrcode-1.5.3.tgz#03afa80912c0dccf12bc93f615a535aad1066170"
@@ -15905,7 +16583,7 @@ qs@6.11.0:
dependencies:
side-channel "^1.0.4"
-qs@^6.10.0, qs@^6.10.3:
+qs@^6.10.0:
version "6.11.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9"
integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==
@@ -15963,6 +16641,11 @@ quick-format-unescaped@^4.0.3:
resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz#93ef6dd8d3453cbc7970dd614fad4c5954d6b5a7"
integrity sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==
+radix3@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/radix3/-/radix3-1.1.2.tgz#fd27d2af3896c6bf4bcdfab6427c69c2afc69ec0"
+ integrity sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==
+
ramda@0.29.0:
version "0.29.0"
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.29.0.tgz#fbbb67a740a754c8a4cbb41e2a6e0eb8507f55fb"
@@ -16207,6 +16890,14 @@ react-minimal-pie-chart@8.4.0:
dependencies:
"@types/svg-path-parser" "^1.1.3"
+react-native-webview@^11.26.0:
+ version "11.26.1"
+ resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-11.26.1.tgz#658c09ed5162dc170b361e48c2dd26c9712879da"
+ integrity sha512-hC7BkxOpf+z0UKhxFSFTPAM4shQzYmZHoELa6/8a/MspcjEP7ukYKpuSUTLDywQditT8yI9idfcKvfZDKQExGw==
+ dependencies:
+ escape-string-regexp "2.0.0"
+ invariant "2.2.4"
+
react-popper@^2.2.3:
version "2.3.0"
resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba"
@@ -16391,7 +17082,7 @@ read-pkg@^5.2.0:
parse-json "^5.0.0"
type-fest "^0.6.0"
-readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6:
+readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@~2.3.6:
version "2.3.8"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
@@ -16404,7 +17095,7 @@ readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.2.2, readable
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^3.0.6, readable-stream@^3.1.1:
+readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.6.2:
version "3.6.2"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
@@ -16413,7 +17104,7 @@ readable-stream@^3.0.6, readable-stream@^3.1.1:
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0:
+readable-stream@^3.4.0, readable-stream@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
@@ -16422,6 +17113,17 @@ readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0:
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
+"readable-stream@^3.6.2 || ^4.4.2":
+ version "4.5.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09"
+ integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==
+ dependencies:
+ abort-controller "^3.0.0"
+ buffer "^6.0.3"
+ events "^3.3.0"
+ process "^0.11.10"
+ string_decoder "^1.3.0"
+
readdirp@~3.5.0:
version "3.5.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
@@ -16815,6 +17517,16 @@ robust-predicates@^3.0.0:
resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.1.tgz#ecde075044f7f30118682bd9fb3f123109577f9a"
integrity sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==
+rollup-plugin-visualizer@^5.9.2:
+ version "5.12.0"
+ resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz#661542191ce78ee4f378995297260d0c1efb1302"
+ integrity sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==
+ dependencies:
+ open "^8.4.0"
+ picomatch "^2.3.1"
+ source-map "^0.7.4"
+ yargs "^17.5.1"
+
"rollup@^2.25.0 || ^3.3.0":
version "3.29.4"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981"
@@ -16842,19 +17554,6 @@ rpc-websockets@^7.5.0:
bufferutil "^4.0.1"
utf-8-validate "^5.0.2"
-rpc-websockets@^7.5.1:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/rpc-websockets/-/rpc-websockets-7.6.0.tgz#d3f4c0dac108ca35566b0e31552c32e58928cd04"
- integrity sha512-Jgcs8q6t8Go98dEulww1x7RysgTkzpCMelVxZW4hvuyFtOGpeUz9prpr2KjUa/usqxgFCd9Tu3+yhHEP9GVmiQ==
- dependencies:
- "@babel/runtime" "^7.17.2"
- eventemitter3 "^4.0.7"
- uuid "^8.3.2"
- ws "^8.5.0"
- optionalDependencies:
- bufferutil "^4.0.1"
- utf-8-validate "^5.0.2"
-
rtl-css-js@^1.14.0:
version "1.16.0"
resolved "https://registry.yarnpkg.com/rtl-css-js/-/rtl-css-js-1.16.0.tgz#e8d682982441aadb63cabcb2f7385f3fb78ff26e"
@@ -16879,7 +17578,7 @@ rw@1:
resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
-rxjs@^6.6.0, rxjs@^6.6.3:
+rxjs@^6.6.0:
version "6.6.7"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
@@ -16976,6 +17675,15 @@ scrypt-js@3.0.1:
resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312"
integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==
+secp256k1@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-5.0.0.tgz#be6f0c8c7722e2481e9773336d351de8cddd12f7"
+ integrity sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==
+ dependencies:
+ elliptic "^6.5.4"
+ node-addon-api "^5.0.0"
+ node-gyp-build "^4.2.0"
+
seek-bzip@^1.0.5:
version "1.0.6"
resolved "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4"
@@ -17043,6 +17751,11 @@ semver@^7.3.8, semver@^7.5.3:
dependencies:
lru-cache "^6.0.0"
+semver@^7.5.4:
+ version "7.6.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
+ integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
+
send@0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -17165,7 +17878,7 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-signal-exit@^4.0.1:
+signal-exit@^4.0.1, signal-exit@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
@@ -17233,6 +17946,24 @@ snake-case@^3.0.4:
dot-case "^3.0.4"
tslib "^2.0.3"
+socket.io-client@^4.5.1:
+ version "4.7.5"
+ resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.5.tgz#919be76916989758bdc20eec63f7ee0ae45c05b7"
+ integrity sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==
+ dependencies:
+ "@socket.io/component-emitter" "~3.1.0"
+ debug "~4.3.2"
+ engine.io-client "~6.5.2"
+ socket.io-parser "~4.2.4"
+
+socket.io-parser@~4.2.4:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83"
+ integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==
+ dependencies:
+ "@socket.io/component-emitter" "~3.1.0"
+ debug "~4.3.1"
+
sockjs@^0.3.24:
version "0.3.24"
resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce"
@@ -17298,7 +18029,7 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-source-map@^0.7.3:
+source-map@^0.7.3, source-map@^0.7.4:
version "0.7.4"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
@@ -17462,6 +18193,11 @@ statuses@2.0.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+std-env@^3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2"
+ integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==
+
stop-iteration-iterator@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
@@ -17481,14 +18217,6 @@ storybook@^7.6.2:
dependencies:
"@storybook/cli" "7.6.2"
-stream-browserify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f"
- integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==
- dependencies:
- inherits "~2.0.4"
- readable-stream "^3.5.0"
-
stream-shift@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
@@ -17504,7 +18232,7 @@ strict-uri-encode@^2.0.0:
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==
-"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0:
+"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -17563,7 +18291,7 @@ string.prototype.trimstart@^1.0.6:
define-properties "^1.1.4"
es-abstract "^1.20.4"
-string_decoder@^1.1.1:
+string_decoder@^1.1.1, string_decoder@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
@@ -17755,6 +18483,11 @@ synchronous-promise@^2.0.15:
resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.17.tgz#38901319632f946c982152586f2caf8ddc25c032"
integrity sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==
+system-architecture@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/system-architecture/-/system-architecture-0.1.0.tgz#71012b3ac141427d97c67c56bc7921af6bff122d"
+ integrity sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==
+
tapable@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
@@ -18261,10 +18994,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
-typescript@4.8.4:
- version "4.8.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
- integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
+typescript@5.3.3:
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
+ integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
typescript@^4.7.4:
version "4.9.5"
@@ -18281,12 +19014,24 @@ ua-parser-js@^1.0.33:
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011"
integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==
+ufo@^1.4.0, ufo@^1.5.3:
+ version "1.5.4"
+ resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754"
+ integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==
+
uglify-js@^3.1.4:
version "3.17.4"
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
-uint8arrays@^3.0.0, uint8arrays@^3.1.0:
+uint8arrays@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/uint8arrays/-/uint8arrays-3.1.0.tgz#8186b8eafce68f28bd29bd29d683a311778901e2"
+ integrity sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==
+ dependencies:
+ multiformats "^9.4.2"
+
+uint8arrays@^3.0.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/uint8arrays/-/uint8arrays-3.1.1.tgz#2d8762acce159ccd9936057572dade9459f65ae0"
integrity sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==
@@ -18311,6 +19056,11 @@ unbzip2-stream@^1.0.9:
buffer "^5.2.1"
through "^2.3.8"
+uncrypto@^0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/uncrypto/-/uncrypto-0.1.3.tgz#e1288d609226f2d02d8d69ee861fa20d8348ef2b"
+ integrity sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==
+
underscore@^1.13.6:
version "1.13.6"
resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441"
@@ -18326,6 +19076,17 @@ undici-types@~5.26.4:
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+unenv@^1.9.0:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.10.0.tgz#c3394a6c6e4cfe68d699f87af456fe3f0db39571"
+ integrity sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==
+ dependencies:
+ consola "^3.2.3"
+ defu "^6.1.4"
+ mime "^3.0.0"
+ node-fetch-native "^1.6.4"
+ pathe "^1.1.2"
+
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -18457,11 +19218,36 @@ unraw@^3.0.0:
resolved "https://registry.yarnpkg.com/unraw/-/unraw-3.0.0.tgz#73443ed70d2ab09ccbac2b00525602d5991fbbe3"
integrity sha512-08/DA66UF65OlpUDIQtbJyrqTR0jTAlJ+jsnkQ4jxR7+K5g5YG1APZKQSMCE1vqqmD+2pv6+IdEjmopFatacvg==
+unstorage@^1.9.0:
+ version "1.10.2"
+ resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.10.2.tgz#fb7590ada8b30e83be9318f85100158b02a76dae"
+ integrity sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==
+ dependencies:
+ anymatch "^3.1.3"
+ chokidar "^3.6.0"
+ destr "^2.0.3"
+ h3 "^1.11.1"
+ listhen "^1.7.2"
+ lru-cache "^10.2.0"
+ mri "^1.2.0"
+ node-fetch-native "^1.6.2"
+ ofetch "^1.3.3"
+ ufo "^1.4.0"
+
untildify@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
+untun@^0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/untun/-/untun-0.1.3.tgz#5d10dee37a3a5737ff03d158be877dae0a0e58a6"
+ integrity sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==
+ dependencies:
+ citty "^0.1.5"
+ consola "^3.2.3"
+ pathe "^1.1.1"
+
update-browserslist-db@^1.0.11:
version "1.0.11"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
@@ -18491,6 +19277,11 @@ update-input-width@^1.2.2:
resolved "https://registry.yarnpkg.com/update-input-width/-/update-input-width-1.2.2.tgz#9a6a35858ae8e66fbfe0304437b23a4934fc7d37"
integrity sha512-6QwD9ZVSXb96PxOZ01DU0DJTPwQGY7qBYgdniZKJN02Xzom2m+9J6EPxMbefskqtj4x78qbe5psDSALq9iNEYg==
+uqr@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/uqr/-/uqr-0.1.2.tgz#5c6cd5dcff9581f9bb35b982cb89e2c483a41d7d"
+ integrity sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==
+
uri-js@^4.2.2, uri-js@^4.4.1:
version "4.4.1"
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
@@ -18620,7 +19411,7 @@ uuid@^8.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
-uuid@^9.0.0:
+uuid@^9.0.0, uuid@^9.0.1:
version "9.0.1"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
@@ -18653,10 +19444,10 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
-valtio@1.10.5:
- version "1.10.5"
- resolved "https://registry.yarnpkg.com/valtio/-/valtio-1.10.5.tgz#7852125e3b774b522827d96bd9c76d285c518678"
- integrity sha512-jTp0k63VXf4r5hPoaC6a6LCG4POkVSh629WLi1+d5PlajLsbynTMd7qAgEiOSPxzoX5iNvbN7iZ/k/g29wrNiQ==
+valtio@1.11.2:
+ version "1.11.2"
+ resolved "https://registry.yarnpkg.com/valtio/-/valtio-1.11.2.tgz#b8049c02dfe65620635d23ebae9121a741bb6530"
+ integrity sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==
dependencies:
proxy-compare "2.5.1"
use-sync-external-store "1.2.0"
@@ -18728,6 +19519,21 @@ viem@^1.6.0:
isomorphic-ws "5.0.0"
ws "8.13.0"
+viem@^2.1.1, viem@^2.20.0:
+ version "2.20.0"
+ resolved "https://registry.yarnpkg.com/viem/-/viem-2.20.0.tgz#abff4c2cf733bcc20978e662ea17db117a2881ef"
+ integrity sha512-cM4vs81HnSNbfceI1MLkx4pCVzbVjl9xiNSv5SCutYjUyFFOVSPDlEyhpg2iHinxx1NM4Qne3END5eLT8rvUdg==
+ dependencies:
+ "@adraffy/ens-normalize" "1.10.0"
+ "@noble/curves" "1.4.0"
+ "@noble/hashes" "1.4.0"
+ "@scure/bip32" "1.4.0"
+ "@scure/bip39" "1.3.0"
+ abitype "1.0.5"
+ isows "1.0.4"
+ webauthn-p256 "0.0.5"
+ ws "8.17.1"
+
vite-plugin-checker@^0.5.6:
version "0.5.6"
resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.5.6.tgz#233978091dfadef0873f0a8aacfe7fc431212b95"
@@ -18827,6 +19633,15 @@ vscode-uri@^3.0.2:
resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.7.tgz#6d19fef387ee6b46c479e5fb00870e15e58c1eb8"
integrity sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==
+wagmi@^2.12.7:
+ version "2.12.7"
+ resolved "https://registry.yarnpkg.com/wagmi/-/wagmi-2.12.7.tgz#7c50271cd6a3edb7acc5f8cbaee096a0aac0e4ab"
+ integrity sha512-E7f+2fd+rZPJ3ggBZmVj064gYuCi/Z32x9WMfSDvj5jmGHDkAmTfSi9isKkjJrTf0I+sNxd3PCWku7pndFYsIw==
+ dependencies:
+ "@wagmi/connectors" "5.1.7"
+ "@wagmi/core" "2.13.4"
+ use-sync-external-store "1.2.0"
+
wait-on@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-7.0.1.tgz#5cff9f8427e94f4deacbc2762e6b0a489b19eae9"
@@ -18886,6 +19701,24 @@ wcwidth@^1.0.1:
dependencies:
defaults "^1.0.3"
+webauthn-p256@0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/webauthn-p256/-/webauthn-p256-0.0.5.tgz#0baebd2ba8a414b21cc09c0d40f9dd0be96a06bd"
+ integrity sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==
+ dependencies:
+ "@noble/curves" "^1.4.0"
+ "@noble/hashes" "^1.4.0"
+
+"webextension-polyfill@>=0.10.0 <1.0":
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/webextension-polyfill/-/webextension-polyfill-0.12.0.tgz#f62c57d2cd42524e9fbdcee494c034cae34a3d69"
+ integrity sha512-97TBmpoWJEE+3nFBQ4VocyCdLKfw54rFaJ6EVQYLBCXqCIpLSZkwGgASpv4oPt9gdKCJ80RJlcmNzNn008Ag6Q==
+
+webextension-polyfill@^0.10.0:
+ version "0.10.0"
+ resolved "https://registry.yarnpkg.com/webextension-polyfill/-/webextension-polyfill-0.10.0.tgz#ccb28101c910ba8cf955f7e6a263e662d744dbb8"
+ integrity sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==
+
webidl-conversions@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
@@ -19157,6 +19990,11 @@ ws@8.13.0, ws@^8.13.0, ws@^8.5.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
+ws@8.17.1, ws@~8.17.1:
+ version "8.17.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b"
+ integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==
+
ws@8.5.0:
version "8.5.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f"
@@ -19207,6 +20045,11 @@ xmlbuilder@~11.0.0:
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3"
integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==
+xmlhttprequest-ssl@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz#91360c86b914e67f44dce769180027c0da618c67"
+ integrity sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==
+
xstream@^11.14.0:
version "11.14.0"
resolved "https://registry.yarnpkg.com/xstream/-/xstream-11.14.0.tgz#2c071d26b18310523b6877e86b4e54df068a9ae5"
@@ -19263,6 +20106,11 @@ yargs-parser@^20.2.2:
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
+yargs-parser@^21.1.1:
+ version "21.1.1"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
+ integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
+
yargs@^15.0.2, yargs@^15.3.1:
version "15.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
@@ -19293,6 +20141,19 @@ yargs@^16.2.0:
y18n "^5.0.5"
yargs-parser "^20.2.2"
+yargs@^17.5.1:
+ version "17.7.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
+ integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
+ dependencies:
+ cliui "^8.0.1"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.1.1"
+
yauzl@^2.10.0, yauzl@^2.4.2:
version "2.10.0"
resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"
@@ -19333,10 +20194,10 @@ zksync-web3@^0.14.3:
resolved "https://registry.yarnpkg.com/zksync-web3/-/zksync-web3-0.14.4.tgz#0b70a7e1a9d45cc57c0971736079185746d46b1f"
integrity sha512-kYehMD/S6Uhe1g434UnaMN+sBr9nQm23Ywn0EUP5BfQCsbjcr3ORuS68PosZw8xUTu3pac7G6YMSnNHk+fwzvg==
-zustand@^4.3.5:
- version "4.3.8"
- resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.3.8.tgz#37113df8e9e1421b0be1b2dca02b49b76210e7c4"
- integrity sha512-4h28KCkHg5ii/wcFFJ5Fp+k1J3gJoasaIbppdgZFO4BPJnsNxL0mQXBSFgOgAdCdBj35aDTPvdAJReTMntFPGg==
+zustand@4.4.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.4.1.tgz#0cd3a3e4756f21811bd956418fdc686877e8b3b0"
+ integrity sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw==
dependencies:
use-sync-external-store "1.2.0"