From 9c50170dd77c07c32b8964ca95fa4a7be95cb25e Mon Sep 17 00:00:00 2001 From: Peter Kompasz Date: Mon, 4 Aug 2025 09:45:12 +0300 Subject: [PATCH 01/36] chore: remove onboard provider --- src/index.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index cf2491085..9639d9b41 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -25,7 +25,6 @@ import { Web3ContextProvider } from './hooks/useWeb3' import { analyticsConfig, appInfo } from 'hooks/useSendAnalyticsData' import { HttpsProvider } from 'utils/HttpsProvider' import { registerServiceWorker } from './serviceWorker' -import { OnboardProviderWrapper } from 'components/BlockNativeOnboard' import { SimpleAppProvider } from 'state/simpleapp/simpleapp' import { nbTheme } from './theme/nbtheme' @@ -83,15 +82,11 @@ const ProviderWrapper = ({ children }) => ( }} autocapture={false} > - - - - {children} - - - + + + {children} + + ) From 74e45da659b26c75c26a508a72e0164354945889 Mon Sep 17 00:00:00 2001 From: Peter Kompasz Date: Mon, 4 Aug 2025 09:49:25 +0300 Subject: [PATCH 02/36] feat: add appkit provider --- src/index.tsx | 15 +++++++---- src/reown/reownprovider.tsx | 51 +++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 5 deletions(-) create mode 100644 src/reown/reownprovider.tsx diff --git a/src/index.tsx b/src/index.tsx index 9639d9b41..c8df211b0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -24,6 +24,7 @@ import { createGlobalStyle } from 'styled-components' import { Web3ContextProvider } from './hooks/useWeb3' import { analyticsConfig, appInfo } from 'hooks/useSendAnalyticsData' import { HttpsProvider } from 'utils/HttpsProvider' +import { AppKitProvider } from './reown/reownprovider' import { registerServiceWorker } from './serviceWorker' import { SimpleAppProvider } from 'state/simpleapp/simpleapp' import { nbTheme } from './theme/nbtheme' @@ -82,11 +83,15 @@ const ProviderWrapper = ({ children }) => ( }} autocapture={false} > - - - {children} - - + + + + {children} + + + ) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx new file mode 100644 index 000000000..2a8d77d72 --- /dev/null +++ b/src/reown/reownprovider.tsx @@ -0,0 +1,51 @@ +import { createAppKit } from '@reown/appkit/react' + +import { WagmiProvider } from 'wagmi' +import { celo, fuse } from '@reown/appkit/networks' +import { QueryClient, QueryClientProvider } from '@tanstack/react-query' +import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' + +// 0. Setup queryClient +const queryClient = new QueryClient() + +// 1. Get projectId from https://cloud.reown.com +const projectId = process.env.REOWN_PROJECT_ID +if (!projectId) { + throw new Error('REOWN_PROJECT_ID environment variable is required') +} + +// 2. Create a metadata object - optional +const metadata = { + name: 'GoodProtocolUI', + description: 'Good Protocol UI', + url: '', // origin must match your domain & subdomain + icons: [''], +} + +// 3. Set the networks +const networks = [celo, fuse] + +// 4. Create Wagmi Adapter +const wagmiAdapter = new WagmiAdapter({ + networks, + projectId, + ssr: true, +}) + +createAppKit({ + adapters: [wagmiAdapter], + networks: [celo, fuse], + projectId, + metadata, + features: { + analytics: true, // Optional - defaults to your Cloud configuration + }, +}) + +export function AppKitProvider({ children }) { + return ( + + {children} + + ) +} From ee3abbebe792c22de1e02f4693c689a55fdc1632 Mon Sep 17 00:00:00 2001 From: Peter Kompasz Date: Mon, 4 Aug 2025 13:11:54 +0300 Subject: [PATCH 03/36] chore: replace hooks --- src/components/AccountDetails/Transaction.tsx | 6 +-- src/components/AccountDetails/index.tsx | 44 +++++++++++++------ src/components/AppBar.tsx | 16 ++++--- src/components/Blocklist/index.tsx | 9 ++-- src/components/ClaimRewards/index.tsx | 4 +- src/components/CurrencyLogo/index.tsx | 13 ++++-- src/components/Identicon/index.tsx | 10 ++--- .../RemoveLiquidityReceiveDetails.tsx | 13 +++--- src/components/NetworkModal/index.tsx | 11 +++-- src/components/Popups/TransactionPopup.tsx | 7 +-- src/components/PortfolioTableRow/index.tsx | 6 +-- src/components/Savings/SavingsCard/index.tsx | 13 ++++-- src/components/Savings/SavingsModal/index.tsx | 17 +++---- src/components/StyledMenu/SubMenu.tsx | 6 +-- src/components/WalletBalance/index.tsx | 6 +-- src/components/WalletChat/index.tsx | 21 +++++---- src/components/WalletModal/index.tsx | 15 ++++--- src/components/Web3Network/index.tsx | 11 +++-- src/components/Web3ReactManager/index.tsx | 35 ++++++++------- src/components/Web3Status/index.tsx | 19 ++++---- src/components/Withdraw/index.tsx | 12 ++--- .../gd/Button/ActionOrSwitchButton.tsx | 4 +- 22 files changed, 176 insertions(+), 122 deletions(-) diff --git a/src/components/AccountDetails/Transaction.tsx b/src/components/AccountDetails/Transaction.tsx index ca0c0eb39..1098f0b0d 100644 --- a/src/components/AccountDetails/Transaction.tsx +++ b/src/components/AccountDetails/Transaction.tsx @@ -1,12 +1,12 @@ import React from 'react' import { CheckCircle, Triangle } from 'react-feather' import styled from 'styled-components' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' import { useAllTransactions } from '../../state/transactions/hooks' import { ExternalLink } from '../../theme' import { getExplorerLink } from '../../utils' import Loader from '../Loader' import { RowFixed } from '../Row' +import { useAppKitNetwork } from '@reown/appkit/react' const TransactionWrapper = styled.div` a { @@ -69,7 +69,7 @@ const IconWrapper = styled.div<{ pending: boolean; success?: boolean }>` ` export default function Transaction({ hash }: { hash: string }): any { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const allTransactions = useAllTransactions() const tx = allTransactions?.[hash] @@ -81,7 +81,7 @@ export default function Transaction({ hash }: { hash: string }): any { return ( - + {summary} ↗ diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index 9b113b7f9..ab25d2afd 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -3,12 +3,13 @@ import { useLingui } from '@lingui/react' import React, { useCallback } from 'react' import { useDispatch } from 'react-redux' import styled from 'styled-components' -import { useConnectWallet } from '@web3-onboard/react' +import { useAppKit, useAppKitNetwork } from '@reown/appkit/react' +import { useAppKitAccount } from '@reown/appkit/react' import { useRedirectNotice } from '@gooddollar/good-design' +import { useWalletInfo } from '@reown/appkit/react' import { ReactComponent as Close } from '../../assets/images/x.svg' import { WalletLabels } from '../../hooks/useActiveOnboard' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' import { AppDispatch } from '../../state' import { clearAllTransactions } from '../../state/transactions/actions' import { ExternalLink } from 'theme' @@ -21,6 +22,7 @@ import Transaction from './Transaction' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { getEnv } from 'utils/env' +import { useConnectWallet } from '@web3-onboard/react' const UpperSection = styled.div` position: relative; @@ -209,14 +211,29 @@ export default function AccountDetails({ ENSName, }: AccountDetailsProps): any { const { i18n } = useLingui() - const { chainId, account } = useActiveWeb3React() const dispatch = useDispatch() const network = getEnv() - //eslint-disable-next-line @typescript-eslint/no-unused-vars - const [{ wallet, connecting }, connect, disconnect] = useConnectWallet() + + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + + const { open } = useAppKit() + + const click = async () => { + await open({ view: 'Account' }) + } + + const [{ wallet }, connect, disconnect] = useConnectWallet() + // const { disconnect } = useDisconnect() + // useAppKitWallet({ + // namespace: 'eip155', + // onSuccess: (address) => console.log('Connected to EVM:', address), + // }) const sendData = useSendAnalyticsData() const { goToExternal } = useRedirectNotice() + const { walletInfo } = useWalletInfo() + function formatConnectorName() { return `${i18n._(t`Connected with`)} ${wallet?.label}` } @@ -236,7 +253,7 @@ export default function AccountDetails({ }, [toggleWalletModal, connect, disconnect, wallet]) const clearAllTransactionsCallback = useCallback(() => { - if (chainId) dispatch(clearAllTransactions({ chainId })) + if (chainId) dispatch(clearAllTransactions({ chainId: +(chainId ?? 1) })) }, [dispatch, chainId]) const goToExplorer = (e: any, url: string) => { @@ -250,6 +267,7 @@ export default function AccountDetails({ + {i18n._(t`Account`)} @@ -257,7 +275,7 @@ export default function AccountDetails({ {formatConnectorName()}
- {wallet?.label && WalletLabels.includes(wallet.label) && ( + {walletInfo?.name && WalletLabels.includes(walletInfo.name) && ( {i18n._(t`Change`)} @@ -280,21 +298,21 @@ export default function AccountDetails({
-

{ENSName ?? shortenAddress(account ?? '')}

+

{ENSName ?? shortenAddress(address ?? '')}

- {account && ( - + {address && ( + {i18n._(t`Copy address`)} )} - {chainId && account && ( + {chainId && address && ( theme.color.secondaryBg}; @@ -149,15 +148,15 @@ const G$Balance = ({ ) const Web3Bar = () => { - const { account } = useActiveWeb3React() const toggleWalletModal = useWalletModalToggle() + const { isConnected } = useAppKitAccount() return ( <>
- {account ? ( + {isConnected ? ( { ) : ( - + <> + + {/* */} + )} @@ -182,9 +184,9 @@ const Web3Bar = () => { function AppBar({ sideBar, walletBalance }): JSX.Element { const [theme] = useApplicationTheme() const { i18n } = useLingui() - const { account } = useActiveWeb3React() const isSimpleApp = useIsSimpleApp() const showPrice = true // useFeatureFlag('show-gd-price') + const { isConnected } = useAppKitAccount() const { ethereum } = window const isMinipay = ethereum?.isMiniPay @@ -295,7 +297,7 @@ function AppBar({ sideBar, walletBalance }): JSX.Element {
- {account && ( + {isConnected && ( Boolean(account && BLOCKED_ADDRESSES.indexOf(account) !== -1), [account]) + const { address } = useAccount() + const blocked: boolean = useMemo( + () => Boolean(address && BLOCKED_ADDRESSES.includes(address.toLowerCase())), + [address] + ) if (blocked) { return
{i18n._(t`Blocked address`)}
} diff --git a/src/components/ClaimRewards/index.tsx b/src/components/ClaimRewards/index.tsx index ef576c783..ce2a2096d 100644 --- a/src/components/ClaimRewards/index.tsx +++ b/src/components/ClaimRewards/index.tsx @@ -8,13 +8,13 @@ import { ReactComponent as LinkSVG } from 'assets/images/link-blue.svg' import Button from 'components/Button' import { addTransaction } from '../../state/transactions/actions' import { useDispatch } from 'react-redux' -import useActiveWeb3React from '../../hooks/useActiveWeb3React' import { getExplorerLink } from '../../utils' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import Loader from 'components/Loader' import { ChekboxItem, Reward } from './components' import { BottomSheet } from 'react-spring-bottom-sheet' +import { useAppKitNetwork } from '@reown/appkit/react' import { claimG$Reward, @@ -155,7 +155,7 @@ const ClaimRewards = memo(({ protocol, open, setOpen, onClaim, stake, ...rest }: const { i18n } = useLingui() const [status, setStatus] = useState('none') const { web3 } = useGdContextProvider() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const [error, setError] = useState() const [selectedReward, setSelectedReward] = useState<'claimAll' | 'claimGOOD'>('claimAll') const { width } = useWindowSize() diff --git a/src/components/CurrencyLogo/index.tsx b/src/components/CurrencyLogo/index.tsx index 4d9f3b247..48c8508af 100644 --- a/src/components/CurrencyLogo/index.tsx +++ b/src/components/CurrencyLogo/index.tsx @@ -2,6 +2,7 @@ import { ChainId, Currency, ETHER, Token } from '@sushiswap/sdk' import React, { useMemo } from 'react' import { getTokens } from '@gooddollar/web3sdk' import usePromise from 'hooks/usePromise' +import { useAppKitNetwork } from '@reown/appkit/react' import styled from 'styled-components' import AvalancheLogo from '../../assets/images/avalanche-logo.png' @@ -14,7 +15,6 @@ import MaticLogo from '../../assets/images/matic-logo.png' import xDaiLogo from '../../assets/images/xdai-logo.png' import { AdditionalChainId, FUSE } from '../../constants' import { getFuseTokenLogoURL } from '../../constants/fuseTokenMapping' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' import useHttpLocations from '../../hooks/useHttpLocations' import { WrappedTokenInfo } from 'types/WrappedTokenInfo' import Logo from '../Logo' @@ -71,7 +71,7 @@ export default function CurrencyLogo({ size?: string style?: React.CSSProperties }) { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const uriLocations = useHttpLocations(currency instanceof WrappedTokenInfo ? currency.logoURI : undefined) const [tokenList] = usePromise<[Map, Map]>(() => getTokens(chainId) as any) // solve uniswap/sushiswap type issue @@ -95,5 +95,12 @@ export default function CurrencyLogo({ return } - return + return ( + + ) } diff --git a/src/components/Identicon/index.tsx b/src/components/Identicon/index.tsx index 3d222e732..85241925f 100644 --- a/src/components/Identicon/index.tsx +++ b/src/components/Identicon/index.tsx @@ -1,7 +1,7 @@ +import { useAppKitAccount } from '@reown/appkit/react' import Jazzicon from 'jazzicon' import React, { useEffect, useRef } from 'react' import styled from 'styled-components' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' const StyledIdenticonContainer = styled.div` height: 1rem; @@ -13,14 +13,14 @@ const StyledIdenticonContainer = styled.div` export default function Identicon() { const ref = useRef() - const { account } = useActiveWeb3React() + const { address } = useAppKitAccount() useEffect(() => { - if (account && ref.current) { + if (address && ref.current) { ref.current.innerHTML = '' - ref.current.appendChild(Jazzicon(16, parseInt(account.slice(2, 10), 16))) + ref.current.appendChild(Jazzicon(16, parseInt(address.slice(2, 10), 16))) } - }, [account]) + }, [address]) // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/30451 return diff --git a/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx b/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx index 719534a4b..567638567 100644 --- a/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx +++ b/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx @@ -2,10 +2,11 @@ import React from 'react' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import { Currency, currencyEquals, ETHER, WETH } from '@sushiswap/sdk' +import { useAppKitNetwork } from '@reown/appkit/react' + import { AutoColumn } from '../../components/Column' import CurrencyLogo from '../../components/CurrencyLogo' import { RowBetween } from '../../components/Row' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' import { StyledInternalLink } from '../../theme' import { currencyId } from '../../utils/currencyId' @@ -29,7 +30,7 @@ export default function RemoveLiquidityReceiveDetails({ id, }: RemoveLiquidityReceiveDetailsProps) { const { i18n } = useLingui() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() if (!chainId || !currencyA || !currencyB) throw new Error('missing dependencies') return (
@@ -44,7 +45,7 @@ export default function RemoveLiquidityReceiveDetails({ currencyA === ETHER ? WETH[chainId].address : currencyId(currencyA) }/${currencyB === ETHER ? WETH[chainId].address : currencyId(currencyB)}`} > - Receive W{Currency.getNativeCurrencySymbol(chainId)} + Receive W{Currency.getNativeCurrencySymbol(+(chainId ?? 1))} ) : hasETH ? ( - Receive {Currency.getNativeCurrencySymbol(chainId)} + Receive {Currency.getNativeCurrencySymbol(+(chainId ?? 1))} ) : null} @@ -70,14 +71,14 @@ export default function RemoveLiquidityReceiveDetails({
{amountA}
-
{currencyA?.getSymbol(chainId)}
+
{currencyA?.getSymbol(+(chainId ?? 1))}
{amountB}
-
{currencyB?.getSymbol(chainId)}
+
{currencyB?.getSymbol(+(chainId ?? 1))}
diff --git a/src/components/NetworkModal/index.tsx b/src/components/NetworkModal/index.tsx index 88d14519f..20b20fa1d 100644 --- a/src/components/NetworkModal/index.tsx +++ b/src/components/NetworkModal/index.tsx @@ -12,13 +12,13 @@ import Option from '../WalletModal/Option' import styled from 'styled-components' import { AdditionalChainId } from '../../constants' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { NETWORK_ICON, NETWORK_LABEL } from '../../constants/networks' import { useModalOpen, useNetworkModalToggle, useSelectedChain } from '../../state/application/hooks' import { ApplicationModal } from '../../state/application/types' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { getEnv } from 'utils/env' +import { useAppKitNetwork, useAppKitState } from '@reown/appkit/react' const TextWrapper = styled.div` font-style: normal; @@ -62,14 +62,17 @@ const ChainOption = ({ chainId, chain, toggleNetworkModal, switchChain, labels, export default function NetworkModal(): JSX.Element | null { const { i18n } = useLingui() const { setSelectedChain } = useSelectedChain() - const { chainId, error, active } = useActiveWeb3React() + const { initialized } = useAppKitState() + const { chainId } = useAppKitNetwork() + // TODO + const error = false const sendData = useSendAnalyticsData() const { switchNetwork } = useSwitchNetwork() const networkModalOpen = useModalOpen(ApplicationModal.NETWORK) const toggleNetworkModal = useNetworkModalToggle() const [toAddNetwork, setToAddNetwork] = useState() - const networkLabel: string | null = error ? null : (NETWORK_LABEL as any)[chainId] + const networkLabel: string | null = error ? null : (NETWORK_LABEL as any)[+(chainId ?? 1)] const network = getEnv() // eslint-disable-next-line react-hooks/exhaustive-deps const prodNetworks = [AdditionalChainId.CELO, ChainId.MAINNET, AdditionalChainId.FUSE] @@ -92,7 +95,7 @@ export default function NetworkModal(): JSX.Element | null { const switchChain = useCallback( async (chain: ChainId | AdditionalChainId) => { try { - if (active) await switchNetwork(chain) + if (initialized) await switchNetwork(chain) else setSelectedChain(chain) // only change chain to trigger onboard re-init if not already connected } catch (e: any) { if (e.code === 4902) { diff --git a/src/components/Popups/TransactionPopup.tsx b/src/components/Popups/TransactionPopup.tsx index 0a39288e2..6d30281ab 100644 --- a/src/components/Popups/TransactionPopup.tsx +++ b/src/components/Popups/TransactionPopup.tsx @@ -1,7 +1,8 @@ import React from 'react' import { AlertCircle, CheckCircle } from 'react-feather' import styled, { useTheme } from 'styled-components' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' + import { TYPE, TwTheme } from '../../theme' import { ExternalLink } from '../../theme/components' import { getExplorerLink } from '../../utils' @@ -24,7 +25,7 @@ export default function TransactionPopup({ summary?: string }) { const { i18n } = useLingui() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const theme = useTheme() as TwTheme @@ -44,7 +45,7 @@ export default function TransactionPopup({ {chainId && ( diff --git a/src/components/PortfolioTableRow/index.tsx b/src/components/PortfolioTableRow/index.tsx index 224e094d9..678153cac 100644 --- a/src/components/PortfolioTableRow/index.tsx +++ b/src/components/PortfolioTableRow/index.tsx @@ -3,13 +3,13 @@ import Withdraw from 'components/Withdraw' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import { ActionOrSwitchButton } from 'components/gd/Button/ActionOrSwitchButton' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { ButtonAction } from 'components/gd/Button' import ClaimRewards from 'components/ClaimRewards' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' import { MyStake, LIQUIDITY_PROTOCOL, SupportedChainId } from '@gooddollar/web3sdk' import { SupportedChains } from '@gooddollar/web3sdk-v2' +import { useAppKitNetwork } from '@reown/appkit/react' interface PortfolioTableRowProps { stake: MyStake @@ -22,7 +22,7 @@ const PortfolioTableRow = memo(({ stake, onUpdate, isMobile }: PortfolioTableRow const [isWithdrawOpen, setWithdrawOpen] = useState(false) const [isClaimRewardsOpen, setClaimRewardsOpen] = useState(false) const handleClaimRewardsOpen = useCallback(() => setClaimRewardsOpen(true), []) - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const requireChain = stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO ? 'FUSE' : 'MAINNET' const claimableStake = @@ -30,7 +30,7 @@ const PortfolioTableRow = memo(({ stake, onUpdate, isMobile }: PortfolioTableRow (chainId !== (SupportedChains.FUSE as number) && requireChain === 'MAINNET') const sendData = useSendAnalyticsData() - const network = stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO ? SupportedChainId[chainId] : 'mainnet' + const network = stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO ? SupportedChainId[+(chainId ?? 1)] : 'mainnet' const handleWithdrawOpen = useCallback(() => { sendData({ event: 'stake', action: 'savings_withdraw_rewards_claim_start', network }) setWithdrawOpen(true) diff --git a/src/components/Savings/SavingsCard/index.tsx b/src/components/Savings/SavingsCard/index.tsx index 443d114ed..1a9261ad2 100644 --- a/src/components/Savings/SavingsCard/index.tsx +++ b/src/components/Savings/SavingsCard/index.tsx @@ -3,8 +3,9 @@ import Card from 'components/gd/Card' import Title from 'components/gd/Title' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' -import SavingsModal, { ModalType } from 'components/Savings/SavingsModal' +import { useAppKitNetwork } from '@reown/appkit/react' +import SavingsModal, { ModalType } from 'components/Savings/SavingsModal' import Table from 'components/gd/Table' import { QuestionHelper } from 'components' import { useWindowSize } from 'hooks/useWindowSize' @@ -12,7 +13,6 @@ import { useWindowSize } from 'hooks/useWindowSize' import { SavingsCardRow } from 'components/Savings/SavingsCard/SavingsCardRow' import { SavingsCardTableMobile } from './SavingsCardTableMobile' import Web3SupportedNetworks, { IWeb3SupportedNetworksProps } from 'components/Web3SupportedNetworks' -import useActiveWeb3React from 'hooks/useActiveWeb3React' export type HeadingCopy = { title: string @@ -23,7 +23,7 @@ export type HeadingCopy = { //todo: SavingsCard can be merged into 1 component together with Savings export const SavingsCard = ({ account }: { account: string }): JSX.Element => { const { i18n } = useLingui() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const [isModalOpen, setIsModalOpen] = useState(false) const [type, setType] = useState() const { width } = useWindowSize() @@ -96,7 +96,12 @@ export const SavingsCard = ({ account }: { account: string }): JSX.Element => { <> {type && ( //TODO: fix when no account connected - + )} {isMobile ? ( diff --git a/src/components/Savings/SavingsModal/index.tsx b/src/components/Savings/SavingsModal/index.tsx index 58471686a..ff48f83d6 100644 --- a/src/components/Savings/SavingsModal/index.tsx +++ b/src/components/Savings/SavingsModal/index.tsx @@ -16,7 +16,7 @@ import { t } from '@lingui/macro' import Loader from 'components/Loader' import { ButtonAction } from 'components/gd/Button' -import useActiveWeb3React from 'hooks/useActiveWeb3React' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { useSavingsBalance, useSavingsFunctions, SupportedV2Networks } from '@gooddollar/web3sdk-v2' import { TransactionReceipt } from '@ethersproject/providers' import { TransactionStatus } from '@usedapp/core' @@ -88,8 +88,9 @@ const SavingsModal = memo( requiredChain: number }): JSX.Element => { const { i18n } = useLingui() - const { account, chainId } = useActiveWeb3React() - const network = SupportedV2Networks[chainId] + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const network = SupportedV2Networks[+(chainId ?? 1)] const [txStatus, setTxStatus] = useState({ status: 'None' }) const reduxDispatch = useDispatch() const sendData = useSendAnalyticsData() @@ -122,7 +123,7 @@ const SavingsModal = memo( dispatch({ type: 'DONE', payload: tx.transactionHash }) reduxDispatch( addTransaction({ - chainId: chainId, + chainId: +(chainId ?? 1), hash: tx.transactionHash, from: tx.from, summary: i18n._(t`${amount} ${TransactionCopy[type].transaction.summary}`), @@ -131,7 +132,7 @@ const SavingsModal = memo( } const depositOrWithdraw = async (amount: string) => { - if (account) { + if (address) { sendData({ event: 'savings', action: 'savings_' + type + '_confirm', amount: amount, network }) const parsedAmount = (parseFloat(withdrawAmount.toFixed(0)) * 1e2).toString() const tx = @@ -148,7 +149,7 @@ const SavingsModal = memo( } const claimRewards = async () => { - if (account) { + if (address) { sendData({ event: 'savings', action: 'savings_claim_rewards_confirm', network }) await claim().then((tx) => { if (tx) { @@ -160,9 +161,9 @@ const SavingsModal = memo( } const withdrawAll = async () => { - if (account && balance) { + if (address && balance) { sendData({ event: 'savings', action: 'savings_withdraw_all_send', network }) - const tx = await withdraw(balance, account) + const tx = await withdraw(balance, address) if (tx) { sendData({ event: 'savings', diff --git a/src/components/StyledMenu/SubMenu.tsx b/src/components/StyledMenu/SubMenu.tsx index 801846d2f..020cb97f7 100644 --- a/src/components/StyledMenu/SubMenu.tsx +++ b/src/components/StyledMenu/SubMenu.tsx @@ -16,11 +16,11 @@ export const SubMenuItems = ({ }) => items .filter((ext) => ext.show) - .map(({ label, url, dataAttr, withIcon, route, text }) => { + .map(({ label, url, dataAttr, withIcon, route, text }, index) => { if (url) { return ( - + {text} diff --git a/src/components/WalletBalance/index.tsx b/src/components/WalletBalance/index.tsx index 956d2c34b..7f2e750f1 100644 --- a/src/components/WalletBalance/index.tsx +++ b/src/components/WalletBalance/index.tsx @@ -9,10 +9,10 @@ import { AsyncStorage, G$Balances, useG$Balance, useG$Tokens } from '@gooddollar import { Box, Text, useColorModeValue } from 'native-base' import { BasePressable, CentreBox } from '@gooddollar/good-design' import { isMobile } from 'react-device-detect' +import { useAppKitNetwork } from '@reown/appkit/react' import usePromise from 'hooks/usePromise' import { getScreenWidth } from 'utils/screenSizes' -import { useActiveWeb3React } from 'hooks/useActiveWeb3React' import { AdditionalChainId } from '../../constants' import useMetaMask from 'hooks/useMetaMask' @@ -30,7 +30,7 @@ const chains = Object.values(AdditionalChainId) export const WalletBalanceWrapper = ({ toggleView }: { toggleView: typeof noop }) => { const { ethereum } = window - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const metaMaskInfo = useMetaMask() const balances = useG$Balance(5) const [G$, GOOD] = useG$Tokens() @@ -145,7 +145,7 @@ export const WalletBalanceWrapper = ({ toggleView }: { toggleView: typeof noop } borderBottomLeftRadius={12} borderBottomRightRadius={12} > - + {/* todo: retest this flow */} {!loading && !imported && !isMinipay && ( diff --git a/src/components/WalletChat/index.tsx b/src/components/WalletChat/index.tsx index 6e51fafba..3e0a26459 100644 --- a/src/components/WalletChat/index.tsx +++ b/src/components/WalletChat/index.tsx @@ -2,22 +2,27 @@ import React from 'react' import { WalletChatWidget } from 'react-wallet-chat-gd' import { useScreenSize } from '@gooddollar/good-design' - -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitAccount, useAppKitNetwork, useWalletInfo } from '@reown/appkit/react' +import { useAppKitProvider } from '@reown/appkit/react' +import type { Provider } from '@reown/appkit/react' const WalletChat = () => { - const { account, chainId, label, eipProvider } = useActiveWeb3React() + const { walletProvider } = useAppKitProvider('eip155') + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const { walletInfo } = useWalletInfo() + const { isDesktopView } = useScreenSize() return ( theme.flexColumnNoWrap} @@ -59,7 +60,9 @@ export default function WalletModal({ }): React.ReactElement { const { i18n } = useLingui() - const { account, error } = useActiveWeb3React() + const { address } = useAppKitAccount() + // TODO + const error = false const [walletView, setWalletView] = useState(WALLET_VIEWS.ACCOUNT) @@ -67,14 +70,14 @@ export default function WalletModal({ const toggleWalletModal = useWalletModalToggle() - const previousAccount = usePrevious(account) + const previousAccount = usePrevious(address) // close on connection, when logged out before useEffect(() => { - if (account && !previousAccount && walletModalOpen) { + if (address && !previousAccount && walletModalOpen) { toggleWalletModal() } - }, [account, previousAccount, toggleWalletModal, walletModalOpen]) + }, [address, previousAccount, toggleWalletModal, walletModalOpen]) // always reset to account view useEffect(() => { @@ -89,7 +92,7 @@ export default function WalletModal({ theme.flexRowNoWrap} @@ -47,9 +47,12 @@ const NetworkIcon = styled(Activity)` ` function Web3Network(): JSX.Element | null { - const { chainId = 42220, active, error } = useActiveWeb3React() + // TODO active(initliazed) + const { initialized } = useAppKitState() + const { chainId } = useAppKitNetwork() + const error = false const { selectedChain = 42220 } = useSelectedChain() - const displayChain = active ? chainId : selectedChain + const displayChain = initialized ? +(chainId ?? 42220) : selectedChain const { i18n } = useLingui() const sendData = useSendAnalyticsData() @@ -57,7 +60,7 @@ function Web3Network(): JSX.Element | null { const onNetworkChange = () => { toggleNetworkModal() - sendData({ event: 'network_switch', action: 'network_switch_start', network: ChainId[chainId] }) + sendData({ event: 'network_switch', action: 'network_switch_start', network: ChainId[+(chainId ?? 42220)] }) } return ( diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 21379abd6..6b50f5e4e 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -3,10 +3,8 @@ import { useAnalytics } from '@gooddollar/web3sdk-v2' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import styled from 'styled-components' +import { useAppKitAccount, useAppKitState } from '@reown/appkit/react' -import Loader from '../Loader' -import { useOnboardConnect } from 'hooks/useActiveOnboard' -import useActiveWeb3React from 'hooks/useActiveWeb3React' const MessageWrapper = styled.div` display: flex; @@ -21,9 +19,11 @@ const Message = styled.h2` export default function Web3ReactManager({ children }: { children: JSX.Element }) { const { i18n } = useLingui() - const { tried } = useOnboardConnect() - const [showLoader, setShowLoader] = useState(false) // handle delayed loader state - const { active: networkActive, error: networkError, account } = useActiveWeb3React() + // const { tried } = useOnboardConnect() + const [, setShowLoader] = useState(false) // handle delayed loader state + const { initialized } = useAppKitState() + const { address } = useAppKitAccount() + const networkError = false const { identify } = useAnalytics() useEffect(() => { @@ -38,22 +38,23 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } useEffect(() => { // re-identify analytics when connected wallet changes - if (networkActive && account) { - identify(account) + if (initialized && address) { + identify(address) } - }, [networkActive, account]) + }, [initialized, address]) + // TODO // on page load, do nothing until we've tried to connect a previously connected wallet - if (!tried) { - return showLoader ? ( - - - - ) : null - } + // if (!tried) { + // return showLoader ? ( + // + // + // + // ) : null + // } // if the account context isn't active, and there's an error on the network context, it's an irrecoverable error - if (!networkActive && networkError) { + if (!initialized && networkError) { return ( diff --git a/src/components/Web3Status/index.tsx b/src/components/Web3Status/index.tsx index 8c9c5a759..8d28fb158 100644 --- a/src/components/Web3Status/index.tsx +++ b/src/components/Web3Status/index.tsx @@ -7,11 +7,11 @@ import Loader from '../Loader' import WalletModal from '../WalletModal' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' -import { useActiveWeb3React } from 'hooks/useActiveWeb3React' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { Text, HStack } from 'native-base' import { useNativeBalance } from '@gooddollar/web3sdk-v2' import { Currency } from '@sushiswap/sdk' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' // we want the latest one to come first, so return negative if a is after b function newTransactionsFirst(a: TransactionDetails, b: TransactionDetails) { @@ -21,9 +21,10 @@ function newTransactionsFirst(a: TransactionDetails, b: TransactionDetails) { function Web3StatusInner() { const { i18n } = useLingui() const sendData = useSendAnalyticsData() - const { account, chainId } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() - const { ENSName } = useENSName(account ?? undefined) + const { ENSName } = useENSName(address ?? undefined) const allTransactions = useAllTransactions() const nativeBalance = useNativeBalance() @@ -43,11 +44,11 @@ function Web3StatusInner() { return ( - {account && ( + {address && (
{nativeBalance && ( - {parseFloat(nativeBalance).toFixed(4)} {Currency.getNativeCurrencySymbol(chainId)} + {parseFloat(nativeBalance).toFixed(4)} {Currency.getNativeCurrencySymbol(+(chainId ?? 1))} )} {hasPendingTransactions ? ( @@ -59,7 +60,7 @@ function Web3StatusInner() {
) : (
- {ENSName || shortenAddress(account)} + {ENSName || shortenAddress(address)}
)}
@@ -69,16 +70,16 @@ function Web3StatusInner() { } export default function Web3Status(): JSX.Element { - const { account } = useActiveWeb3React() + const { address } = useAppKitAccount() - const { ENSName } = useENSName(account ?? undefined) + const { ENSName } = useENSName(address ?? undefined) const allTransactions = useAllTransactions() const sortedRecentTransactions = useMemo(() => { const txs = Object.values(allTransactions) return txs.filter(isTransactionRecent).sort(newTransactionsFirst) - }, [allTransactions, account]) + }, [allTransactions, address]) const pending = sortedRecentTransactions.filter((tx) => !tx.receipt).map((tx) => tx.hash) const confirmed = sortedRecentTransactions.filter((tx) => tx.receipt).map((tx) => tx.hash) diff --git a/src/components/Withdraw/index.tsx b/src/components/Withdraw/index.tsx index 8153a9410..1265d91f9 100644 --- a/src/components/Withdraw/index.tsx +++ b/src/components/Withdraw/index.tsx @@ -13,12 +13,12 @@ import PercentInputControls from 'components/Withdraw/PercentInputControls' import { WithdrawStyled } from 'components/Withdraw/styled' import { memo, useCallback, useEffect, useMemo, useState } from 'react' import { useDispatch } from 'react-redux' -import useActiveWeb3React from '../../hooks/useActiveWeb3React' import { addTransaction } from '../../state/transactions/actions' import { getExplorerLink } from '../../utils' import { LIQUIDITY_PROTOCOL, MyStake, SupportedChainId, useGdContextProvider, withdraw } from '@gooddollar/web3sdk' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' +import { useAppKitNetwork } from '@reown/appkit/react' function formatNumber(value: number) { return Intl.NumberFormat('en-US', { style: 'decimal', maximumFractionDigits: 4 }).format(value) @@ -43,8 +43,8 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r const { web3 } = useGdContextProvider() const [percentage, setPercentage] = useState('50') const [withdrawAmount, setWithdrawAmount] = useState(totalStake * (Number(percentage) / 100)) - const { chainId } = useActiveWeb3React() - const network = SupportedChainId[chainId] + const { chainId } = useAppKitNetwork() + const network = SupportedChainId[+(chainId ?? 1)] const [error, setError] = useState() const sendData = useSendAnalyticsData() @@ -84,7 +84,7 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r }) dispatch( addTransaction({ - chainId: chainId!, + chainId: +(chainId ?? 1)!, hash: transactionHash, from: from, summary: i18n._(t`Withdrew funds from ${stake.protocol} `), @@ -193,8 +193,8 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r = ({ }) => { const toggleNetworkModal = useNetworkModalToggle() const { i18n } = useLingui() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const { contractsEnv } = useGdContextProvider() if (requireChain === 'MAINNET') { From e709dd2adad3d8eacd0b1132e0921fd4cf46f272 Mon Sep 17 00:00:00 2001 From: Peter Kompasz Date: Wed, 6 Aug 2025 19:33:30 +0300 Subject: [PATCH 04/36] chore: onboard -> appkit --- src/components/AppBar.tsx | 1 - src/components/NetworkModal/index.tsx | 2 +- src/hooks/useClaiming.ts | 21 +++++------ src/hooks/useContract.ts | 19 ++++++---- src/hooks/useG$.ts | 10 +++--- src/hooks/useWeb3.tsx | 15 +++++--- src/pages/gd/Claim/ClaimBalance.tsx | 4 +-- src/pages/gd/Claim/OldClaim.tsx | 36 ++++++++++--------- src/pages/gd/MicroBridge/index.tsx | 6 ++-- src/pages/gd/Portfolio/index.tsx | 19 +++++----- src/pages/gd/Stake/Savings/index.tsx | 7 ++-- src/pages/gd/Stake/StakeDeposit/index.tsx | 27 +++++++------- src/pages/gd/Stake/index.tsx | 10 +++--- src/pages/gd/Swap/SwapCelo/UniSwap.tsx | 15 ++++---- src/pages/gd/Swap/SwapConfirmModal/index.tsx | 10 +++--- src/pages/gd/Swap/SwapCore/mentoReserve.tsx | 15 ++++---- .../SwapTokensModalTokenRow/index.tsx | 8 ++--- src/pages/gd/Swap/hooks.ts | 6 ++-- src/pages/gd/Swap/index.tsx | 4 +-- src/state/application/updater.ts | 13 +++---- src/state/multicall/hooks.ts | 9 ++--- src/state/multicall/updater.tsx | 14 ++++---- src/state/swap/hooks.ts | 6 ++-- src/state/transactions/hooks.tsx | 18 +++++----- src/state/transactions/updater.tsx | 14 +++++--- src/state/user/hooks.tsx | 4 +-- src/state/wallet/hooks.ts | 4 +-- 27 files changed, 175 insertions(+), 142 deletions(-) diff --git a/src/components/AppBar.tsx b/src/components/AppBar.tsx index 4e0f6f10a..981e95233 100644 --- a/src/components/AppBar.tsx +++ b/src/components/AppBar.tsx @@ -173,7 +173,6 @@ const Web3Bar = () => { ) : ( <> - {/* */} )} diff --git a/src/components/NetworkModal/index.tsx b/src/components/NetworkModal/index.tsx index 20b20fa1d..e47c91963 100644 --- a/src/components/NetworkModal/index.tsx +++ b/src/components/NetworkModal/index.tsx @@ -11,6 +11,7 @@ import ModalHeader from '../ModalHeader' import Option from '../WalletModal/Option' import styled from 'styled-components' import { AdditionalChainId } from '../../constants' +import { useAppKitNetwork, useAppKitState } from '@reown/appkit/react' import { NETWORK_ICON, NETWORK_LABEL } from '../../constants/networks' import { useModalOpen, useNetworkModalToggle, useSelectedChain } from '../../state/application/hooks' @@ -18,7 +19,6 @@ import { ApplicationModal } from '../../state/application/types' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { getEnv } from 'utils/env' -import { useAppKitNetwork, useAppKitState } from '@reown/appkit/react' const TextWrapper = styled.div` font-style: normal; diff --git a/src/hooks/useClaiming.ts b/src/hooks/useClaiming.ts index 3658de911..12e6d9943 100644 --- a/src/hooks/useClaiming.ts +++ b/src/hooks/useClaiming.ts @@ -1,9 +1,9 @@ import { check, claim, isWhitelisted, SupportedChainId, useGdContextProvider } from '@gooddollar/web3sdk' import { useCallback, useEffect, useState } from 'react' import usePromise from './usePromise' -import useActiveWeb3React from './useActiveWeb3React' import useSendAnalyticsData from './useSendAnalyticsData' import { useClaim, useTimer } from '@gooddollar/web3sdk-v2' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' interface UseClaimReturn { claimable?: boolean | Error @@ -15,8 +15,9 @@ interface UseClaimReturn { } export const useClaiming = (): UseClaimReturn => { - const { chainId, account } = useActiveWeb3React() - const network = SupportedChainId[chainId] + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const network = SupportedChainId[+(chainId ?? 1)] const { web3 } = useGdContextProvider() const sendData = useSendAnalyticsData() const { nextClaimTime } = useClaim() @@ -27,15 +28,15 @@ export const useClaiming = (): UseClaimReturn => { useEffect(() => setClaimTime(nextClaimTime), [nextClaimTime.toString()]) const [claimable, , , refetch] = usePromise(async () => { - if (!account || !web3 || (chainId as any) !== SupportedChainId.FUSE) return false - const whitelisted = await isWhitelisted(web3, account).catch((e) => { + if (!address || !web3 || (chainId as any) !== SupportedChainId.FUSE) return false + const whitelisted = await isWhitelisted(web3, address).catch((e) => { console.error(e) return false }) if (!whitelisted) return new Error('Only verified wallets can claim') - const amount = await check(web3, account).catch((e) => { + const amount = await check(web3, address).catch((e) => { console.error(e) return new Error('Something went wrong.. try again later.') }) @@ -46,16 +47,16 @@ export const useClaiming = (): UseClaimReturn => { } return /[^0.]/.test(amount) - }, [chainId, web3, account]) + }, [chainId, web3, address]) const handleClaim = useCallback(async () => { - if (!account || !web3) { + if (!address || !web3) { return false } sendData({ event: 'claim', action: 'claim_start', network }) - const startClaim = await claim(web3, account).catch(() => { + const startClaim = await claim(web3, address).catch(() => { refetch() return false }) @@ -67,7 +68,7 @@ export const useClaiming = (): UseClaimReturn => { sendData({ event: 'claim', action: 'claim_success', network }) refetch() return true - }, [account, web3, sendData, network, refetch]) + }, [address, web3, sendData, network, refetch]) const isFuse = (chainId as any) === SupportedChainId.FUSE diff --git a/src/hooks/useContract.ts b/src/hooks/useContract.ts index 10fa06f86..bbe8ab578 100644 --- a/src/hooks/useContract.ts +++ b/src/hooks/useContract.ts @@ -15,27 +15,32 @@ import ENS_ABI from '../constants/abis/ens-registrar.json' import { ERC20_BYTES32_ABI } from '../constants/abis/erc20' import PENDING_ABI from '../constants/abis/pending.json' import { getContract } from '../utils' -import { useActiveWeb3React } from './useActiveWeb3React' import { useWeb3Context } from '@gooddollar/web3sdk-v2' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' // returns null on errors export function useContract(address: string | undefined, ABI: any, withSignerIfPossible = true): Contract | null { - const { account } = useActiveWeb3React() + const { address: accountAddress } = useAppKitAccount() const { web3Provider: library } = useWeb3Context() as { web3Provider: Web3Provider } return useMemo(() => { if (!address || !ABI || !library) return null try { - return getContract(address, ABI, library, withSignerIfPossible && account ? account : undefined) + return getContract( + address, + ABI, + library, + withSignerIfPossible && accountAddress ? accountAddress : undefined + ) } catch (error) { console.error('Failed to get contract', error) return null } - }, [address, ABI, library, withSignerIfPossible, account]) + }, [address, ABI, library, withSignerIfPossible, accountAddress]) } export function useENSRegistrarContract(withSignerIfPossible?: boolean): Contract | null { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() let address: string | undefined if (chainId) { switch (chainId) { @@ -63,7 +68,7 @@ export function usePairContract(pairAddress?: string, withSignerIfPossible?: boo } export function useMerkleDistributorContract(): Contract | null { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() return useContract(chainId ? MERKLE_DISTRIBUTOR_ADDRESS[chainId] : undefined, MERKLE_DISTRIBUTOR_ABI, true) } @@ -76,7 +81,7 @@ export function usePendingContract(): Contract | null { } export function useMulticallContract(): Contract | null { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() return useContract(chainId && MULTICALL_NETWORKS[chainId], MULTICALL_ABI, false) } diff --git a/src/hooks/useG$.ts b/src/hooks/useG$.ts index e086aa728..7beeb2cc0 100644 --- a/src/hooks/useG$.ts +++ b/src/hooks/useG$.ts @@ -1,13 +1,15 @@ import { getTokens } from '@gooddollar/web3sdk' -import useActiveWeb3React from './useActiveWeb3React' import { useEffect, useState } from 'react' import { Token } from '@sushiswap/sdk' import { Token as UToken } from '@uniswap/sdk-core' import { ethers } from 'ethers' +import { useAppKitNetwork } from '@reown/appkit/react' export default function useG$() { - const { chainId } = useActiveWeb3React() - const [token, setToken] = useState(new Token(chainId, ethers.constants.AddressZero, 18, 'G$', 'GoodDollar')) + const { chainId } = useAppKitNetwork() + const [token, setToken] = useState( + new Token(+(chainId ?? 1), ethers.constants.AddressZero, 18, 'G$', 'GoodDollar') + ) useEffect(() => { if (!chainId) return @@ -15,7 +17,7 @@ export default function useG$() { const [tokens] = await getTokens(chainId as any) const G$ = tokens.get('G$') as UToken | undefined if (G$) { - setToken(new Token(chainId, G$.address, G$.decimals, G$.symbol, G$.name)) + setToken(new Token(+(chainId ?? 1), G$.address, G$.decimals, G$.symbol, G$.name)) } })() }, [chainId]) diff --git a/src/hooks/useWeb3.tsx b/src/hooks/useWeb3.tsx index 6eb98704e..81729b652 100644 --- a/src/hooks/useWeb3.tsx +++ b/src/hooks/useWeb3.tsx @@ -7,8 +7,9 @@ import { ChainId } from '@sushiswap/sdk' import { DAO_NETWORK, GdSdkContext, useEnvWeb3 } from '@gooddollar/web3sdk' import { AsyncStorage, Celo, Fuse, Web3Provider } from '@gooddollar/web3sdk-v2' import { sample } from 'lodash' +import { useAppKitNetwork, useAppKitProvider } from '@reown/appkit/react' +import type { Provider } from '@reown/appkit/react' -import useActiveWeb3React from './useActiveWeb3React' import { getEnv } from 'utils/env' type NetworkSettings = { @@ -52,14 +53,18 @@ export function useNetwork(): NetworkSettings { export function Web3ContextProvider({ children }: { children: ReactNode | ReactNodeArray }): JSX.Element { const { rpcs } = useNetwork() - const { eipProvider, chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() + const { walletProvider } = useAppKitProvider('eip155') const isMiniPay = window?.ethereum?.isMiniPay const [mainnetWeb3] = useEnvWeb3(DAO_NETWORK.MAINNET) - const web3 = useMemo(() => (eipProvider ? new Web3(eipProvider as any) : mainnetWeb3), [eipProvider, mainnetWeb3]) + const web3 = useMemo( + () => (walletProvider ? new Web3(walletProvider as any) : mainnetWeb3), + [walletProvider, mainnetWeb3] + ) const webprovider = useMemo( - () => eipProvider && new ethers.providers.Web3Provider(eipProvider as ExternalProvider, 'any'), - [eipProvider] + () => walletProvider && new ethers.providers.Web3Provider(walletProvider as ExternalProvider, 'any'), + [walletProvider] ) if (webprovider) { diff --git a/src/pages/gd/Claim/ClaimBalance.tsx b/src/pages/gd/Claim/ClaimBalance.tsx index c8343b8c7..1a186a133 100644 --- a/src/pages/gd/Claim/ClaimBalance.tsx +++ b/src/pages/gd/Claim/ClaimBalance.tsx @@ -3,13 +3,13 @@ import { View, Box, Text } from 'native-base' import { ArrowButton, BalanceGD } from '@gooddollar/good-design' import { SupportedChains, useHasClaimed, useSwitchNetwork } from '@gooddollar/web3sdk-v2' import { useG$Price } from '@gooddollar/web3sdk-v2' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { useClaiming } from 'hooks/useClaiming' import { useNetworkModalToggle } from 'state/application/hooks' import { BigNumber } from '@ethersproject/bignumber' import { QueryParams } from '@usedapp/core' import { useIsSimpleApp } from 'state/simpleapp/simpleapp' import { Fraction } from '@uniswap/sdk-core' +import { useAppKitNetwork } from '@reown/appkit/react' const NextClaim = ({ time }: { time: string }) => ( @@ -18,7 +18,7 @@ const NextClaim = ({ time }: { time: string }) => ( ) export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) => { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const rawPrice = useG$Price() const G$Price = +new Fraction(rawPrice?.toString() || 0, 1e18).toSignificant(6) diff --git a/src/pages/gd/Claim/OldClaim.tsx b/src/pages/gd/Claim/OldClaim.tsx index c42ab1204..b642ccdd0 100644 --- a/src/pages/gd/Claim/OldClaim.tsx +++ b/src/pages/gd/Claim/OldClaim.tsx @@ -12,7 +12,7 @@ import { ClaimSuccessModal, } from '@gooddollar/good-design' import { Box, Center, Text, useBreakpointValue } from 'native-base' -import { useConnectWallet } from '@web3-onboard/react' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { useClaim, SupportedV2Networks, @@ -27,7 +27,6 @@ import moment from 'moment' import ClaimFooterCelebration from 'assets/images/claim/claim-footer-celebration.png' import { ClaimBalance } from './ClaimBalance' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' import { NewsFeedWidget, NewsFeedWrapper } from '../../../components/NewsFeed' @@ -50,9 +49,10 @@ const OldClaim = memo(() => { }) const [claimed, setClaimed] = useState(undefined) - const [, connect] = useConnectWallet() - const { account, chainId } = useActiveWeb3React() - const network = SupportedV2Networks[chainId] + // const [, connect] = useConnectWallet() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const network = SupportedV2Networks[+(chainId ?? 1)] const sendData = useSendAnalyticsData() const [, payload] = useFeatureFlagWithPayload('claim-feature') const { enabled: claimEnabled = true, disabledMessage = '' } = (payload as any) || {} @@ -139,7 +139,7 @@ const OldClaim = memo(() => { if (!isDivviDone && chainId === 42220) { void submitReferral({ txHash: claim.transactionHash, chainId }) .then(async () => { - await AsyncStorage.setItem(`GD_divvi_${account}`, 'true') + await AsyncStorage.setItem(`GD_divvi_${address}`, 'true') }) .catch((e) => console.error('divvi failed', { e })) } @@ -154,16 +154,20 @@ const OldClaim = memo(() => { // eslint-disable-next-line react-hooks/exhaustive-deps }, [send, network, sendData, claimEnabled, isSimpleApp]) - const handleConnect = useCallback(async () => { - if (claimEnabled) { - const state = await connect() + // const handleConnect = useCallback(async () => { + // if (claimEnabled) { + // const state = await connect() - return !!state.length - } else { - showModal() - } - return false - }, [connect, claimEnabled]) + // return !!state.length + // } else { + // showModal() + // } + // return false + // }, [connect, claimEnabled]) + const handleConnect = async () => { + console.log('asd') + return true + } const mainView = useBreakpointValue({ base: { @@ -352,7 +356,7 @@ Learn how here`, claimed={claimed} claiming={state} handleConnect={handleConnect} - chainId={chainId} + chainId={+(chainId ?? 1)} onEvent={handleEvents} /> {isHoliday ? ( diff --git a/src/pages/gd/MicroBridge/index.tsx b/src/pages/gd/MicroBridge/index.tsx index c4cd6bb49..9d385db07 100644 --- a/src/pages/gd/MicroBridge/index.tsx +++ b/src/pages/gd/MicroBridge/index.tsx @@ -8,13 +8,13 @@ import { import { Text, VStack } from 'native-base' import { i18n } from '@lingui/core' import { t } from '@lingui/macro' +import { useAppKitAccount } from '@reown/appkit/react' import { PageLayout } from 'components/Layout/PageLayout' -import { useActiveWeb3React } from 'hooks/useActiveWeb3React' import Placeholder from 'components/gd/Placeholder' const MicroBridge = memo(() => { - const { account } = useActiveWeb3React() + const { address } = useAppKitAccount() return ( @@ -29,7 +29,7 @@ ecosystems`
- {account ? ( + {address ? ( ) : ( diff --git a/src/pages/gd/Portfolio/index.tsx b/src/pages/gd/Portfolio/index.tsx index 3d121537b..de75c87ee 100644 --- a/src/pages/gd/Portfolio/index.tsx +++ b/src/pages/gd/Portfolio/index.tsx @@ -19,13 +19,13 @@ import PortfolioTableRow from 'components/PortfolioTableRow' import Withdraw from 'components/Withdraw' import WithdrawRewards from 'components/WithdrawRewards' import { disableTestnetMain } from 'constants/index' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import useCallbackOnFocus from 'hooks/useCallbackOnFocus' import usePromise from 'hooks/usePromise' import { useWindowSize } from 'hooks/useWindowSize' import styled from 'styled-components' import { CellSC, PortfolioAnalyticSC, PortfolioSC, PortfolioTitleSC, PortfolioValueSC } from './styled' import { SavingsCard } from 'components/Savings/SavingsCard' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' const MobileTableSC = styled.div`` @@ -45,7 +45,7 @@ const MobileCell = ({ const { i18n } = useLingui() const [isWithdrawOpen, setWithdrawOpen] = useState(false) const [isClaimRewardsOpen, setClaimRewardsOpen] = useState(false) - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const requireNetwork = stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO ? DAO_NETWORK.FUSE : DAO_NETWORK.MAINNET const claimableStake = @@ -194,7 +194,8 @@ const MobileTable = ({ stakes, cells, onUpdate }: { stakes?: MyStake[]; cells: a const Portfolio = memo(() => { const { i18n } = useLingui() - const { account, chainId } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const gdPrice = useG$Price() const [mainnetWeb3, mainnetChainId] = useEnvWeb3(DAO_NETWORK.MAINNET) const [fuseWeb3, fuseChainId] = useEnvWeb3(DAO_NETWORK.FUSE) @@ -239,8 +240,8 @@ const Portfolio = memo(() => { const [data, , , update] = usePromise(async () => { const list = - account && mainnetWeb3 && fuseWeb3 && !disableTestnetMain.includes(chainId) - ? await getMyList(mainnetWeb3, fuseWeb3, account, gdPrice) + address && mainnetWeb3 && fuseWeb3 && !disableTestnetMain.includes(+(chainId ?? 1)) + ? await getMyList(mainnetWeb3, fuseWeb3, address, gdPrice) : [] return { list, @@ -285,7 +286,7 @@ const Portfolio = memo(() => { } ), } - }, [account, mainnetChainId, fuseChainId, gdPrice]) + }, [address, mainnetChainId, fuseChainId, gdPrice]) const showNotice = data?.list.find((stake) => stake.isDeprecated) @@ -439,10 +440,10 @@ const Portfolio = memo(() => { )} - {process.env.REACT_APP_CELO_PHASE_3 && account && ( + {process.env.REACT_APP_CELO_PHASE_3 && address && ( <> {i18n._(`Savings`)} - + )} @@ -452,7 +453,7 @@ const Portfolio = memo(() => { Portfolio - {account ? ( + {address ? ( portfolio ) : ( {i18n._(t`Connect a wallet to see your portfolio`)} diff --git a/src/pages/gd/Stake/Savings/index.tsx b/src/pages/gd/Stake/Savings/index.tsx index 03a051cef..50e62fd00 100644 --- a/src/pages/gd/Stake/Savings/index.tsx +++ b/src/pages/gd/Stake/Savings/index.tsx @@ -14,7 +14,7 @@ import { useWindowSize } from 'hooks/useWindowSize' import { SavingsDepositMobile } from './SavingsDepositMobile' import { SavingsMobileStat } from '../../../../components/Savings/SavingsStat/SavingsMobileStat' import { HeadingCopy } from 'components/Savings/SavingsCard' -import { useActiveWeb3React } from 'hooks/useActiveWeb3React' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { ModalButton } from 'components/Savings/SavingsModal/SavingsModalButtons' import { ChainId } from '@sushiswap/sdk' import Web3SupportedNetworks, { IWeb3SupportedNetworksProps } from 'components/Web3SupportedNetworks' @@ -81,7 +81,8 @@ const SavingRow: FC = ({ chainId, headings, showModal }) => { export const Savings: FC = () => { const [modalData, setModalData] = useState() - const { account, chainId } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const { i18n } = useLingui() const { width } = useWindowSize() const isMobile = width ? width <= 768 : undefined @@ -145,7 +146,7 @@ export const Savings: FC = () => { return (
- {Object.values(SupportedV2Networks).includes(chainId as number) && account && !!modalData && ( + {Object.values(SupportedV2Networks).includes(chainId ?? 1) && address && !!modalData && ( )} {i18n._(t`Savings`)} diff --git a/src/pages/gd/Stake/StakeDeposit/index.tsx b/src/pages/gd/Stake/StakeDeposit/index.tsx index 81152c942..f66f22498 100644 --- a/src/pages/gd/Stake/StakeDeposit/index.tsx +++ b/src/pages/gd/Stake/StakeDeposit/index.tsx @@ -8,7 +8,7 @@ import AsyncTokenIcon from 'components/gd/sushi/AsyncTokenIcon' import Title from 'components/gd/Title' import Loader from 'components/Loader' import Switch from 'components/Switch' -import useActiveWeb3React from 'hooks/useActiveWeb3React' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' import SwapInput from 'pages/gd/Swap/SwapInput' import { useDispatch } from 'react-redux' @@ -60,7 +60,9 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake const { i18n } = useLingui() //note: // (bug-minor) chainId is cached here at default 1 when using an action button. Only seems to break loading icons on dev.. - const { chainId, account } = useActiveWeb3React() + + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const { web3 } = useGdContextProvider() const [state, dispatch] = useReducer( ( @@ -122,12 +124,13 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake const tokenToDeposit = stake.tokens[state.token] const tokenToDepositBalance = useTokenBalance( - account, + address, useMemo( () => - chainId && + // TODO + (chainId as unknown as Token) && new Token( - chainId, + +(chainId ?? 1), tokenToDeposit.address, tokenToDeposit.decimals, tokenToDeposit.symbol, @@ -213,7 +216,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake STAKE {stake.tokens.A.symbol} @@ -268,7 +271,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake /> withLoading(async () => { sendData({ @@ -300,7 +303,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake > {state.loading ? i18n._(t`APPROVING`) - : !account + : !address ? i18n._(t`Connect wallet`) : i18n._(t`APPROVE`)} @@ -313,7 +316,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake
{state.value} @@ -354,7 +357,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake dispatch({ type: 'DONE', payload: transactionHash }) reduxDispatch( addTransaction({ - chainId: chainId!, + chainId: +chainId!, hash: transactionHash, from: from, summary: i18n._( @@ -390,8 +393,8 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake { - const stakes = await (web3 && mainnetWeb3 && !disableTestnetMain.includes(chainId) + const stakes = await (web3 && mainnetWeb3 && !disableTestnetMain.includes(+(chainId ?? 1)) ? getStakes(mainnetWeb3) : Promise.resolve([])) diff --git a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx index 210f92ba3..1ab0e39ef 100644 --- a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx +++ b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx @@ -24,8 +24,8 @@ import { addTransaction } from 'state/transactions/actions' import { ChainId } from '@sushiswap/sdk' import { isMobile } from 'react-device-detect' import { Center } from 'native-base' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { useApplicationTheme } from 'state/application/hooks' import useSendAnalytics from 'hooks/useSendAnalyticsData' import { tokens } from './celo-tokenlist.json' @@ -42,8 +42,9 @@ export const UniSwap = (): JSX.Element => { const [theme] = useApplicationTheme() const uniTheme = theme === 'dark' ? darkTheme : lightTheme const { web3Provider } = useWeb3Context() - const { account, chainId } = useActiveWeb3React() - const network = SupportedChains[chainId] + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const network = SupportedChains[+(chainId ?? 1)] const [, connect] = useConnectWallet() const globalDispatch = useDispatch() const sendData = useSendAnalytics() @@ -80,7 +81,7 @@ export const UniSwap = (): JSX.Element => { tokens.push(gdToken) const connectOnboard = useCallback(async () => { - if (!account) { + if (!address) { // todo: make connect onboard a generic function/merge with: useOnboardConnect const osName = getDevice().os.name // temp solution for where it tries and open a deeplink for desktop app @@ -119,7 +120,7 @@ export const UniSwap = (): JSX.Element => { addTransaction({ chainId: 42220 as ChainId, hash: txHash, - from: account!, + from: address!, summary, }) ) @@ -162,7 +163,7 @@ export const UniSwap = (): JSX.Element => { addTransaction({ chainId: 42220 as ChainId, hash: txHash, - from: account!, + from: address!, summary: summary, tradeInfo: tradeInfo, }) @@ -171,7 +172,7 @@ export const UniSwap = (): JSX.Element => { } } }, - [account, network] + [address, network] ) const handleTxSuccess: OnTxSuccess = useCallback( diff --git a/src/pages/gd/Swap/SwapConfirmModal/index.tsx b/src/pages/gd/Swap/SwapConfirmModal/index.tsx index 15615677f..9380f7353 100644 --- a/src/pages/gd/Swap/SwapConfirmModal/index.tsx +++ b/src/pages/gd/Swap/SwapConfirmModal/index.tsx @@ -9,7 +9,7 @@ import CurrencyLogo from 'components/CurrencyLogo' import { Currency } from '@sushiswap/sdk' import { addTransaction } from 'state/transactions/actions' import { useDispatch } from 'react-redux' -import useActiveWeb3React from 'hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { getExplorerLink } from 'utils' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' @@ -69,8 +69,8 @@ const SwapConfirmModal = memo( const { i18n } = useLingui() const [from, to] = pair ?? [] const globalDispatch = useDispatch() - const { chainId } = useActiveWeb3React() - const network = SupportedChainId[chainId] + const { chainId } = useAppKitNetwork() + const network = SupportedChainId[+(chainId ?? 1)] const { web3 } = useGdContextProvider() const [status, setStatus] = useState<'PREVIEW' | 'CONFIRM' | 'SENT' | 'SUCCESS' | 'REJECTED'>('SENT') const [hash, setHash] = useState('') @@ -97,7 +97,7 @@ const SwapConfirmModal = memo( globalDispatch( addTransaction({ - chainId: chainId!, + chainId: +chainId!, hash: hash, from: from, summary: summary, @@ -301,7 +301,7 @@ const SwapConfirmModal = memo(
diff --git a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx index 51da603ca..955537315 100644 --- a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx +++ b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx @@ -10,6 +10,7 @@ import { BigNumber, ethers } from 'ethers' import { Token, Percent, CurrencyAmount } from '@uniswap/sdk-core' import { Currency, TokenAmount } from '@sushiswap/sdk' import { Info } from 'react-feather' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { SwapCardSC, SwapContentWrapperSC, SwapWrapperSC } from '../styled' import SwapRow from '../SwapRow' @@ -20,7 +21,6 @@ import SwapDetails from '../SwapDetails' import SwapSettings from '../SwapSettings' import { SwapContext } from '../hooks' import { useCurrencyBalance } from 'state/wallet/hooks' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import useG$ from 'hooks/useG$' import SwapConfirmModal from '../SwapConfirmModal' @@ -41,8 +41,9 @@ const MentoSwap = memo(() => { value: '0.1', }) // console.log('slippageTollerance -->', {slippageTolerance}) - const { account, chainId } = useActiveWeb3React() - const network = SupportedChainId[chainId] + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const network = SupportedChainId[+(chainId ?? 1)] const [inputAmount, setInputAmount] = useState('') const [outputAmount, setOutputAmount] = useState('') @@ -50,8 +51,8 @@ const MentoSwap = memo(() => { const setOutputAmountDebounced = useCallback(debounce(setOutputAmount, 500), []) const G$ = useG$() - const cusdBalance = useCurrencyBalance(account ?? undefined, CUSD) - const g$Balance = useCurrencyBalance(account ?? undefined, G$) + const cusdBalance = useCurrencyBalance(address ?? undefined, CUSD) + const g$Balance = useCurrencyBalance(address ?? undefined, G$) const [swapPair, setSwapPair] = useState({ input: CUSD, @@ -64,7 +65,7 @@ const MentoSwap = memo(() => { const [lastEdited, setLastEdited] = useState<{ field: 'output' | 'input' }>() const swapMeta = useSwapMeta( - account || '', + address || '', buying, Number(slippageTolerance.value), lastEdited?.field === 'input' ? inputAmountBig : undefined, @@ -365,7 +366,7 @@ const MentoSwap = memo(() => { - ) : !account ? ( + ) : !address ? ( Connect wallet diff --git a/src/pages/gd/Swap/SwapTokensModal/SwapTokensModalTokenRow/index.tsx b/src/pages/gd/Swap/SwapTokensModal/SwapTokensModalTokenRow/index.tsx index 36bb52c4a..dc3ea8e83 100644 --- a/src/pages/gd/Swap/SwapTokensModal/SwapTokensModalTokenRow/index.tsx +++ b/src/pages/gd/Swap/SwapTokensModal/SwapTokensModalTokenRow/index.tsx @@ -2,9 +2,9 @@ import React, { CSSProperties, memo } from 'react' import { SwapTokensModalTokenRowSC } from './styled' import CurrencyLogo from 'components/CurrencyLogo' import { Currency } from '@sushiswap/sdk' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { useCurrencyBalance } from 'state/wallet/hooks' import Loader from 'components/Loader' +import { useAppKitAccount } from '@reown/appkit/react' export interface SwapTokensModalTokenRowProps extends Omit { className?: string @@ -15,8 +15,8 @@ export interface SwapTokensModalTokenRowProps extends Omit { - const { account } = useActiveWeb3React() - const balance = useCurrencyBalance(account ?? undefined, token) + const { address } = useAppKitAccount() + const balance = useCurrencyBalance(address ?? undefined, token) return ( @@ -25,7 +25,7 @@ const SwapTokensModalTokenRow = memo(
{token.getSymbol()}
{token.getName()}
-
{balance ? balance.toSignificant(4) : account ? : null}
+
{balance ? balance.toSignificant(4) : address ? : null}
) } diff --git a/src/pages/gd/Swap/hooks.ts b/src/pages/gd/Swap/hooks.ts index 15057c8fe..5630078bc 100644 --- a/src/pages/gd/Swap/hooks.ts +++ b/src/pages/gd/Swap/hooks.ts @@ -1,8 +1,8 @@ import { createContext, useContext, useEffect, useState } from 'react' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import { getTokenList } from '@gooddollar/web3sdk' import { ETHER, Currency, Token } from '@sushiswap/sdk' import { AdditionalChainId, FUSE } from 'constants/index' +import { useAppKitNetwork } from '@reown/appkit/react' export interface SwapVariant { token: Currency @@ -22,7 +22,7 @@ export interface ISwapContext { export const SwapContext = createContext(null as any) export function useTokens() { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const [tokens, setTokens] = useState(null) useEffect(() => { setTokens(!chainId ? [] : null) @@ -38,7 +38,7 @@ export function useTokens() { ? FUSE : ETHER : new Token( - chainId, + +(chainId ?? 1), currency.address, currency.decimals, currency.symbol, diff --git a/src/pages/gd/Swap/index.tsx b/src/pages/gd/Swap/index.tsx index bf2aab148..3a3611809 100644 --- a/src/pages/gd/Swap/index.tsx +++ b/src/pages/gd/Swap/index.tsx @@ -4,10 +4,10 @@ import { useFeatureFlagWithPayload } from 'posthog-react-native' import { i18n } from '@lingui/core' import { t } from '@lingui/macro' import { Link, Text, useBreakpointValue, VStack } from 'native-base' +import { useAppKitNetwork } from '@reown/appkit/react' import { useNetworkModalToggle } from 'state/application/hooks' import { UniSwap } from './SwapCelo/UniSwap' -import useActiveWeb3React from 'hooks/useActiveWeb3React' import SwapMento from './SwapCore/mentoReserve' import { PageLayout } from 'components/Layout/PageLayout' import { getEnv } from 'utils/env' @@ -61,7 +61,7 @@ Take note of indicators in the widget below for price slippage and liquidity.` } const Swap = memo((props: any) => { const swapWidget = props.match.params.widget - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const isProd = getEnv() === 'production' const [, payload] = useFeatureFlagWithPayload('swap-feature') const { celoEnabled, reserveEnabled } = (payload as any) || {} diff --git a/src/state/application/updater.ts b/src/state/application/updater.ts index 9b0481b40..b14a7adee 100644 --- a/src/state/application/updater.ts +++ b/src/state/application/updater.ts @@ -2,20 +2,21 @@ import { useCallback, useEffect, useState } from 'react' import { useDispatch } from 'react-redux' import { Web3Provider } from '@ethersproject/providers' import { useWeb3Context } from '@gooddollar/web3sdk-v2' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' import useDebounce from '../../hooks/useDebounce' import useIsWindowVisible from '../../hooks/useIsWindowVisible' import { updateBlockNumber } from './actions' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' export default function Updater(): null { - const { chainId, account } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const { web3Provider: library } = useWeb3Context() as { web3Provider: Web3Provider } const dispatch = useDispatch() const windowVisible = useIsWindowVisible() const [state, setState] = useState<{ chainId: number | undefined; blockNumber: number | null }>({ - chainId, + chainId: +(chainId ?? 1), blockNumber: null, }) @@ -34,9 +35,9 @@ export default function Updater(): null { // attach/detach listeners useEffect(() => { - if (!account || !library || !chainId || !windowVisible) return undefined + if (!address || !library || !chainId || !windowVisible) return undefined - setState({ chainId, blockNumber: null }) + setState({ chainId: +(chainId ?? 1), blockNumber: null }) library .getBlockNumber() .then(blockNumberCallback) @@ -46,7 +47,7 @@ export default function Updater(): null { return () => { library.removeListener('block', blockNumberCallback) } - }, [/*used */ dispatch, chainId, library, blockNumberCallback, windowVisible, account]) + }, [/*used */ dispatch, chainId, library, blockNumberCallback, windowVisible, address]) const debouncedState = useDebounce(state, 100) diff --git a/src/state/multicall/hooks.ts b/src/state/multicall/hooks.ts index 47b3c23c1..522cb8027 100644 --- a/src/state/multicall/hooks.ts +++ b/src/state/multicall/hooks.ts @@ -3,7 +3,8 @@ import { BigNumber } from '@ethersproject/bignumber' import { Contract } from '@ethersproject/contracts' import { useEffect, useMemo } from 'react' import { useDispatch, useSelector } from 'react-redux' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' + import { useBlockNumber } from '../application/hooks' import { AppDispatch, AppState } from '../index' import { @@ -50,7 +51,7 @@ export const NEVER_RELOAD: ListenerOptions = { // the lowest level call for subscribing to contract data function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): CallResult[] { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const callResults = useSelector( (state) => state.multicall.callResults ) @@ -74,7 +75,7 @@ function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): C const calls = callKeys.map((key) => parseCallKey(key)) dispatch( addMulticallListeners({ - chainId, + chainId: +(chainId ?? 1), calls, options, }) @@ -83,7 +84,7 @@ function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): C return () => { dispatch( removeMulticallListeners({ - chainId, + chainId: +(chainId ?? 1), calls, options, }) diff --git a/src/state/multicall/updater.tsx b/src/state/multicall/updater.tsx index 729fd5d14..c8203fca2 100644 --- a/src/state/multicall/updater.tsx +++ b/src/state/multicall/updater.tsx @@ -1,7 +1,7 @@ import { Contract } from '@ethersproject/contracts' import { useEffect, useMemo, useRef } from 'react' import { useDispatch, useSelector } from 'react-redux' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { useMulticallContract } from '../../hooks/useContract' import useDebounce from '../../hooks/useDebounce' import chunkArray from '../../utils/chunkArray' @@ -118,16 +118,16 @@ export default function Updater(): null { // wait for listeners to settle before triggering updates const debouncedListeners = useDebounce(state.callListeners, 100) const latestBlockNumber = useBlockNumber() - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const multicallContract = useMulticallContract() const cancellations = useRef<{ blockNumber: number; cancellations: (() => void)[] }>() const listeningKeys: { [callKey: string]: number } = useMemo(() => { - return activeListeningKeys(debouncedListeners, chainId) + return activeListeningKeys(debouncedListeners, +(chainId ?? 1)) }, [debouncedListeners, chainId]) const unserializedOutdatedCallKeys = useMemo(() => { - return outdatedListeningKeys(state.callResults, listeningKeys, chainId, latestBlockNumber) + return outdatedListeningKeys(state.callResults, listeningKeys, +(chainId ?? 1), latestBlockNumber) }, [chainId, state.callResults, listeningKeys, latestBlockNumber]) const serializedOutdatedCallKeys = useMemo( @@ -151,7 +151,7 @@ export default function Updater(): null { dispatch( fetchingMulticallResults({ calls, - chainId, + chainId: +(chainId ?? 1), fetchingBlockNumber: latestBlockNumber, }) ) @@ -177,7 +177,7 @@ export default function Updater(): null { dispatch( updateMulticallResults({ - chainId, + chainId: +(chainId ?? 1), results: outdatedCallKeys .slice(firstCallKeyIndex, lastCallKeyIndex) .reduce<{ [callKey: string]: string | null }>((memo, callKey, i) => { @@ -198,7 +198,7 @@ export default function Updater(): null { dispatch( errorFetchingMulticallResults({ calls: chunk, - chainId, + chainId: +(chainId ?? 1), fetchingBlockNumber: latestBlockNumber, }) ) diff --git a/src/state/swap/hooks.ts b/src/state/swap/hooks.ts index ae6da6aff..46241d14f 100644 --- a/src/state/swap/hooks.ts +++ b/src/state/swap/hooks.ts @@ -3,7 +3,7 @@ import { parseUnits } from '@ethersproject/units' import { Currency, CurrencyAmount, JSBI, Token, TokenAmount } from '@sushiswap/sdk' import { ParsedQs } from 'qs' import { useDispatch } from 'react-redux' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import useParsedQueryString from '../../hooks/useParsedQueryString' import { isAddress } from '../../utils' import { AppDispatch } from '../index' @@ -37,7 +37,7 @@ function parseCurrencyFromURLParameter(urlParam: any): string { if (urlParam.toUpperCase() === 'ETH') return 'ETH' if (valid === false) return 'ETH' } - return 'ETH' ?? '' + return 'ETH' } function parseTokenAmountURLParameter(urlParam: any): string { @@ -89,7 +89,7 @@ export function queryParametersToSwapState(parsedQs: ParsedQs): SwapState { export function useDefaultsFromURLSearch(): | { inputCurrencyId: string | undefined; outputCurrencyId: string | undefined } | undefined { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const dispatch = useDispatch() const parsedQs = useParsedQueryString() const [result, setResult] = useState< diff --git a/src/state/transactions/hooks.tsx b/src/state/transactions/hooks.tsx index f079950e1..d27e215bd 100644 --- a/src/state/transactions/hooks.tsx +++ b/src/state/transactions/hooks.tsx @@ -1,7 +1,7 @@ import { TransactionResponse } from '@ethersproject/providers' import { useCallback, useMemo } from 'react' import { useDispatch, useSelector } from 'react-redux' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { AppDispatch, AppState } from '../index' import { addTransaction } from './actions' import { TransactionDetails } from './reducer' @@ -15,7 +15,8 @@ export function useTransactionAdder(): ( claim?: { recipient: string } } ) => void { - const { chainId, account } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const dispatch = useDispatch() return useCallback( @@ -31,30 +32,31 @@ export function useTransactionAdder(): ( approval?: { tokenAddress: string; spender: string } } = {} ) => { - if (!account) return + if (!address) return if (!chainId) return const { hash } = response if (!hash) { throw Error('No transaction hash found.') } - dispatch(addTransaction({ hash, from: account, chainId, approval, summary, claim })) + dispatch(addTransaction({ hash, from: address, chainId: +(chainId ?? 1), approval, summary, claim })) }, - [dispatch, chainId, account] + [dispatch, chainId, address] ) } // returns all the transactions for the current chain export function useAllTransactions(): { [txHash: string]: TransactionDetails } { - const { chainId, account } = useActiveWeb3React() + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() const state = useSelector((state) => state.transactions) const filterTransactions = {} if (chainId && state[chainId]) { Object.values(state[chainId])?.forEach((tx) => { - if (tx.from === account) { - filterTransactions[tx.hash] = tx + if ((tx as TransactionDetails).from === address) { + filterTransactions[(tx as TransactionDetails).hash] = tx } }) } diff --git a/src/state/transactions/updater.tsx b/src/state/transactions/updater.tsx index 900f4f803..731b49cbc 100644 --- a/src/state/transactions/updater.tsx +++ b/src/state/transactions/updater.tsx @@ -2,7 +2,7 @@ import { useEffect } from 'react' import { useDispatch, useSelector } from 'react-redux' import { useWeb3Context } from '@gooddollar/web3sdk-v2' import { Web3Provider } from '@ethersproject/providers' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { useAddPopup, useBlockNumber } from '../application/hooks' import { AppDispatch, AppState } from '../index' import { checkedTransaction, finalizeTransaction } from './actions' @@ -29,7 +29,7 @@ export function shouldCheck( } export default function Updater(): null { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const { web3Provider: library } = useWeb3Context() as { web3Provider: Web3Provider } const lastBlockNumber = useBlockNumber() @@ -54,7 +54,7 @@ export default function Updater(): null { if (receipt) { dispatch( finalizeTransaction({ - chainId, + chainId: +(chainId ?? 1), hash, receipt: { blockHash: receipt.blockHash, @@ -81,7 +81,13 @@ export default function Updater(): null { hash ) } else { - dispatch(checkedTransaction({ chainId, hash, blockNumber: lastBlockNumber })) + dispatch( + checkedTransaction({ + chainId: +(chainId ?? 1), + hash, + blockNumber: lastBlockNumber, + }) + ) } }) .catch((error) => { diff --git a/src/state/user/hooks.tsx b/src/state/user/hooks.tsx index d106940ec..404a37299 100644 --- a/src/state/user/hooks.tsx +++ b/src/state/user/hooks.tsx @@ -2,7 +2,7 @@ import { ChainId, Pair, Token } from '@sushiswap/sdk' import { useCallback, useMemo } from 'react' import { shallowEqual, useDispatch, useSelector } from 'react-redux' -import { useActiveWeb3React } from 'hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { AppDispatch, AppState } from '..' import { addSerializedPair, @@ -148,7 +148,7 @@ export function useRemoveUserAddedToken(): (chainId: number, address: string) => } export function useUserAddedTokens(): Token[] { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() const serializedTokensMap = useSelector(({ user: { tokens } }) => tokens) return useMemo(() => { diff --git a/src/state/wallet/hooks.ts b/src/state/wallet/hooks.ts index f3bccc398..4fe0f3ed7 100644 --- a/src/state/wallet/hooks.ts +++ b/src/state/wallet/hooks.ts @@ -1,7 +1,7 @@ import { ChainId, Currency, CurrencyAmount, ETHER, JSBI, Token, TokenAmount } from '@sushiswap/sdk' import { useMemo } from 'react' import ERC20_INTERFACE from '../../constants/abis/erc20' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { useMulticallContract } from '../../hooks/useContract' import { isAddress } from '../../utils' import { useMultipleContractSingleData, useSingleContractMultipleData } from '../multicall/hooks' @@ -110,7 +110,7 @@ export function useCurrencyBalances( [currencies] ) const ethBalance = useETHBalances(containsETH ? [account] : []) - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() return useMemo( () => currencies?.map((currency) => { From 95c730b01ad48240f1237c1dab047ea07576319d Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Mon, 8 Sep 2025 13:07:56 +0100 Subject: [PATCH 05/36] feat(appkit): integrate Reown AppKit; remove Web3 Onboard; wallet priority (GoodWallet, Valora), Google socials, MiniPay labeling; migrate connect flows to AppKit --- package.json | 4 - src/components/AccountDetails/index.tsx | 63 ++-- src/components/BlockNativeOnboard/index.tsx | 38 +-- src/constants/wallets.ts | 11 + src/hooks/useActiveOnboard.ts | 265 --------------- src/hooks/useActiveWeb3React.ts | 17 - src/language/locales/af/catalog.po | 200 ++++++------ src/language/locales/ar/catalog.po | 200 ++++++------ src/language/locales/ca/catalog.po | 200 ++++++------ src/language/locales/cs/catalog.po | 200 ++++++------ src/language/locales/da/catalog.po | 200 ++++++------ src/language/locales/de/catalog.po | 200 ++++++------ src/language/locales/el/catalog.po | 200 ++++++------ src/language/locales/en/catalog.po | 200 ++++++------ src/language/locales/es-419/catalog.po | 200 ++++++------ src/language/locales/es/catalog.po | 200 ++++++------ src/language/locales/fi/catalog.po | 200 ++++++------ src/language/locales/fr/catalog.po | 200 ++++++------ src/language/locales/he/catalog.po | 200 ++++++------ src/language/locales/hi/catalog.po | 200 ++++++------ src/language/locales/hu/catalog.po | 200 ++++++------ src/language/locales/it/catalog.po | 200 ++++++------ src/language/locales/ja/catalog.po | 200 ++++++------ src/language/locales/ko/catalog.po | 200 ++++++------ src/language/locales/nl/catalog.po | 200 ++++++------ src/language/locales/no/catalog.po | 200 ++++++------ src/language/locales/pl/catalog.po | 200 ++++++------ src/language/locales/pt-BR/catalog.po | 200 ++++++------ src/language/locales/pt/catalog.po | 200 ++++++------ src/language/locales/ro/catalog.po | 200 ++++++------ src/language/locales/ru/catalog.po | 200 ++++++------ src/language/locales/sr/catalog.po | 200 ++++++------ src/language/locales/sv/catalog.po | 200 ++++++------ src/language/locales/tr/catalog.po | 200 ++++++------ src/language/locales/uk/catalog.po | 200 ++++++------ src/language/locales/vi/catalog.po | 200 ++++++------ src/language/locales/zh-CN/catalog.po | 200 ++++++------ src/language/locales/zh-TW/catalog.po | 200 ++++++------ src/language/locales/zh/catalog.po | 200 ++++++------ src/pages/gd/Claim/Claim.tsx | 17 +- src/pages/gd/Swap/SwapCelo/UniSwap.tsx | 27 +- src/reown/reownprovider.tsx | 25 +- src/routes.tsx | 27 +- src/state/application/hooks.ts | 5 +- src/utils/minipay.ts | 8 + yarn.lock | 337 +++++++++++++++++++- 46 files changed, 3752 insertions(+), 3692 deletions(-) create mode 100644 src/constants/wallets.ts delete mode 100644 src/hooks/useActiveOnboard.ts delete mode 100644 src/hooks/useActiveWeb3React.ts create mode 100644 src/utils/minipay.ts diff --git a/package.json b/package.json index ad0294b34..f3ab45d35 100755 --- a/package.json +++ b/package.json @@ -200,8 +200,6 @@ "react-native-animatable@^1.4.0": "patch:react-native-animatable@npm%3A1.4.0#./.yarn/patches/react-native-animatable-npm-1.4.0-8061fbfc78.patch", "@sushiswap/sdk@5.0.0-canary.7": "patch:@sushiswap/sdk@npm%3A5.0.0-canary.7#./.yarn/patches/@sushiswap-sdk-npm-5.0.0-canary.7-f38ca71c99.patch", "@uniswap/widgets@^2.59.0": "patch:@uniswap/widgets@npm%3A2.59.0#./.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch", - "@web3-onboard/core@^2.23.0": "patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch", - "@web3-onboard/core@2.23.0": "patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch", "posthog-react-native": "4.1.0" }, "dependencies": { @@ -223,8 +221,6 @@ "@uniswap/sdk-core": "^4.0.9", "@uniswap/widgets": "^2.59.0", "@usedapp/core": "^1.2.6", - "@web3-onboard/core": "^2.23.0", - "@web3-onboard/react": "^2.10.0", "amplitude-js": "^8.21.2", "dotenv": "^16.3.1", "ethers": "^5.7.2", diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index ab25d2afd..7b03b6c37 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -7,9 +7,10 @@ import { useAppKit, useAppKitNetwork } from '@reown/appkit/react' import { useAppKitAccount } from '@reown/appkit/react' import { useRedirectNotice } from '@gooddollar/good-design' import { useWalletInfo } from '@reown/appkit/react' +import { isMiniPay } from 'utils/minipay' import { ReactComponent as Close } from '../../assets/images/x.svg' -import { WalletLabels } from '../../hooks/useActiveOnboard' +import { WalletLabels } from '../../constants/wallets' import { AppDispatch } from '../../state' import { clearAllTransactions } from '../../state/transactions/actions' import { ExternalLink } from 'theme' @@ -22,7 +23,7 @@ import Transaction from './Transaction' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { getEnv } from 'utils/env' -import { useConnectWallet } from '@web3-onboard/react' +import { useDisconnect } from 'wagmi' const UpperSection = styled.div` position: relative; @@ -218,39 +219,30 @@ export default function AccountDetails({ const { chainId } = useAppKitNetwork() const { open } = useAppKit() + const { disconnect } = useDisconnect() - const click = async () => { - await open({ view: 'Account' }) - } - - const [{ wallet }, connect, disconnect] = useConnectWallet() - // const { disconnect } = useDisconnect() - // useAppKitWallet({ - // namespace: 'eip155', - // onSuccess: (address) => console.log('Connected to EVM:', address), - // }) + // Connection management handled by AppKit modal and wagmi disconnect const sendData = useSendAnalyticsData() const { goToExternal } = useRedirectNotice() const { walletInfo } = useWalletInfo() function formatConnectorName() { - return `${i18n._(t`Connected with`)} ${wallet?.label}` + const name = isMiniPay() ? 'MiniPay' : walletInfo?.name ?? '' + return `${i18n._(t`Connected with`)} ${name}` } const changeWallet = useCallback(async () => { toggleWalletModal() - await connect() - }, [toggleWalletModal, connect]) - - const disconnectWallet = useCallback(async () => { - if (wallet) { - toggleWalletModal() - sendData({ event: 'account', action: 'address_disconnect_success', network: network }) - await disconnect({ label: wallet.label }) - await connect() - } - }, [toggleWalletModal, connect, disconnect, wallet]) + await open({ view: 'Connect' }) + }, [toggleWalletModal, open]) + + const disconnectWallet = useCallback(() => { + toggleWalletModal() + sendData({ event: 'account', action: 'address_disconnect_success', network: network }) + disconnect() + void open({ view: 'Connect' }) + }, [toggleWalletModal, disconnect, open, network, sendData]) const clearAllTransactionsCallback = useCallback(() => { if (chainId) dispatch(clearAllTransactions({ chainId: +(chainId ?? 1) })) @@ -267,7 +259,7 @@ export default function AccountDetails({ - + {i18n._(t`Account`)} @@ -275,16 +267,17 @@ export default function AccountDetails({ {formatConnectorName()}
- {walletInfo?.name && WalletLabels.includes(walletInfo.name) && ( - - {i18n._(t`Disconnect`)} - - )} + {(walletInfo?.name || isMiniPay()) && + WalletLabels.includes(isMiniPay() ? 'MiniPay' : walletInfo?.name ?? '') && ( + + {i18n._(t`Disconnect`)} + + )} { } export const OnboardConnectButton: FC = () => { - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const [{ wallet, connecting }, connect, disconnect] = useConnectWallet() + const { address } = useAppKitAccount() + const { open } = useAppKit() const sendData = useSendAnalyticsData() const { i18n } = useLingui() const buttonText = i18n._(t`Connect to a wallet`) @@ -39,7 +37,7 @@ export const OnboardConnectButton: FC = () => { try { clearDeeplink() - await connect() + await open({ view: 'Connect' }) } catch { connectionStartedRef.current = false } @@ -52,12 +50,12 @@ export const OnboardConnectButton: FC = () => { return } - if (!connecting && wallet) { + if (address) { connectionStartedRef.current = false } - }, [connecting, wallet]) + }, [address]) - if (wallet) { + if (address) { return null } @@ -68,23 +66,11 @@ export const OnboardConnectButton: FC = () => { supportedChains={[SupportedChains.CELO, SupportedChains.MAINNET, SupportedChains.FUSE]} handleConnect={onWalletConnect} variant={'outlined'} - isDisabled={connecting} - isLoading={connecting} + isDisabled={false} + isLoading={false} /> ) } -// wrapper so we can pass the selected chain -export const OnboardProviderWrapper = ({ children }) => { - const { connectedEnv } = useGetEnvChainId() - return ( - - {children} - - ) -} +// Note: OnboardProviderWrapper is no longer needed as we're using AppKit +// The AppKitProvider is already set up in src/index.tsx diff --git a/src/constants/wallets.ts b/src/constants/wallets.ts new file mode 100644 index 000000000..3e560cd18 --- /dev/null +++ b/src/constants/wallets.ts @@ -0,0 +1,11 @@ +export const WalletLabels: Readonly = [ + 'WalletConnect', + 'ZenGo', + 'Coinbase Wallet', + 'Google (Web3Auth)', + 'GoodDollar Wallet', + 'Valora', + 'MiniPay', +] + +export const WalletConnectV2Labels: Readonly = ['Valora', 'GoodDollar Wallet', 'WalletConnect'] diff --git a/src/hooks/useActiveOnboard.ts b/src/hooks/useActiveOnboard.ts deleted file mode 100644 index b2d4c80e7..000000000 --- a/src/hooks/useActiveOnboard.ts +++ /dev/null @@ -1,265 +0,0 @@ -/* eslint-disable @typescript-eslint/no-unused-vars */ -import { useEffect, useMemo, useState, useRef } from 'react' -import { Web3Provider } from '@ethersproject/providers' -import { ChainId } from '@sushiswap/sdk' -import { EIP1193Provider } from '@web3-onboard/common' -import { WalletState } from '@web3-onboard/core' -import type { Account } from '@web3-onboard/core/dist/types' -import { useConnectWallet, useSetChain, useWallets } from '@web3-onboard/react' -import { Web3ReactContextInterface } from '@web3-react/core/dist/types' -import { isEmpty } from 'lodash' -import web3Utils from 'web3-utils' -import { UnsupportedChainId } from '@gooddollar/web3sdk' -import { AsyncStorage, SupportedChains } from '@gooddollar/web3sdk-v2' - -import usePromise from './usePromise' -import useSendAnalyticsData from './useSendAnalyticsData' -import { clearDeeplink } from 'components/BlockNativeOnboard' - -export type IsSupportedChainId = { - isSupported: boolean - chainId: string -} - -type OnboardConnectProps = { - activated: boolean - tried: boolean -} - -export const WalletLabels: Readonly = [ - 'WalletConnect', - 'ZenGo', - 'Coinbase Wallet', - 'Google (Web3Auth)', - 'GoodDollar Wallet', - 'Valora', -] - -export const WalletConnectV2Labels: Readonly = ['Valora', 'GoodDollar Wallet', 'WalletConnect'] - -export type ActiveOnboard = Omit< - Web3ReactContextInterface, - 'activate' | 'deactivate' | 'setError' | 'connector' -> - -export interface ISelectedProvider { - isMetaMask: boolean - on(...args: any[]): void - off(...args: any[]): void - removeListener(...args: any[]): void - removeAllListeners(...args: any[]): void - autoRefreshOnNetworkChange: boolean - request(args: { method: string; params?: unknown[] | object }): Promise -} - -export interface EIP1193ProviderExtended extends EIP1193Provider { - providers?: any - isMetamask?: boolean - selectedProvider?: Partial -} - -export interface ActiveOnboardInterface extends ActiveOnboard { - active: boolean - accounts?: Account[] - eipProvider?: EIP1193ProviderExtended - chainId: ChainId - chainIdHex?: string - account?: string - label?: string - error?: Error | undefined -} - -export function IsSupportedChain(chainIdHex: string): IsSupportedChainId { - const chainId = parseInt(chainIdHex) - const isSupported = Object.values(SupportedChains).includes(chainId) - const supportedChainHex = isSupported ? chainIdHex : '0xa4ec' - return { isSupported: isSupported, chainId: supportedChainHex } -} - -export function onboardContext(wstate: WalletState[]): ActiveOnboardInterface { - const [{ provider, label, accounts, chains }] = wstate - const chainIdHex = chains[0].id - const { isSupported, chainId } = IsSupportedChain(chainIdHex) - const error = !isSupported ? new UnsupportedChainId(chainIdHex) : undefined - - return { - active: true, - accounts: accounts, - chainId: parseInt(chainId), - account: web3Utils.toChecksumAddress(accounts[0]?.address), - label: label, - eipProvider: provider as EIP1193ProviderExtended, - error: error, - } -} - -export function useActiveOnboard(): ActiveOnboardInterface { - const connectedWallets = useWallets() - const context = useMemo>(() => { - if (connectedWallets.length > 0) { - return onboardContext(connectedWallets) - } else { - return { active: false, chainId: 42220 } - } - }, [connectedWallets]) - - return context -} - -/** Store connected wallet data in localStorage to be used for eagerly connecting on page-load - * @param wallets all currently connected wallets - * @param activeChainId active chain id is the currently connected chain if supported, else it defaults to mainnet - * @returns void - */ -export function StoreOnboardState(wallets: WalletState[], activeChainId: string | undefined): void { - if (isEmpty(wallets)) { - void AsyncStorage.safeRemove('currentConnectWallet') - return - } - - const walletLabel = wallets.map(({ label }) => label) - const connectedAccount = wallets.map(({ accounts }) => accounts[0]) - const connectedChain = activeChainId - const connected = [ - { - accounts: connectedAccount, - chains: connectedChain, - label: walletLabel, - }, - ] - - AsyncStorage.safeSet('currentConnectWallet', connected) -} - -// TODO: Seperate current connected wallet && ALL connected wallets -// TODO: Handle multiple accounts connected -/** - * Used for eagerly connecting on page-load when a previous wallet connection exists - * while also keeping track of any state updates (disconnect / switching chains) - * @returns tried & activated - */ -export function useOnboardConnect(): OnboardConnectProps { - const [tried, setTried] = useState(false) - const [activated, setActivated] = useState(false) - const [, connect] = useConnectWallet() - const [{ connectedChain }, setChain] = useSetChain() - const connectedWallets = useWallets() - const hasSendAnalyticsRef = useRef(false) - const sendData = useSendAnalyticsData() - - const [previouslyConnected, loading]: readonly [any, boolean, any, any] = usePromise( - async () => AsyncStorage.getItem('currentConnectWallet').then((value: any): any => value ?? {}), - [connectedWallets] - ) - - const updateStorage = (newChainId: string, currentWallet: WalletState[]) => { - const { chainId } = IsSupportedChain(newChainId) - void setChain({ chainId: chainId }) - StoreOnboardState(currentWallet, chainId) - setActivated(true) - } - - const connectOnboard = async () => { - let prevLabel = previouslyConnected?.[0]?.label?.[0] - // Coinbase reloads instead of sending accountsChanged event, so empty storage if no active address can be found - if (previouslyConnected?.[0]?.label?.[0] === 'Coinbase Wallet') { - const isStillActive = await AsyncStorage.getItem('-walletlink:https://www.walletlink.org:Addresses') - - if (!isStillActive) { - AsyncStorage.safeRemove('currentConnectWallet') - setTried(true) - return - } - } - - if (!prevLabel) { - if (window.ethereum?.isMiniPay) prevLabel = 'Mini Pay' - else if (window.ethereum?.isMetaMask) prevLabel = 'MetaMask' - else if (window.ethereum?.isOpera) prevLabel = 'Opera Wallet' - } - if (!prevLabel) return - - // disableModals:true for silently connecting - await connect({ autoSelect: { label: prevLabel, disableModals: true } }) - setActivated(true) - } - - // eager connect - useEffect(() => { - // ignore effect until usePromise loaded - if (loading) { - return - } - - // automatically connect to metamask or opera - if (!tried) { - void connectOnboard() - setTried(true) - } else if (activated || !previouslyConnected[0]) { - setTried(true) - } - }, [/* used */ connect, activated, tried, previouslyConnected, loading]) - - useEffect(() => { - const isConnected = connectedWallets.length > 0 - - // ignore effect until usePromise loaded - if (loading) { - return - } - - if (isConnected && connectedChain) { - if (!hasSendAnalyticsRef.current) { - //todo: find way to derive chosen wallet for wallet-connect - sendData({ - event: 'wallet_connect', - action: 'wallet_connect_success', - label: connectedWallets[0].label, - }) - hasSendAnalyticsRef.current = true - } - - updateStorage(connectedChain.id, connectedWallets) - } - - // disconnect - if (!isConnected && previouslyConnected.length && (tried || activated)) { - const prevConnected = previouslyConnected[0]?.label[0] - - StoreOnboardState(connectedWallets, '0x1') - setActivated(false) - - if (!activated) { - return - } - - const promises: Array> = [] - const cleanup = async (key: string) => AsyncStorage.safeRemove(key) - const cleanupList = async (regex: RegExp) => { - try { - const keys = await AsyncStorage.getAllKeys() - const filteredKeys = keys.filter((key) => regex.test(key)) - return Promise.all(filteredKeys.map((key) => cleanup(key))) - } catch (error) { - sendData({ event: 'wallet_connect_v2', action: 'failed_disconnect_cleanup' }) - return - } - } - - if (prevConnected === 'Coinbase Wallet') { - promises.push(cleanupList(/-walletlink/)) - } - - if (WalletConnectV2Labels.includes(prevConnected)) { - clearDeeplink() - promises.push(cleanupList(/wc@2/)) - } - - if (isEmpty(promises)) { - return - } - } - }, [connectedWallets, tried, loading, previouslyConnected]) - - return { tried, activated } -} diff --git a/src/hooks/useActiveWeb3React.ts b/src/hooks/useActiveWeb3React.ts deleted file mode 100644 index af2ab7008..000000000 --- a/src/hooks/useActiveWeb3React.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Web3Provider } from '@ethersproject/providers' -import { ChainId } from '@sushiswap/sdk' -import { useActiveOnboard, EIP1193ProviderExtended } from './useActiveOnboard' -import type { ActiveOnboard } from './useActiveOnboard' - -export function useActiveWeb3React(): ActiveOnboard & { - chainId: ChainId - label?: string - active?: boolean - eipProvider?: EIP1193ProviderExtended - account?: string -} { - const context = useActiveOnboard() - return context -} - -export default useActiveWeb3React diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 96b7d9a7d..9cbb1a1da 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Rekening" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "bedrag" @@ -2709,27 +2709,27 @@ msgstr "bedrag" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Goedkeur" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "GOEDKEUR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Goedgekeur" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Goedkeuring" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "GOEDKEURING" @@ -2737,7 +2737,7 @@ msgstr "GOEDKEURING" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Terug na portefeulje" msgid "Balance" msgstr "Balans" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Geblokkeerde adres" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Verander" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Klembare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Duidelik alle" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bevestig hierdie transaksie in jou beursie" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Koppel aan 'n beursie" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Verbind met" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Kopieer adres" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "DEPOSITO" @@ -2930,11 +2930,11 @@ msgstr "DEPOSITO" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "misluk om te laai" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Hoeveel wil jy deponeer?" @@ -3113,20 +3113,20 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "VERMENIGVULDIGER" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "netwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "op die" @@ -3159,11 +3159,11 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Open hoofkieslys" @@ -3171,7 +3171,7 @@ msgstr "Open hoofkieslys" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Hangende" @@ -3204,32 +3204,32 @@ msgstr "Prys Impak" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokol" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Onlangse transak" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "pryse" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belonings" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "PRYSE" @@ -3248,7 +3248,7 @@ msgstr "Routing deur middel van hierdie tekens het gelei tot die beste prys vir #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Soek naam of plak die adres" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Glip Verdraagsaamheid" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PAAL" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "Sukses!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Ruil" @@ -3324,15 +3324,15 @@ msgstr "Ruil" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Ruil uit" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Ruil na" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dit is die protokol wat die teken is ingelê om." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dit is die teken wat tans ingelê." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Hierdie maand" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Teken" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "TEKEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Totale belang" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "sperdatum transaksie" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Transaksie is gestuur na die blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Kyk op verkenner" @@ -3571,8 +3571,8 @@ msgstr "Wag vir Bevestiging" msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Jy is tans op" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Jy sal ontvang:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Jou swembad Deel" msgid "Your Pool Tokens" msgstr "jou swembad Tokens" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Jou sosiale bydrae van:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index e3c03b982..e0d43abdc 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "الحساب" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "مبلغ" @@ -2709,27 +2709,27 @@ msgstr "مبلغ" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "يوافق" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "تمت الموافقة" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "الموافقة" @@ -2737,7 +2737,7 @@ msgstr "الموافقة" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "العودة إلى المحفظة" msgid "Balance" msgstr "توازن" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "عنوان محظور" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "تغيير" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "قابلة للمطالبة" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "امسح الكل" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "إغلاق" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "قم بتأكيد هذه المعاملة في محفظتك" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "الاتصال بمحفظة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "متصل بـ" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "عنوان النسخ" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "الوديعة" @@ -2930,11 +2930,11 @@ msgstr "الوديعة" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "فشل التحميل" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "القابضة" @@ -3040,7 +3040,7 @@ msgstr "القابضة" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "كم تريد إيداعها؟" @@ -3113,20 +3113,20 @@ msgstr "الدقائق" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "مضاعف" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "شبكة الاتصال" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "على" @@ -3159,11 +3159,11 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "القائمة الرئيسية المفتوحة" @@ -3171,7 +3171,7 @@ msgstr "القائمة الرئيسية المفتوحة" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "معلق" @@ -3204,32 +3204,32 @@ msgstr "تأثير السعر" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "بروتوكول" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "المكافآت" @@ -3248,7 +3248,7 @@ msgstr "أدى التوجيه عبر هذه الرموز إلى أفضل سعر #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "ابحث عن الاسم أو الصق العنوان" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "تسامح الانزلاق" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "حصة" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "حصة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "عمادا" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "النجاح!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "مبادلة" @@ -3324,15 +3324,15 @@ msgstr "مبادلة" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "مبادلة من" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "مبادلة إلى" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "هذا هو البروتوكول الذي تم وضع الرمز المميز عليه." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "هذا هو الرمز المميز الذي يتم رهنه حاليًا." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "هذا الشهر" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "الرمز المميز" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "الرمز المميز" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "إجمالي الحصة" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "المهلة النهائية" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "عرض على المستكشف" @@ -3571,8 +3571,8 @@ msgstr "انتظار التأكيد" msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "سوف تتلقى:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "مشاركة حمام السباحة الخاص بك" msgid "Your Pool Tokens" msgstr "رموز حمام السباحة الخاصة بك" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "مساهمتك الاجتماعية من:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 2815e5c8f..3df3ed484 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprovat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprovació" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 3078d4f0b..8201b5a28 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 5df8c4da0..41aba4f5f 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index c28cb44a0..8b4a32a6c 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Konto" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "betragen" @@ -2709,27 +2709,27 @@ msgstr "betragen" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "GENEHMIGEN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Genehmigt" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "Genehmigen" @@ -2737,7 +2737,7 @@ msgstr "Genehmigen" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Zurück zum Portfolio." msgid "Balance" msgstr "Gleichgewicht" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Blockierte Adresse" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Ändern" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Fordern Sie G $ Belohnungen an" @@ -2788,7 +2788,7 @@ msgstr "Fordern Sie G $ Belohnungen an" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Geltend" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Alles löschen" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Nah dran" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bestätigen Sie diese Transaktion in Ihrer Brieftasche" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Herzliche Glückwünsche!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Verbinden Sie sich mit einer Brieftasche" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Verbunden mit" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Adresse kopieren." @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "ANZAHLUNG" @@ -2930,11 +2930,11 @@ msgstr "ANZAHLUNG" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "Laden fehlgeschlagen" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Gehe zum Portfolio." @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Wie viel Wert hat sich bisher angesammelt?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Wie viel möchten Sie einlädigen?" @@ -3113,20 +3113,20 @@ msgstr "Protokoll" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLIKATOR" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "Netzwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "auf der" @@ -3159,11 +3159,11 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Hauptmenü öffnen" @@ -3171,7 +3171,7 @@ msgstr "Hauptmenü öffnen" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "steht aus" @@ -3204,32 +3204,32 @@ msgstr "Preisauswirkung" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokoll" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "BELOHNUNG" @@ -3248,7 +3248,7 @@ msgstr "Das Weiterleiten durch diese Token ergab den besten Preis für Ihren Han #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Suchname oder Fügen Sie die Adresse ein" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Schlupftoleranz" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Anteil" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "EINATZ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Staket {0} bei {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Stak" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Ab 1.0 steigt Ihr Multiplikator nach einem Monat nach einem Monat zum Vertrauen auf 2.0, an diesem Punkt, an dem Sie jeden Tag mit mehr G $ belohnt werden können!" @@ -3316,7 +3316,7 @@ msgstr "Erfolg!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Tauschen" @@ -3324,15 +3324,15 @@ msgstr "Tauschen" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap von" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Tauschen" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dies ist das Protokoll, mit dem das Token stecken ist." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dies ist das Token, das derzeit steckbar ist." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Diesen Monat" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Zeichen" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "ZEICHEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Gesamtbetrag auf wertberührt." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Total Stake" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Transaktionsfrist" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Die Transaktion wurde an den Blockchain geschickt" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ansicht auf Explorer" @@ -3571,8 +3571,8 @@ msgstr "Auf Bestätigung warten" msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Rücknahme von Mitteln von {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Du surfe derzeit" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Du wirst erhalten:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Ihre Poolfreigabe" msgid "Your Pool Tokens" msgstr "Ihre Pool-Token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ihr sozialer Beitrag von:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index befacf5b5..b87efeddf 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 9e9c5866f..86af79731 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 7a1e368e6..4379eec10 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -18,22 +18,22 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -71,27 +71,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -165,7 +165,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -212,7 +212,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -229,24 +229,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -274,7 +274,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -284,11 +284,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -300,7 +300,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -329,7 +329,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -382,11 +382,11 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -398,11 +398,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -455,20 +455,20 @@ msgstr "" msgid "minutes" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -490,16 +490,16 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -507,7 +507,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -536,32 +536,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -580,7 +580,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -595,12 +595,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -618,23 +618,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -648,7 +648,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -656,15 +656,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -695,7 +695,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -706,7 +706,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -747,7 +747,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -760,11 +760,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -777,20 +777,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -798,11 +798,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -810,7 +810,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -818,7 +818,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -837,7 +837,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -849,12 +849,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -879,8 +879,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -919,16 +919,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -946,23 +946,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -974,11 +974,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -1006,6 +1006,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 73698fba4..1a6e0beb6 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Cuenta" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "Monto" @@ -2709,27 +2709,27 @@ msgstr "Monto" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprobar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "APROBAR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprobado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprobatorio" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "APROBATORIA" @@ -2737,7 +2737,7 @@ msgstr "APROBATORIA" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Volver a la cartera" msgid "Balance" msgstr "Equilibrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Dirección bloqueada" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Cambio" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Reclamar g $ recompensas" @@ -2788,7 +2788,7 @@ msgstr "Reclamar g $ recompensas" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Reclamable" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Limpiar todo" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Cerrar" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirme esta transacción en su billetera." #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "¡Felicidades!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conectarse a una billetera" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Conectado con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Dirección de copia" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "DEPOSITAR" @@ -2930,11 +2930,11 @@ msgstr "DEPOSITAR" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "falló al cargar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Ir a la cartera" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Tenencia" @@ -3040,7 +3040,7 @@ msgstr "Tenencia" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "¿Cuánto valor ha acumulado su estaca hasta ahora?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "¿Cuánto te gustaría depositar?" @@ -3113,20 +3113,20 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLICADORA" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "la red" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "sobre el" @@ -3159,11 +3159,11 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Abrir menú principal" @@ -3171,7 +3171,7 @@ msgstr "Abrir menú principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendiente" @@ -3204,32 +3204,32 @@ msgstr "Impacto en el precio" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocolo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Transacciones Recientes" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompensas" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompensas" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompensas" @@ -3248,7 +3248,7 @@ msgstr "El enrutamiento a través de estos tokens resultó en el mejor precio pa #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Buscar nombre o pegue la dirección" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerancia al deslizamiento" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Apostar" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "APOSTAR" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Apostado {0} en {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Apretón" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partir de 1.0, su multiplicador aumentará a 2.0 después de un mes de estadía de la confianza, ¿en qué punto puede ser recompensado con más G $ todos los días?" @@ -3316,7 +3316,7 @@ msgstr "¡Éxito!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Intercambio" @@ -3324,15 +3324,15 @@ msgstr "Intercambio" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Cambiar de" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Intercambiar" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Este es el protocolo de que el token está apostado." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Este es el token que actualmente está siendo estancado." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Este mes" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Simbólico" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "SIMBÓLICA" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Cantidad total en valor estancado." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Estaca total" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Fecha límite de transacción" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transacción fue enviada al bloque de bloques." #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver en el explorador" @@ -3571,8 +3571,8 @@ msgstr "Esperando confirmación" msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Retiró fondos de {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Actualmente estás navegando" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Usted recibirá:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Su participación en la piscina" msgid "Your Pool Tokens" msgstr "Tus tokens de piscina" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Su contribución social de:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 59089cb3c..65ad031c7 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 725d49040..46c3bc495 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Approuver" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Approuvé" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Approbation en cours" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Solde" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendication G $ Récompenses" @@ -2788,7 +2788,7 @@ msgstr "Revendication G $ Récompenses" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Toutes nos félicitations!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Connecter un portefeuille" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "échec du chargement" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Ouvrir le menu principal" @@ -3171,7 +3171,7 @@ msgstr "Ouvrir le menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "En attente" @@ -3204,32 +3204,32 @@ msgstr "Impact prix" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "Le routage à travers ces tokens vous a permis d'obtenir le meilleur pri #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolérance de slippage" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Staker" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Piqueté {0} à {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Swapper" @@ -3324,15 +3324,15 @@ msgstr "Swapper" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Durée limite de transaction" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Voir sur l'explorateur" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "A retiré des fonds de {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Votre part du pool" msgid "Your Pool Tokens" msgstr "Vos tokens du pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index d5ef37451..ac99184fa 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "חֶשְׁבּוֹן" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "כמות" @@ -2709,27 +2709,27 @@ msgstr "כמות" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "לאשׁר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "לְאַשֵׁר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "מאושר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "אישור" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "אישור" @@ -2737,7 +2737,7 @@ msgstr "אישור" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "חזרה לתיק הפורפוליו" msgid "Balance" msgstr "יתרה" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "כתובת חסומה" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "שינוי" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "תביעה G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "תביעה G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "נכלל" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "נקה את כל" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "סגור" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "אשר את העסקה הזו בארנק שלך" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "מזל טוב!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "התחבר לארנק" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "מחובר עם" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "העתקת העתקה" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "לְהַפְקִיד" @@ -2930,11 +2930,11 @@ msgstr "לְהַפְקִיד" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "נכשלה בטעינה" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "עבור אל תיק הפורפוליו" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "הַחזָקָה" @@ -3040,7 +3040,7 @@ msgstr "הַחזָקָה" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "כמה ערך המוקד שלך צבר עד כה." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "כמה אתה רוצה להפקיד?" @@ -3113,20 +3113,20 @@ msgstr "דקות" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "מַכפִּיל" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "רֶשֶׁת" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "על ה" @@ -3159,11 +3159,11 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "פתח תפריט ראשי" @@ -3171,7 +3171,7 @@ msgstr "פתח תפריט ראשי" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "ממתין לאישור" @@ -3204,32 +3204,32 @@ msgstr "השפעת מחיר" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "נוהל" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "תנועות אחרונות" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "תגמולים" @@ -3248,7 +3248,7 @@ msgstr "ניתוב באמצעות אסימונים אלה הביא את המחי #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "שם חיפוש או הדבק את הכתובת" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "תנודת מחיר מקובלת" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "יתד" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "לְהַמֵר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Staked {0} ב {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "סטרינג" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "החל מ 1.0, מכפיל שלך יגדל ל 2.0 לאחר חודש אחד של staking לאמון, באיזו נקודה אתה יכול להיות מתוגמל עם יותר G $ כל יום!" @@ -3316,7 +3316,7 @@ msgstr "הַצלָחָה!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "להחלִיף" @@ -3324,15 +3324,15 @@ msgstr "להחלִיף" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "החלפה מ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "להחליף ל" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "זהו הפרוטוקול כי האסימון הוא staked." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "זהו האסימון כי כרגע להיות staked." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "החודש" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "אסימון" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "אֲסִימוֹן" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "הסכום הכולל על ערך staked." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "סך כל ההימור" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "מועד אחרון לעסקה" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "הצג על אקספלורר" @@ -3571,8 +3571,8 @@ msgstr "מחכה לאישור" msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "משכו כספים מ {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "אתה תקבל:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "נתח הפול שלך" msgid "Your Pool Tokens" msgstr "אסימוני הבריכה שלך" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "התרומה החברתית שלך מ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 50611ee7c..b46a2f611 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -1420,13 +1420,13 @@ msgstr "" #~ msgid "APY (incl. Fees)" #~ msgstr "एपीवाई (शुल्क सहित)" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -1452,11 +1452,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -1464,27 +1464,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "मंजूर" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "मंजूर की" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "का अनुमोदन" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -1492,7 +1492,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -1506,7 +1506,7 @@ msgstr "" msgid "Balance" msgstr "संतुलन" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -1535,7 +1535,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -1543,7 +1543,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -1609,7 +1609,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -1626,24 +1626,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "एक वॉलेट से कनेक्ट करें" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -1675,7 +1675,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -1685,11 +1685,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -1705,7 +1705,7 @@ msgstr "" msgid "failed to load" msgstr "लोड करने में विफल" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -1734,7 +1734,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -1766,7 +1766,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -1787,7 +1787,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -1807,11 +1807,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -1868,20 +1868,20 @@ msgstr "मिनट" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -1903,8 +1903,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -1914,11 +1914,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "मुख्य मेनू खोलें" @@ -1926,7 +1926,7 @@ msgstr "मुख्य मेनू खोलें" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "विचाराधीन" @@ -1959,32 +1959,32 @@ msgstr "मूल्य प्रभाव" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2003,7 +2003,7 @@ msgstr "इन टोकन के माध्यम से रूटिंग #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2018,12 +2018,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "स्लिपेज टॉलरेंस" @@ -2041,23 +2041,23 @@ msgstr "" msgid "Stake" msgstr "दाँव" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2071,7 +2071,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "विनिमय" @@ -2079,15 +2079,15 @@ msgstr "विनिमय" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -2118,7 +2118,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2129,7 +2129,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2178,7 +2178,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2191,11 +2191,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2212,20 +2212,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "टोकन" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2233,11 +2233,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2245,7 +2245,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2253,7 +2253,7 @@ msgstr "" msgid "Transaction deadline" msgstr "लेन-देन की समय सीमा" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -2272,7 +2272,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -2284,12 +2284,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "एक्सप्लोरर पर देखें" @@ -2326,8 +2326,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2382,16 +2382,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -2409,23 +2409,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -2437,11 +2437,11 @@ msgstr "आपका पूल शेयर" msgid "Your Pool Tokens" msgstr "आपका पूल टोकन" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -2469,6 +2469,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 6c3e3d010..1e133db19 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index a73a6c37f..156b13dd0 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "Quantità" @@ -2709,27 +2709,27 @@ msgstr "Quantità" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Approva" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "APPROVARE" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Approvato" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Approvazione" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "Approvazione" @@ -2737,7 +2737,7 @@ msgstr "Approvazione" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Torna al portafoglio." msgid "Balance" msgstr "Saldo" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Indirizzo bloccato" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Modificare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Richiedi G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "Richiedi G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Richieso" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Cancella tutto" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Chiudere" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Conferma questa transazione nel tuo portafoglio" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Congratulazioni!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Collega wallet" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Connesso con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Copia indirizzo" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "DEPOSITARE" @@ -2930,11 +2930,11 @@ msgstr "DEPOSITARE" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "impossibile caricare" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Vai al portfolio." @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Presa" @@ -3040,7 +3040,7 @@ msgstr "Presa" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Quanto valore è accumulato il tuo gioco finora." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Quanto ti piacerebbe depositare?" @@ -3113,20 +3113,20 @@ msgstr "minuti" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MOLTIPLICATORE" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "Rete" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "sul" @@ -3159,11 +3159,11 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Apri menù principale" @@ -3171,7 +3171,7 @@ msgstr "Apri menù principale" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In attesa" @@ -3204,32 +3204,32 @@ msgstr "Impatto sul prezzo" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocollo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Le transazioni recenti" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "premi" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Premi" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Premi" @@ -3248,7 +3248,7 @@ msgstr "Il routing attraverso questi token è risultato nel prezzo migliore per #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Nome cerca o incolla l'indirizzo" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolleranza slippage" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Metti in staking" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PALO" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Puntato {0} a {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staffamento" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partire da 1,0, il tuo moltiplicatore aumenterà fino a 2.0 dopo un mese di sostentamento della fiducia, a quel punto puoi essere ricompensato con più G $ tutti i giorni!" @@ -3316,7 +3316,7 @@ msgstr "Successo!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Scambia" @@ -3324,15 +3324,15 @@ msgstr "Scambia" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap da." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Swap a." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Questo è il protocollo che il token è puntato." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Questo è il token che è attualmente puntato." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Questo mese" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "GETTONE" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Importo totale sul valore puntato." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Pali totale" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Scadenza transazione" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transazione è stata inviata al blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Visualizza sull'explorer" @@ -3571,8 +3571,8 @@ msgstr "Aspettando la conferma" msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Ritirato i fondi da {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Stai attualmente navigando" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Riceverai:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "La tua quota della pool" msgid "Your Pool Tokens" msgstr "I tuoi pool token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Il tuo contributo sociale da:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 654a216e0..0cc673f94 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "承認する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "承認済み" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "承認" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "残高" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "G $ Rewards." @@ -2788,7 +2788,7 @@ msgstr "G $ Rewards." msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "おめでとう!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "ウォレットに接続する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "読み込みに失敗しました" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "分" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "メインメニューを開く" @@ -3171,7 +3171,7 @@ msgstr "メインメニューを開く" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "保留中" @@ -3204,32 +3204,32 @@ msgstr "価格への影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "これらのトークンを介してルーティングすると、取引 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "スリッページ許容値" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "ステーク" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "{1}で杭打ち{0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "スワップ" @@ -3324,15 +3324,15 @@ msgstr "スワップ" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "トークン" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "取引期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "エクスプローラーで表示" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "{0}から資金を撤回しました" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "あなたのプールシェア" msgid "Your Pool Tokens" msgstr "あなたのプールトークン" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 86698910d..4ab17ff94 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "승인 됨" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "밸런스" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "주장 G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "주장 G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "축하합니다!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "지갑에 연결" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "불러 오지 못했습니다" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "분" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "메인 메뉴 열기" @@ -3171,7 +3171,7 @@ msgstr "메인 메뉴 열기" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "보류 중" @@ -3204,32 +3204,32 @@ msgstr "가격 영향" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "다음 토큰들을 통한 라우팅을 통해 최적의 가격이 산 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "미끄러짐 공차" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "말뚝" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "{1}에서 {0} {0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "교환" @@ -3324,15 +3324,15 @@ msgstr "교환" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "토큰" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "거래 제한시간" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "탐색기에서보기" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "{0}에서 철수 된 자금" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "여러분의 풀 지분" msgid "Your Pool Tokens" msgstr "여러분의 풀 토큰" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 36ecc149c..c8868ee7d 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index e41aab44c..09e2609db 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 4caafab2d..5fe12ce74 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 95d20d7a5..cdb742700 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprovado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprovando" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Equilíbrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conecte a uma carteira" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "Falha ao carregar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Abra o menu principal" @@ -3171,7 +3171,7 @@ msgstr "Abra o menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendente" @@ -3204,32 +3204,32 @@ msgstr "Impacto de preço" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "O roteamento por meio desses tokens resultou no melhor preço para sua n #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerância de deslizamento" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Estaca" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Trocar" @@ -3324,15 +3324,15 @@ msgstr "Trocar" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Símbolo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Prazo de transação" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver no explorer" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "Seus Tokens de Pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 270a39048..bfffc47b5 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 35b63a22e..3568c2b34 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Cont" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "Cantitate" @@ -2709,27 +2709,27 @@ msgstr "Cantitate" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aproba" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "APROBA" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprobat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprobând" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "Aprobând." @@ -2737,7 +2737,7 @@ msgstr "Aprobând." msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Înapoi la portofoliu." msgid "Balance" msgstr "Echilibru" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Adresa blocată" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Schimbare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendicați G $ Recompense" @@ -2788,7 +2788,7 @@ msgstr "Revendicați G $ Recompense" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Invocate" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Curata tot" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Închide" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirmați această tranzacție în portofel" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Felicitări!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conectați-vă la un portofel" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Conectat cu" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Adresa de copiere" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "DEPOZIT" @@ -2930,11 +2930,11 @@ msgstr "DEPOZIT" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "incarcarea a esuat" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Du-te la portofoliu." @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Deținere" @@ -3040,7 +3040,7 @@ msgstr "Deținere" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Cât de mult valoarea dvs. sa acumulat până acum." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Cât de mult doriți să depuneți?" @@ -3113,20 +3113,20 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Multiplicator." -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "reţea" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "pe" @@ -3159,11 +3159,11 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Deschideți meniul principal" @@ -3171,7 +3171,7 @@ msgstr "Deschideți meniul principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In asteptarea" @@ -3204,32 +3204,32 @@ msgstr "Impactul prețului" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "tranzactii recente" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompense" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompense" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompense" @@ -3248,7 +3248,7 @@ msgstr "Trecerea prin aceste jetoane a dus la cel mai bun preț pentru tranzacț #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Numele de căutare sau lipiți adresa" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Toleranță la alunecare" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Miza" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Miză" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "{0} la {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staking." -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Începând cu 1.0, multiplicatorul dvs. va crește la 2.0 după o lună de a se ține la încredere, moment în care puteți fi recompensați cu mai mult G $ în fiecare zi!" @@ -3316,7 +3316,7 @@ msgstr "Succes!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap de la" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Swap la." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Acesta este protocolul pe care jetonul este împachetat la." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Acesta este jetonul care este în prezent pus în prezent." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Luna aceasta" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Jeton" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "JETON" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Suma totală pe valoarea stabilită." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Miza totală" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Termen limită de tranzacție" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Tranzacția a fost trimisă la blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Vizualizare pe explorator" @@ -3571,8 +3571,8 @@ msgstr "Așteptați confirmarea" msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "A retras fonduri de la {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "În prezent, navigați" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Vei primi:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Cota dvs. din piscină" msgid "Your Pool Tokens" msgstr "Jetoanele de biliard" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Contribuția dvs. socială din:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 7b7aff05a..f549f40ca 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Счет" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "количество" @@ -2709,27 +2709,27 @@ msgstr "количество" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Утвердить" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "УТВЕРДИТЬ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Одобренный" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Утверждаю" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "Одобрение" @@ -2737,7 +2737,7 @@ msgstr "Одобрение" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Вернуться к портфолио" msgid "Balance" msgstr "Остаток средств" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Заблокированный адрес" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Изменять" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Претензия G $ Награды" @@ -2788,7 +2788,7 @@ msgstr "Претензия G $ Награды" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Заявление" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Очистить все" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Закрывать" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Подтвердите эту транзакцию в вашем кошельке" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Поздравляю!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Подключиться к кошельку" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Связаны с" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Копировать адрес" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "Депозит" @@ -2930,11 +2930,11 @@ msgstr "Депозит" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "ошибка загрузки" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Перейти к портфолио" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Держа" @@ -3040,7 +3040,7 @@ msgstr "Держа" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "Сколько хороших токенов вы накапливаете на эту позицию поставок." @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Сколько ценностей накоплено ваша доля." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Сколько вы хотели бы внести депозит?" @@ -3113,20 +3113,20 @@ msgstr "минут" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Мультипликатор" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "сеть" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "на" @@ -3159,11 +3159,11 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Открыть главное меню" @@ -3171,7 +3171,7 @@ msgstr "Открыть главное меню" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "В ожидании" @@ -3204,32 +3204,32 @@ msgstr "Влияние на цену" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Протокол" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Последние транзакции" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Вознаграждение" @@ -3248,7 +3248,7 @@ msgstr "Маршрутизация через эти токены привела #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Имя поиска или вставьте адрес" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Допуск по проскальзыванию" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Ставка" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Доли" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Поставил {0} в {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Упоминание" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "Упоминание может быть из двух типов: UBI для средств, поставленных на доверие GoodDollar для поколения новых G $ для универсального распределения доходов или управление (для включения) для ставки G $ S для хороших наград." -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Начиная с 1.0, ваш множитель увеличится до 2,0 после одного месяца по ухудшению доверия, в какой момент вы можете быть вознаграждены более G $ каждый день!" @@ -3316,7 +3316,7 @@ msgstr "Успех!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Менять" @@ -3324,15 +3324,15 @@ msgstr "Менять" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Откуда" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Охватить" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Это протокол о том, что токен поставлен." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Это токен, который в настоящее время поставлен." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Этот месяц" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Токен" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "Токен" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Общая сумма по стоимости поставлена." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Общая доля" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Крайний срок транзакции" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Посмотреть в проводнике" @@ -3571,8 +3571,8 @@ msgstr "Ожидание подтверждения" msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Вышли средства из {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Вы получите:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Ваша доля в пуле" msgid "Your Pool Tokens" msgstr "Жетоны вашего пула" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ваш социальный вклад от:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 2c4d48b06..9cf0ae880 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 952fc1ea1..96449c62b 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index af4c4cf3c..428b131f6 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 04c460c99..accb768e8 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2930,11 +2930,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -3113,20 +3113,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -3159,11 +3159,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3204,32 +3204,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3248,7 +3248,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3316,7 +3316,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3324,15 +3324,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3571,8 +3571,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 06756aaef..cdbdf0f33 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Tài khoản" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "số lượng" @@ -2709,27 +2709,27 @@ msgstr "số lượng" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "CHẤP THUẬN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Tán thành" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "Phê duyệt" @@ -2737,7 +2737,7 @@ msgstr "Phê duyệt" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Quay lại danh mục đầu tư" msgid "Balance" msgstr "Thăng bằng" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Địa chỉ bị chặn" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Thay đổi" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Yêu cầu G $ Phần thưởng" @@ -2788,7 +2788,7 @@ msgstr "Yêu cầu G $ Phần thưởng" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Yêu cầu" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "Gần" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Xác nhận giao dịch này trong ví của bạn" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "Xin chúc mừng!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Kết nối với ví" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Kết nối với" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "ĐẶT CỌC" @@ -2930,11 +2930,11 @@ msgstr "ĐẶT CỌC" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "không tải được" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "Đi đến danh mục đầu tư" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Giữ" @@ -3040,7 +3040,7 @@ msgstr "Giữ" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Bao nhiêu giá trị cổ phần của bạn đã tích lũy cho đến nay." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "Bạn muốn gửi bao nhiêu tiền?" @@ -3113,20 +3113,20 @@ msgstr "phút" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Số nhân" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "mạng" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "trên" @@ -3159,11 +3159,11 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "Mở menu chính" @@ -3171,7 +3171,7 @@ msgstr "Mở menu chính" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Đang chờ xử lý" @@ -3204,32 +3204,32 @@ msgstr "Tác động giá" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Giao thức" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Giao dịch gần đây" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Phần thưởng" @@ -3248,7 +3248,7 @@ msgstr "Định tuyến thông qua các mã thông báo này dẫn đến giá t #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Tên tìm kiếm hoặc dán địa chỉ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Khả năng chịu trượt" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "Cổ phần" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "CỔ PHẦN" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Staked {0} tại {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Bắt đầu" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Bắt đầu từ 1.0, hệ số nhân của bạn sẽ tăng lên 2.0 sau một tháng tập tin vào sự tin tưởng, tại thời điểm nào bạn có thể được thưởng nhiều G $ mỗi ngày!" @@ -3316,7 +3316,7 @@ msgstr "Sự thành công!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Hoán đổi" @@ -3324,15 +3324,15 @@ msgstr "Hoán đổi" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Trao đổi từ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Trao đổi đến." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Đây là giao thức mà mã thông báo được đặt cược." @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Đây là mã thông báo hiện đang được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "Tháng này" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Mã thông báo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "MÃ THÔNG BÁO" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Tổng số tiền trên giá trị được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "Tổng số cổ phần" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Thời hạn giao dịch" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Giao dịch đã được gửi đến Blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Xem trên explorer" @@ -3571,8 +3571,8 @@ msgstr "Chờ đợi sự xác nhận" msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Đã rút tiền từ {0}" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "Bạn cần ký giao dịch trong ví của bạn" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "Chia sẻ nhóm của bạn" msgid "Your Pool Tokens" msgstr "Mã thông báo hồ bơi của bạn" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Đóng góp xã hội của bạn từ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index cb6cf8175..523ec47e0 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "帐户" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "数量" @@ -2709,27 +2709,27 @@ msgstr "数量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "已批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "批准中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投资组合" msgid "Balance" msgstr "余额" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封锁的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "改变" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索赔g $奖励" @@ -2788,7 +2788,7 @@ msgstr "索赔g $奖励" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "清除所有" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "关闭" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在钱包中确认此事务" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "祝贺!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "连接钱包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "与" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "复制地址" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "订金" @@ -2930,11 +2930,11 @@ msgstr "订金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "加载失败" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "去投资组合" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3040,7 +3040,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前为止,您的股权累计有多大价值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "你想存入多少钱?" @@ -3113,20 +3113,20 @@ msgstr "分钟" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘数" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "网络" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "在这一点" @@ -3159,11 +3159,11 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "打开主菜单" @@ -3171,7 +3171,7 @@ msgstr "打开主菜单" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "处理中" @@ -3204,32 +3204,32 @@ msgstr "价格影响" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "协议" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "奖励" @@ -3248,7 +3248,7 @@ msgstr "路由经过这些代币将给您的交易带来最好的价格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名称或粘贴地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑点" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "质押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "赌注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "从1.0开始,您的乘数将增加到2.0,在一个月的绑定到信任后,您可以每天更多G $奖励!" @@ -3316,7 +3316,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "兑换" @@ -3324,15 +3324,15 @@ msgstr "兑换" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "换从" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "交换到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "这是令牌赌注的协议。" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "这是目前正在赌注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "这个月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代币" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "价值总额托出来。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "总股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在浏览器查看" @@ -3571,8 +3571,8 @@ msgstr "等待确认中" msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "退出{0}的资金" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "您目前正在浏览" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "您将收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "您在流动性池的占比" msgid "Your Pool Tokens" msgstr "您池子里的代币" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社会贡献:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index e23f3e96f..ce34ff530 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "帳戶" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "數量" @@ -2709,27 +2709,27 @@ msgstr "數量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "已批準" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "批準中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投資組合" msgid "Balance" msgstr "餘額" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封鎖的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "改變" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索賠g $獎勵" @@ -2788,7 +2788,7 @@ msgstr "索賠g $獎勵" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "清除所有" @@ -2854,7 +2854,7 @@ msgstr "" msgid "Close" msgstr "關閉" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2871,24 +2871,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在錢包中確認此事務" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "祝賀!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "連接錢包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "與" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "複製地址" @@ -2920,7 +2920,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "訂金" @@ -2930,11 +2930,11 @@ msgstr "訂金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "" msgid "failed to load" msgstr "加載失敗" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2979,7 +2979,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "去投資組合" @@ -3011,7 +3011,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3040,7 +3040,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3052,11 +3052,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前為止,您的股權累計有多大價值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "你想存入多少錢?" @@ -3113,20 +3113,20 @@ msgstr "分鐘" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘數" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "網絡" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "在這一點" @@ -3159,11 +3159,11 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "打開主菜單" @@ -3171,7 +3171,7 @@ msgstr "打開主菜單" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "處理中" @@ -3204,32 +3204,32 @@ msgstr "價格影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "協議" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "獎勵" @@ -3248,7 +3248,7 @@ msgstr "路由經過這些代幣將給您的交易帶來最好的價格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3263,12 +3263,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名稱或粘貼地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑點" @@ -3286,23 +3286,23 @@ msgstr "" msgid "Stake" msgstr "質押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "賭注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "從1.0開始,您的乘數將增加到2.0,在一個月的綁定到信任後,您可以每天更多G $獎勵!" @@ -3316,7 +3316,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "代幣兌換" @@ -3324,15 +3324,15 @@ msgstr "代幣兌換" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "換從" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "交換到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3363,7 +3363,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3374,7 +3374,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3423,7 +3423,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "這是令牌賭注的協議。" @@ -3436,11 +3436,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "這是目前正在賭注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3457,20 +3457,20 @@ msgstr "這個月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代幣" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "價值總額托出來。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3478,11 +3478,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Total stake" msgstr "總股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3498,7 +3498,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3517,7 +3517,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3529,12 +3529,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在瀏覽器查看" @@ -3571,8 +3571,8 @@ msgstr "等待確認中" msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3627,16 +3627,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "退出{0}的資金" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "您目前正在瀏覽" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3654,23 +3654,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "您將收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3682,11 +3682,11 @@ msgstr "您在流動性池的佔比" msgid "Your Pool Tokens" msgstr "您池子裏的代幣" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社會貢獻:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3714,6 +3714,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 45136d213..79477f48a 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2136,13 +2136,13 @@ msgstr "" #~ msgid "New" #~ msgstr "New" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2168,11 +2168,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:314 msgid "amount" msgstr "" @@ -2180,27 +2180,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:308 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "APPROVING" msgstr "" @@ -2208,7 +2208,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Awesome!" msgstr "" @@ -2222,7 +2222,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2251,7 +2251,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2259,7 +2259,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2274,7 +2274,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2325,7 +2325,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:334 +#: src/pages/gd/Claim/OldClaim.tsx:338 msgid "Collect G$" msgstr "" @@ -2342,24 +2342,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:229 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:307 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2391,7 +2391,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:374 msgid "DEPOSIT" msgstr "" @@ -2401,11 +2401,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2421,7 +2421,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2450,7 +2450,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 msgid "Go to Portfolio" msgstr "" @@ -2482,7 +2482,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:345 +#: src/pages/gd/Claim/OldClaim.tsx:349 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -2503,7 +2503,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -2511,7 +2511,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -2523,11 +2523,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:236 msgid "How much would you like to deposit?" msgstr "" @@ -2584,20 +2584,20 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:143 -#: src/components/NetworkModal/index.tsx:192 +#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:195 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -2619,8 +2619,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:142 -#: src/components/NetworkModal/index.tsx:191 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "on the" msgstr "" @@ -2630,11 +2630,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:337 +#: src/components/AppBar.tsx:338 msgid "Open main menu" msgstr "" @@ -2642,7 +2642,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -2675,32 +2675,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:70 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2719,7 +2719,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2734,12 +2734,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:417 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -2757,23 +2757,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:364 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2787,7 +2787,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -2795,15 +2795,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -2834,7 +2834,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2845,7 +2845,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2894,7 +2894,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2907,11 +2907,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2928,20 +2928,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:66 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2949,11 +2949,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2961,7 +2961,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2969,7 +2969,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -2988,7 +2988,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3000,12 +3000,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:72 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:311 +#: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3042,8 +3042,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:122 -#: src/components/NetworkModal/index.tsx:171 +#: src/components/NetworkModal/index.tsx:125 +#: src/components/NetworkModal/index.tsx:174 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3098,16 +3098,16 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:138 -#: src/components/NetworkModal/index.tsx:187 +#: src/components/NetworkModal/index.tsx:141 +#: src/components/NetworkModal/index.tsx:190 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:383 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3125,23 +3125,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:424 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3153,11 +3153,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3185,6 +3185,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/pages/gd/Claim/Claim.tsx b/src/pages/gd/Claim/Claim.tsx index 3f5ec9025..f9aac0ed6 100644 --- a/src/pages/gd/Claim/Claim.tsx +++ b/src/pages/gd/Claim/Claim.tsx @@ -2,8 +2,7 @@ import { useCallback } from 'react' import { useHistory } from 'react-router-dom' import { ClaimProvider, ClaimWizard } from '@gooddollar/good-design' import { noop } from 'lodash' -import { useEthers } from '@usedapp/core' -import { useConnectWallet } from '@web3-onboard/react' +import { useAppKit, useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { Spinner, VStack } from 'native-base' import { useFeatureFlagWithPayload } from 'posthog-react-native' @@ -23,8 +22,9 @@ const goodIdExplorerUrls = { } const ClaimPage = () => { - const { account, chainId } = useEthers() - const [, connect] = useConnectWallet() + const { address: account } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const { open } = useAppKit() const history = useHistory() const networkEnv = getNetworkEnv() const [, claimPayload] = useFeatureFlagWithPayload('claim-feature') @@ -50,14 +50,13 @@ const ClaimPage = () => { const handleConnect = useCallback(async () => { if (claimEnabled) { - const state = await connect() - - return !!state.length + await open({ view: 'Connect' }) + return true } else { showModal() } return false - }, [connect, claimEnabled]) + }, [open, claimEnabled]) const onUpgrade = () => history.push('/goodid') @@ -90,7 +89,7 @@ const ClaimPage = () => { > { const { address } = useAppKitAccount() const { chainId } = useAppKitNetwork() const network = SupportedChains[+(chainId ?? 1)] - const [, connect] = useConnectWallet() + const { open } = useAppKit() const globalDispatch = useDispatch() const sendData = useSendAnalytics() const { connectedEnv } = useGetEnvChainId(42220) @@ -82,20 +75,10 @@ export const UniSwap = (): JSX.Element => { const connectOnboard = useCallback(async () => { if (!address) { - // todo: make connect onboard a generic function/merge with: useOnboardConnect - const osName = getDevice().os.name - // temp solution for where it tries and open a deeplink for desktop app - if (['Linux', 'Windows', 'macOS'].includes(osName)) { - AsyncStorage.safeRemove('WALLETCONNECT_DEEPLINK_CHOICE') - } - - const connected = await connect() - if (!connected) { - return false - } + await open({ view: 'Connect' }) } return true - }, [connect]) + }, [address, open]) const handleError = useCallback(async (e) => { sendData({ event: 'swap', action: 'swap_failed', error: e.message }) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 2a8d77d72..a19156027 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -4,6 +4,7 @@ import { WagmiProvider } from 'wagmi' import { celo, fuse } from '@reown/appkit/networks' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' +import { walletConnect, injected, coinbaseWallet } from 'wagmi/connectors' // 0. Setup queryClient const queryClient = new QueryClient() @@ -25,11 +26,31 @@ const metadata = { // 3. Set the networks const networks = [celo, fuse] -// 4. Create Wagmi Adapter +// 4. Create custom connectors +const connectors = [ + walletConnect({ + projectId, + showQrModal: false, // AppKit handles the modal + metadata: { + name: 'GoodProtocolUI', + description: 'Good Protocol UI', + url: '', + icons: [''], + }, + }), + injected(), + coinbaseWallet({ + appName: 'GoodProtocolUI', + appLogoUrl: '', + }), +] + +// 5. Create Wagmi Adapter with connectors const wagmiAdapter = new WagmiAdapter({ networks, projectId, ssr: true, + connectors, }) createAppKit({ @@ -39,7 +60,9 @@ createAppKit({ metadata, features: { analytics: true, // Optional - defaults to your Cloud configuration + socials: ['google'], }, + // Note: AppKit modal wallet ordering is managed internally; socials and analytics are configured above }) export function AppKitProvider({ children }) { diff --git a/src/routes.tsx b/src/routes.tsx index 6a47c8219..4fb2ebabf 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -4,7 +4,7 @@ import { usePostHog } from 'posthog-react-native' import { Spinner } from 'native-base' import { RedirectHashRoutes } from 'pages/routes/redirects' -import useActiveWeb3React from 'hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { CustomLightSpinner } from 'theme' import Circle from 'assets/images/blue-loader.svg' @@ -18,6 +18,22 @@ const GoodId = lazy(() => import('./pages/gd/GoodId')) const BuyGd = lazy(() => import('./pages/gd/BuyGD')) const NewsFeedPage = lazy(() => import('./pages/gd/News')) +// const RoutesWrapper = () => { +// const posthog = usePostHog() +// const [posthogInitialized, setPosthogInitialized] = useState(false) + +// useEffect(() => { +// if (posthog) { +// posthog.onFeatureFlags(() => { +// setPosthogInitialized(true) +// return +// }) +// } +// }, [posthog]) + +// return posthogInitialized ? : +// } + const RoutesWrapper = () => { const posthog = usePostHog() const [posthogInitialized, setPosthogInitialized] = useState(false) @@ -29,13 +45,20 @@ const RoutesWrapper = () => { return }) } + + // Fallback: if PostHog doesn't initialize within 3 seconds, proceed anyway + const timeout = setTimeout(() => { + setPosthogInitialized(true) + }, 3000) + + return () => clearTimeout(timeout) }, [posthog]) return posthogInitialized ? : } function Routes(): JSX.Element { - const { chainId } = useActiveWeb3React() + const { chainId } = useAppKitNetwork() return ( }> diff --git a/src/state/application/hooks.ts b/src/state/application/hooks.ts index a19dbf5dd..7bef5243f 100644 --- a/src/state/application/hooks.ts +++ b/src/state/application/hooks.ts @@ -1,15 +1,14 @@ import { useCallback, useEffect, useMemo } from 'react' import { useDispatch, useSelector } from 'react-redux' import { AsyncStorage } from '@gooddollar/web3sdk-v2' -import { useActiveWeb3React } from '../../hooks/useActiveWeb3React' +import { useAppKitNetwork } from '@reown/appkit/react' import { AppDispatch, AppState } from '../index' import { addPopup, removePopup, setChain, setOpenModal, setTheme as setThemeAction } from './actions' import { ApplicationModal, PopupContent, ApplicationState } from './types' import { useColorMode } from 'native-base' export function useBlockNumber(): number | undefined { - const { chainId } = useActiveWeb3React() - + const { chainId } = useAppKitNetwork() return useSelector((state: AppState) => state.application.blockNumber[chainId ?? -1]) } diff --git a/src/utils/minipay.ts b/src/utils/minipay.ts new file mode 100644 index 000000000..e630d7aa5 --- /dev/null +++ b/src/utils/minipay.ts @@ -0,0 +1,8 @@ +export function isMiniPay(): boolean { + try { + // @ts-ignore + return Boolean(window?.ethereum?.isMiniPay) + } catch { + return false + } +} diff --git a/yarn.lock b/yarn.lock index e9e5d8ddf..84bcd69ca 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3647,6 +3647,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/aix-ppc64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/aix-ppc64@npm:0.19.12" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/android-arm64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/android-arm64@npm:0.17.19" @@ -3661,6 +3668,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/android-arm64@npm:0.19.12" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/android-arm@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/android-arm@npm:0.17.19" @@ -3675,6 +3689,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/android-arm@npm:0.19.12" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + "@esbuild/android-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/android-x64@npm:0.17.19" @@ -3689,6 +3710,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/android-x64@npm:0.19.12" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + "@esbuild/darwin-arm64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/darwin-arm64@npm:0.17.19" @@ -3703,6 +3731,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-arm64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/darwin-arm64@npm:0.19.12" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/darwin-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/darwin-x64@npm:0.17.19" @@ -3717,6 +3752,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/darwin-x64@npm:0.19.12" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + "@esbuild/freebsd-arm64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/freebsd-arm64@npm:0.17.19" @@ -3731,6 +3773,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-arm64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/freebsd-arm64@npm:0.19.12" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/freebsd-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/freebsd-x64@npm:0.17.19" @@ -3745,6 +3794,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/freebsd-x64@npm:0.19.12" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/linux-arm64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-arm64@npm:0.17.19" @@ -3759,6 +3815,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-arm64@npm:0.19.12" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/linux-arm@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-arm@npm:0.17.19" @@ -3773,6 +3836,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-arm@npm:0.19.12" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + "@esbuild/linux-ia32@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-ia32@npm:0.17.19" @@ -3787,6 +3857,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ia32@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-ia32@npm:0.19.12" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/linux-loong64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-loong64@npm:0.17.19" @@ -3801,6 +3878,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-loong64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-loong64@npm:0.19.12" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + "@esbuild/linux-mips64el@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-mips64el@npm:0.17.19" @@ -3815,6 +3899,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-mips64el@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-mips64el@npm:0.19.12" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + "@esbuild/linux-ppc64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-ppc64@npm:0.17.19" @@ -3829,6 +3920,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ppc64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-ppc64@npm:0.19.12" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/linux-riscv64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-riscv64@npm:0.17.19" @@ -3843,6 +3941,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-riscv64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-riscv64@npm:0.19.12" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + "@esbuild/linux-s390x@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-s390x@npm:0.17.19" @@ -3857,6 +3962,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-s390x@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-s390x@npm:0.19.12" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + "@esbuild/linux-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/linux-x64@npm:0.17.19" @@ -3871,6 +3983,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/linux-x64@npm:0.19.12" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + "@esbuild/netbsd-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/netbsd-x64@npm:0.17.19" @@ -3885,6 +4004,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/netbsd-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/netbsd-x64@npm:0.19.12" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/openbsd-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/openbsd-x64@npm:0.17.19" @@ -3899,6 +4025,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/openbsd-x64@npm:0.19.12" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/sunos-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/sunos-x64@npm:0.17.19" @@ -3913,6 +4046,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/sunos-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/sunos-x64@npm:0.19.12" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + "@esbuild/win32-arm64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/win32-arm64@npm:0.17.19" @@ -3927,6 +4067,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-arm64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/win32-arm64@npm:0.19.12" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/win32-ia32@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/win32-ia32@npm:0.17.19" @@ -3941,6 +4088,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-ia32@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/win32-ia32@npm:0.19.12" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/win32-x64@npm:0.17.19": version: 0.17.19 resolution: "@esbuild/win32-x64@npm:0.17.19" @@ -3955,6 +4109,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-x64@npm:0.19.12": + version: 0.19.12 + resolution: "@esbuild/win32-x64@npm:0.19.12" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@eslint-community/eslint-utils@npm:^4.2.0": version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" @@ -4534,6 +4695,18 @@ __metadata: languageName: node linkType: hard +"@formatjs/ecma402-abstract@npm:2.3.4": + version: 2.3.4 + resolution: "@formatjs/ecma402-abstract@npm:2.3.4" + dependencies: + "@formatjs/fast-memoize": 2.2.7 + "@formatjs/intl-localematcher": 0.6.1 + decimal.js: ^10.4.3 + tslib: ^2.8.0 + checksum: ee41278ab4d587e0c9e82d8ed9d46440297a547fac10eb4bee922c65c99a1cf00db154da02d7c80682bb010222e6fbe5a1cad72d64a94052544e76c9119a7513 + languageName: node + linkType: hard + "@formatjs/fast-memoize@npm:1.2.1": version: 1.2.1 resolution: "@formatjs/fast-memoize@npm:1.2.1" @@ -4561,6 +4734,15 @@ __metadata: languageName: node linkType: hard +"@formatjs/fast-memoize@npm:2.2.7": + version: 2.2.7 + resolution: "@formatjs/fast-memoize@npm:2.2.7" + dependencies: + tslib: ^2.8.0 + checksum: e7e6efc677d63a13d99a854305db471b69f64cbfebdcb6dbe507dab9aa7eaae482ca5de86f343c856ca0a2c8f251672bd1f37c572ce14af602c0287378097d43 + languageName: node + linkType: hard + "@formatjs/icu-messageformat-parser@npm:2.1.0": version: 2.1.0 resolution: "@formatjs/icu-messageformat-parser@npm:2.1.0" @@ -4572,6 +4754,17 @@ __metadata: languageName: node linkType: hard +"@formatjs/icu-messageformat-parser@npm:2.11.2": + version: 2.11.2 + resolution: "@formatjs/icu-messageformat-parser@npm:2.11.2" + dependencies: + "@formatjs/ecma402-abstract": 2.3.4 + "@formatjs/icu-skeleton-parser": 1.8.14 + tslib: ^2.8.0 + checksum: ab33f052a03ee487809a91836d87536a48cd52845c55b55298cc0957ae98de306cc99ec235d0efb05e5a8b89e38f70cf7a2a83b4b2af80a6ba93944bb8943f7b + languageName: node + linkType: hard + "@formatjs/icu-messageformat-parser@npm:2.6.0": version: 2.6.0 resolution: "@formatjs/icu-messageformat-parser@npm:2.6.0" @@ -4603,6 +4796,16 @@ __metadata: languageName: node linkType: hard +"@formatjs/icu-skeleton-parser@npm:1.8.14": + version: 1.8.14 + resolution: "@formatjs/icu-skeleton-parser@npm:1.8.14" + dependencies: + "@formatjs/ecma402-abstract": 2.3.4 + tslib: ^2.8.0 + checksum: dcce6bdb7952201804bae17270d6a99a6baa780c4657d4bb02d15de08d1c3fd8c904e13bb1ef6ccd6fde68d5a56f22a7ba99be4e92903d4fe050f61bebaa0e8e + languageName: node + linkType: hard + "@formatjs/intl-enumerator@npm:1.8.4": version: 1.8.4 resolution: "@formatjs/intl-enumerator@npm:1.8.4" @@ -4661,6 +4864,15 @@ __metadata: languageName: node linkType: hard +"@formatjs/intl-localematcher@npm:0.6.1": + version: 0.6.1 + resolution: "@formatjs/intl-localematcher@npm:0.6.1" + dependencies: + tslib: ^2.8.0 + checksum: 1c7e67f079f18bfd25f42d7f32bcb829d79708dba58408807e2b81ce16da812f48d958e0ad51af37faa8080042bc927dcf5b2cef63954316882d4cc007f53077 + languageName: node + linkType: hard + "@formatjs/intl-pluralrules@npm:^5.2.14": version: 5.3.5 resolution: "@formatjs/intl-pluralrules@npm:5.3.5" @@ -4869,8 +5081,6 @@ __metadata: "@usedapp/core": ^1.2.6 "@vitalets/google-translate-api": ^7.0.0 "@vitejs/plugin-react": ^4.0.0 - "@web3-onboard/core": ^2.23.0 - "@web3-onboard/react": ^2.10.0 "@web3-react/core": ^6.1.9 ajv: ^6.12.3 amplitude-js: ^8.21.2 @@ -13698,9 +13908,9 @@ __metadata: languageName: node linkType: hard -"@web3-onboard/core@patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch::locator=%40gooddollar%2Fprotocol-ui%40workspace%3A.": - version: 2.23.0 - resolution: "@web3-onboard/core@patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch::version=2.23.0&hash=49941a&locator=%40gooddollar%2Fprotocol-ui%40workspace%3A." +"@web3-onboard/core@npm:^2.23.0": + version: 2.24.1 + resolution: "@web3-onboard/core@npm:2.24.1" dependencies: "@web3-onboard/common": ^2.4.1 bnc-sdk: ^4.6.7 @@ -13712,9 +13922,9 @@ __metadata: nanoid: ^4.0.0 rxjs: ^7.5.5 svelte: ^3.49.0 - svelte-i18n: ^3.3.13 + svelte-i18n: ^4.0.1 viem: 2.12.0 - checksum: 43967f9e15581c3c7f207d085929a20ede252423b82da0f192c40bb2072b7726c86cffe8328eeecc994de5c8f0892e505b1aae1e9747bfdc0a9cec685ae3dca4 + checksum: 84be65e9727789a561a768e9e017db74ce3e4089903780fb56c96b744ef6c06215faf38e0eac5c744bd57b1cb1fe18608e803ea4ad740f1ca330870f79fe71ee languageName: node linkType: hard @@ -19787,6 +19997,86 @@ __metadata: languageName: node linkType: hard +"esbuild@npm:^0.19.2": + version: 0.19.12 + resolution: "esbuild@npm:0.19.12" + dependencies: + "@esbuild/aix-ppc64": 0.19.12 + "@esbuild/android-arm": 0.19.12 + "@esbuild/android-arm64": 0.19.12 + "@esbuild/android-x64": 0.19.12 + "@esbuild/darwin-arm64": 0.19.12 + "@esbuild/darwin-x64": 0.19.12 + "@esbuild/freebsd-arm64": 0.19.12 + "@esbuild/freebsd-x64": 0.19.12 + "@esbuild/linux-arm": 0.19.12 + "@esbuild/linux-arm64": 0.19.12 + "@esbuild/linux-ia32": 0.19.12 + "@esbuild/linux-loong64": 0.19.12 + "@esbuild/linux-mips64el": 0.19.12 + "@esbuild/linux-ppc64": 0.19.12 + "@esbuild/linux-riscv64": 0.19.12 + "@esbuild/linux-s390x": 0.19.12 + "@esbuild/linux-x64": 0.19.12 + "@esbuild/netbsd-x64": 0.19.12 + "@esbuild/openbsd-x64": 0.19.12 + "@esbuild/sunos-x64": 0.19.12 + "@esbuild/win32-arm64": 0.19.12 + "@esbuild/win32-ia32": 0.19.12 + "@esbuild/win32-x64": 0.19.12 + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 2936e29107b43e65a775b78b7bc66ddd7d76febd73840ac7e825fb22b65029422ff51038a08d19b05154f543584bd3afe7d1ef1c63900429475b17fbe61cb61f + languageName: node + linkType: hard + "escalade@npm:^3.1.1": version: 3.1.1 resolution: "escalade@npm:3.1.1" @@ -22883,6 +23173,18 @@ __metadata: languageName: node linkType: hard +"intl-messageformat@npm:^10.5.3": + version: 10.7.16 + resolution: "intl-messageformat@npm:10.7.16" + dependencies: + "@formatjs/ecma402-abstract": 2.3.4 + "@formatjs/fast-memoize": 2.2.7 + "@formatjs/icu-messageformat-parser": 2.11.2 + tslib: ^2.8.0 + checksum: c7edee2001ca7e87fb1e66ba2d6c53c8f01e628eb7991c21562f6ac3ebc7c3d027bb73aae501a9f20c0dce3ee67dede4e970b0bdeb59d414b23e92e98d2dc3d5 + languageName: node + linkType: hard + "intl-messageformat@npm:^9.13.0": version: 9.13.0 resolution: "intl-messageformat@npm:9.13.0" @@ -33290,6 +33592,25 @@ __metadata: languageName: node linkType: hard +"svelte-i18n@npm:^4.0.1": + version: 4.0.1 + resolution: "svelte-i18n@npm:4.0.1" + dependencies: + cli-color: ^2.0.3 + deepmerge: ^4.2.2 + esbuild: ^0.19.2 + estree-walker: ^2 + intl-messageformat: ^10.5.3 + sade: ^1.8.1 + tiny-glob: ^0.2.9 + peerDependencies: + svelte: ^3 || ^4 || ^5 + bin: + svelte-i18n: dist/cli.js + checksum: b3485620b6ab8b85c394832f6e1a9ed095413cbfd31c468a94afda2e5fd76b82b9fd018ac2dcab13e003b928bc7a2b249ef78eddc7910a75cb079c83caf0f948 + languageName: node + linkType: hard + "svelte@npm:^3.49.0": version: 3.59.2 resolution: "svelte@npm:3.59.2" @@ -34039,7 +34360,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:2, tslib@npm:^2.6.0, tslib@npm:^2.6.2": +"tslib@npm:2, tslib@npm:^2.6.0, tslib@npm:^2.6.2, tslib@npm:^2.8.0": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a From d31a1416f76f2c268a8506700c1f5a1c9ef81386 Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Mon, 22 Sep 2025 17:23:42 +0100 Subject: [PATCH 06/36] fix: yarn lingui and revert back to last commit --- .github/workflows/deploy_vercel.yml | 4 +- .github/workflows/preview_vercel.yml | 4 +- ...niswap-widgets-npm-2.59.0-6bf5828475.patch | 26 +- src/assets/images/xdc-logo.svg | 777 ++++++++++++++++++ src/assets/networks/xdc-network.svg | 13 + src/components/CurrencyLogo/index.tsx | 20 +- src/components/Faq/copies.tsx | 3 +- src/components/NetworkModal/index.tsx | 4 +- src/components/Savings/SavingsCard/index.tsx | 4 +- src/components/SideBar.tsx | 7 + src/components/SwapErrorBoundary.tsx | 46 ++ .../Web3SupportedNetworks/index.tsx | 10 +- src/connectors/index.ts | 11 +- src/constants/index.ts | 36 + src/constants/multicall/index.ts | 1 + src/constants/networks.ts | 57 +- src/hooks/useWeb3.tsx | 38 +- src/language/locales/af/catalog.po | 70 +- src/language/locales/ar/catalog.po | 70 +- src/language/locales/ca/catalog.po | 70 +- src/language/locales/cs/catalog.po | 70 +- src/language/locales/da/catalog.po | 70 +- src/language/locales/de/catalog.po | 70 +- src/language/locales/el/catalog.po | 70 +- src/language/locales/en/catalog.po | 70 +- src/language/locales/es-419/catalog.po | 70 +- src/language/locales/es/catalog.po | 70 +- src/language/locales/fi/catalog.po | 70 +- src/language/locales/fr/catalog.po | 70 +- src/language/locales/he/catalog.po | 70 +- src/language/locales/hi/catalog.po | 70 +- src/language/locales/hu/catalog.po | 70 +- src/language/locales/it/catalog.po | 70 +- src/language/locales/ja/catalog.po | 70 +- src/language/locales/ko/catalog.po | 70 +- src/language/locales/nl/catalog.po | 70 +- src/language/locales/no/catalog.po | 70 +- src/language/locales/pl/catalog.po | 70 +- src/language/locales/pt-BR/catalog.po | 70 +- src/language/locales/pt/catalog.po | 70 +- src/language/locales/ro/catalog.po | 70 +- src/language/locales/ru/catalog.po | 70 +- src/language/locales/sr/catalog.po | 70 +- src/language/locales/sv/catalog.po | 70 +- src/language/locales/tr/catalog.po | 70 +- src/language/locales/uk/catalog.po | 70 +- src/language/locales/vi/catalog.po | 70 +- src/language/locales/zh-CN/catalog.po | 70 +- src/language/locales/zh-TW/catalog.po | 70 +- src/language/locales/zh/catalog.po | 70 +- src/pages/gd/Claim/Claim.tsx | 1 + src/pages/gd/Claim/ClaimBalance.tsx | 32 +- src/pages/gd/Claim/index.tsx | 4 +- src/pages/gd/Stake/Savings/index.tsx | 4 +- src/pages/gd/Stake/index.tsx | 101 ++- src/utils/env.ts | 6 +- src/utils/index.ts | 224 +---- src/utils/swapErrors.ts | 47 ++ yarn.lock | 58 +- 59 files changed, 2422 insertions(+), 1426 deletions(-) create mode 100644 src/assets/images/xdc-logo.svg create mode 100644 src/assets/networks/xdc-network.svg create mode 100644 src/components/SwapErrorBoundary.tsx create mode 100644 src/utils/swapErrors.ts diff --git a/.github/workflows/deploy_vercel.yml b/.github/workflows/deploy_vercel.yml index ddbfa3257..09989b982 100644 --- a/.github/workflows/deploy_vercel.yml +++ b/.github/workflows/deploy_vercel.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - uses: actions/checkout@v3 with: persist-credentials: false @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: yarn - run: yarn install --immutable - run: yarn vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} diff --git a/.github/workflows/preview_vercel.yml b/.github/workflows/preview_vercel.yml index 19b0e92da..6efbd1492 100644 --- a/.github/workflows/preview_vercel.yml +++ b/.github/workflows/preview_vercel.yml @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - uses: actions/checkout@v3 with: persist-credentials: false @@ -53,7 +53,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: yarn - run: yarn install --immutable - id: check_branch diff --git a/.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch b/.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch index 476df1e21..315218cb1 100644 --- a/.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch +++ b/.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch @@ -22480,10 +22480,10 @@ index 4f3b34eb3c85a3337f61ee7b21b029da1b9a4123..00000000000000000000000000000000 -exports.validateTokens = validateTokens; diff --git a/dist/cjs/index-8fb8d6e3.cjs b/dist/cjs/index-8fb8d6e3.cjs new file mode 100644 -index 0000000000000000000000000000000000000000..3b3eb9ba41951f557a6268092a14dd1e0792cf22 +index 0000000000000000000000000000000000000000..3f072c568b37a0c5ec4e2e101edd32e37e47b451 --- /dev/null +++ b/dist/cjs/index-8fb8d6e3.cjs -@@ -0,0 +1,21596 @@ +@@ -0,0 +1,21605 @@ +'use strict'; + +var React = require('react'); @@ -32896,6 +32896,15 @@ index 0000000000000000000000000000000000000000..3b3eb9ba41951f557a6268092a14dd1e + return trade.priceImpact.subtract(realizedLpFeePercent); +} +function getPriceImpactWarning(priceImpact) { ++ if ( ++ !priceImpact || ++ priceImpact.toSignificant() === 'NaN' || ++ priceImpact.toSignificant() === 'Infinity' || ++ !priceImpact.greaterThan ++ ) { ++ return 'error'; ++ } ++ + if (priceImpact.greaterThan(ALLOWED_PRICE_IMPACT_HIGH)) return 'error'; + if (priceImpact.greaterThan(ALLOWED_PRICE_IMPACT_MEDIUM)) return 'warning'; + return; @@ -66483,10 +66492,10 @@ index e7da428525171db63ee79a0b73e18aeb3bcad3b4..00000000000000000000000000000000 -export { DialogAnimationType as D, EMPTY_TOKEN_LIST as E, Field as F, Logo as L, QuoteState as Q, RouterPreference as R, SwapRouterNativeAssets as S, TransactionType as T, UnknownError as U, WidgetError as W, SwapWidget as a, getNativeLogoURI as b, LogoUpdater as c, useLogos as d, SwapWidgetSkeleton as e, SupportedChainId as f, getAssetsRepoURI as g, DEFAULT_LOCALE as h, isExactInput as i, SUPPORTED_LOCALES as j, UserRejectedRequestError as k, UNISWAP_TOKEN_LIST as l, validateTokens as m, nativeOnChain as n, darkTheme as o, defaultTheme as p, lightTheme as q, invertTradeType as r, toTradeType as t, useLogo as u, validateTokenList as v }; diff --git a/dist/index-aa746f89.js b/dist/index-aa746f89.js new file mode 100644 -index 0000000000000000000000000000000000000000..47dc33529f5803217bbd34b27ddb350ddda7580b +index 0000000000000000000000000000000000000000..e40c2fe4d87bcaf5f683449f1419458768abd233 --- /dev/null +++ b/dist/index-aa746f89.js -@@ -0,0 +1,21522 @@ +@@ -0,0 +1,21531 @@ +import React, { Children, useMemo, createContext, useContext, useRef, memo, forwardRef, useState, useCallback, useEffect, Component, useImperativeHandle, StrictMode } from 'react'; +import { Buffer } from 'buffer'; +import _slicedToArray from '@babel/runtime/helpers/slicedToArray'; @@ -76848,6 +76857,15 @@ index 0000000000000000000000000000000000000000..47dc33529f5803217bbd34b27ddb350d + return trade.priceImpact.subtract(realizedLpFeePercent); +} +function getPriceImpactWarning(priceImpact) { ++ if ( ++ !priceImpact || ++ priceImpact.toSignificant() === 'NaN' || ++ priceImpact.toSignificant() === 'Infinity' || ++ !priceImpact.greaterThan ++ ) { ++ return 'error'; ++ } ++ + if (priceImpact.greaterThan(ALLOWED_PRICE_IMPACT_HIGH)) return 'error'; + if (priceImpact.greaterThan(ALLOWED_PRICE_IMPACT_MEDIUM)) return 'warning'; + return; diff --git a/src/assets/images/xdc-logo.svg b/src/assets/images/xdc-logo.svg new file mode 100644 index 000000000..7d28d07e6 --- /dev/null +++ b/src/assets/images/xdc-logo.svg @@ -0,0 +1,777 @@ + + + + + + + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + eJzsfXt708by8Ps3z8N3ML8WGi4xuq8ElMZXChiSknBpKaSOrSQmjh18gXI+/Tszu7NaOU4sUVrH +QdE51BmvRjs799lZ5fq1re31Sne4F6+7Zat09cr167VR3J4MR/dKBC497ven48kIQWsvbpZsGIaj +Ko/DXTXyVTwa94aDe/Sd/LaJ96/V25NJ+2Zp7SaCdnqTfgzAv7udUq8zHJTjk/FN/Ty4H0bD9/Zd +273rWI5dsp17tlXaeoZjqsPpoNsbHFSHf8MQC//nehH+H7/9tfciHs8MKbu+FeB/hefZMDAsu7br +0wcB2PG2+rAzPY4Hk63RsBOPx7Vhfzga3yvVvrQHpWftA/imXfo97veHn0vVfrtzBPdUHvu7zV4/ +BvqO25NSRNRWHtvObnXa63efT4/3YqDcswKCu7uE9OUYsAFi/Exwsfv4GEDb8WQCM4Zn0qK9eFQ1 +pwJQutbevogPesQCWKV3NxXmnfj4pA9LJukNrbJfskWE/yafeSjMmIat205QWnfsoOSFQckXPMtk +JeJPvfjzvdLz4SBW5FZGk+3e/2D6bmDh/xX4xbQfj14OehM1+8rjSBL7bNiN+zCj5PZmv0000mUn +/6oRO+3RQTwBDg770wnJUWjxd7CgrfaXGNliq4dsnsSDneErmua6L9xyEAR+ybci+CCAbloBEZQi +ASIU0pM8ryQi9VybIDw7RIao+CEC+bAFrNkc9Q56g3s8S7H7aNTrJvwSTimU/xAl5dD4f8T/VxMG +8ieTeMAUgKzUnhmct8rPtvGpjUG3NjxGLoxJ4oHnAxCH/vBAfZv8Qt8BiumJIoMAu8C0rVFvgIiv +Xnkuvwt3t/pT+PLRaDg9eTzYH169sib1eqs9OQS5jgfdMaiohMlfS/IWgLZ6nxhYbvdObi5Auf3l +eG/Y742PNUIToj9nQbUzaneAjtLm3oe4M4G7FSD5tD3tTeIsqLZw+UeDzYGkeDQdH5Z2hsO+nqQa +oL7SxIPkynsuzEP04HkPgC8vLvJau9/vHYzaJ4e9zjz8c77XDzrj3iyPBdUbxQkm+hX+u4//zSTQ +HeLavBmnv9KPOH3HxXgOMmq/N+jCLaQ4ycoPj0/Qc5a2D9snCMaRTWNklvnX431wiIZsELQx+BT3 +hycGAzSkDQ983R6dZFKtfnvQHpXoC42bLNNWG6zdjLUiWILW3wXLaVrG9fXzbaZXqg7MEY9G7W4P +jPI9xD+IaSISUrLhEXOA4BCcUrV79crbq1ceXL1iyR/bcizX8iwfrsASVmhFcFWsqlWz6lbTtmzb +dmzX9mzfDmxhh3BFdsWu2jW46nYTYyLHcdyrVxzP8Z3AEU7kVOCqOnWn4TRdy3Vc1/Vc3w1c4YZu +xa26NbfuNtymZ3mO53qe53uBJ7zQq3hVr+bVvYbX9MEt+Y7v+p6PP4Ef+pFf9Wt+3W8GVmAHTuAG +HjhZEYRBFFSCalAL6kEjaAZNYQlbOMIVnoBgQggRikhURPXqFVETddEQTdEMLSDFCWFCoRf6YRDC +oDAMo7ASVsMa/b8eNuBq4oJEduREbuTB5UfwuEhEMDQCXxpV4KpGNbjqcDXgakbNCixhBZYJF6IC +JFc8uny4YKoVmEwFHoS3VuRPFS7679Ur9Llaqamrrq4GXU28qhZdNl2w0FevPDR5KrmKfEXOesRZ +5m1F87ZuNYi/53D46hXgcN1uaC4Dn4HLyOOQuFx1apLLxGd7htOhG81wG3ia4ncEi8L8tnxb8zvw +BfEbF0zyvJHiuhf4zPmrVxTvZ7k/h//AfcV/4P6Z/L96RcmA4r8hAadlAH+kBMyXAeI/8JRlwJSA +RAZMKVCcz8XTquJpQ2ssc5R5KjnKPJUcVZqr9XaGp6c4KuZx1HNy8xQ5avJUXpKzPnIWeCq1Wuo1 +a3ZD8ZZ1m7kr+TvDYaXhisfAU+Qy8jkgPrOmSz7Pcpp5zdxmfiutR56T5jPXE74T5w39ZxtAVuAU +T7/Rz3+K0TYuR1+uIZlSNlE6DZsDGJWEzvUqUj4TWyOlUsokSmTiSaQsRi5gBDlskAy6JH3Sf9TR +d4DUeeQzKiBpKGc2SJcPUhWBNNVBjmyQIB8kpwLy0gBJcUA2IMsC9lbDBsiAA3wXwOdqVCct9kBn +Q9DNOlhfu+pW/aoA5lerdeZps9lsNOvNWrMKBjoCURJgivym13TBONpNq9FsNBr1Rq1RBTMegbgJ +EGi/AWrScBtOw25Y9Wa9Ua/Xa/UqmHuwayCWoh7U/bpXd+sOGGKr1qw1avVarVYFAxHVQhD2AFTJ +q7k1B9yxVW1WG9V6tQbzqsDsQphjADP1YL5OFWxv1QLv0SBvUiN/EwFNAijzgT4XqLQrFkhvA2S5 +BpRXgP4QViEA+fdAFxzQCwu0pAH6gh6yQusVgj4FsHoe6JkD+maB7jVAB2ugjRVQmRBWGRYeVtuD +NXdg5S2w0g3gQg14UQGOhPA1JMug/aAhYAfswPKbwLU68K4KHIyAjwK46QNPXeCs7VteExauDnam +CjyPgPMC+O+DFXIhorA9y22CfWqAlQJ7B/aqAvISgtQEID0eyJADls0Cr9UAS1cD+aqAlIUgbQHI +nOe4/5inczlaD4Gn35SjVdBTxdFvwk/kJvA0Cz8zcVPyEuK4b8FN4CVzEniamZfg4WzHspvfE09n +uQo8zaalmbkKevptdFRzFXiaQ0MlV4mnXun6bnVEaQ2W0nyswloIw/LVrgGqjiH2kb8m32sAfovW +nJMzzpwyJl3OvKTLwaRLGElXw6LLpsuhC+2Upy9fXYG6xBlXSIIJwqd/C2dGBPR//pfxesrhSGEm +gcYLhBrFGi4Q5zqJNwq4FHESc+WMpKDj/6W4o8BLkUehR7FHwZeiXwHRh+vqFYzJMD7HqA/UwCNV +QGWQF2WSNUterKYgrPhTIRQNCsscCsYCCsEqFHSBfqoQ26OgGsPpCoXPDUqQQG5ArXx01sBc6bCr +SBaoYBOe6cAscDY4N0FxHGgl0QD0EGVIIdKKlIO2YJQH61HFIbBSuGJNxU9XcY/5EVG+houCw/Cn +iZEPXA5dIP1gdtDwBGSAQB/BOEHUqi4VR6qrShf+t8bXpQgm/ynGJAC1VQjqGqGouoqVmvmxz7qM +lUoKQ2aamU4y3TkhfE0G8UlhCAP5q1cowUynmGaSOS/NTBJNTjVtVS6CZBPsfqATzogCf1k6osRT +pZ6YBsj0k4tIgpJQTEOT4gKmonBBmIIK3KSk1NJJKaal8vJU4YEuXil0lcpZSncpHaZ0mdJpBnSH +Rzgcwmop5yndJzpQ6ULBicIspCMNaMaecqcOUWMpp9ogOmvkWqtUWYrIwaKLFTRNnxwtuloIZmHV +HFo9i5wuh8boemvkfqu02pTvUtlG0CXJ9skhe+SUXXLMkPCTe5YXKZujjJrT0FedL14psr0VCnkw +6Akp8MHQJ6DwBwMgj4Igl+y2Q8UtqmyQCZTlL5m64MWFsgqFSBGFSSGFSoLCpYBCJl8V3ohAlYjL +pJyy0kiZWZm6Q0pPBl6l9DVK76uRQh/Jn1BdQl2Bunx1efqCxQSMclkd47JTl5VcqXAGV8yh1ZAe +LIC1CmE6FVrHGvgwiFDJj1nkPx3yZujPfOXPQiKiQj6tBg4L6AN31Kxb5NnQt7nk21D4pXcLtX9D +D4c/5OHIx2nPTMWi+Wk56m1VlYZs0tSAZDKkkpAsCDmki0JpYI30rkma5pGuCCr51FUhzwGBxuQR +CzwoLnUq7GBRxwFxBwWjWVn8P5he7rj5rGxoXj5kxs5J9Mzxs4ygZQwto2htUHVOYWYVZl5hZhY6 +t9AVgCS7UPkFsVLmGDLL4DwjUCGWq0Iri/INmXFgzoFZR3VW0OZUQrkWXtEVsrquhXM1XNbHfFUf +M6pjujZWVZWxeqoyxhUxR6kl10S5Lp5URLkaWie+yquZqoFbXAOnyyUD4unLN67AuIQKCNNXmLoi +w1Cdd+n7NcbEpM0YNe1e0dmyI/63nHz2nySEsjmMAoxzAimj8hwYNb7kimauirqqVP+rql0HzoLS +sYdjXOhZ/NQl1EUlXbLggFFugFD+wCGHpauHFHaonH9+vs8Zf4M0MyKd9EAbLdLDutZCkeifzO1B ++6qU3piZvczrZVYvc3rku03uS9qkSNkjtEZoi9ASVcgKwUxBk8ACkf2pgdZhvo42xyFrUyc7gzYG +bQtm5xhsVMF4CYgUMKzAgKJOYQSGD77v4u4ZBQs1ML5ohH1YEnT/6PYroOwBuXSbnHYNlBFzaw8C +NgtWsg6rGsFq+8AHB0S0AWakAhyMgMc+RhFnyeFDNsPKfCblwaT0kBQfZg2oWSZMihAUV129YsRV +HFXJYgQXDJNyRFKQSEoSSVFClSXAAlaN0gQXJ3R5wihQ6MKTUaLQRYqkTAG+kUsVSbEiKVdQGQoE +Fa14DRa4QgFACMsckIh7tNj4Y1lNmZZT0bwqQxWIwQWpnGSAVFjtlSm3TvJrz8izzctJXXbqsswL +MErHkVyN1FVPXbWZK/1DdhzMo9rfUqY1uc4wqIYxTS7DpANG3zD2bGiTy5m57NRlmZd0KlR646uR +upT74fXmza9TW1/VDJtfs9uZ5paXsZF91ja2sYkpHTe77WT7Gpw16GDT2Lj29YZlRbnlhnbGLm1M +Bsr5Vsjp4oZzk9yro2LQgBwcx6AyApXRp6PjThl1VjjiVNGmjDRllBnqCkqdqk2yfuKo+klA1ROs +nVSpctKYDVXIzvDW0+xmaNK+UFOZasPYDuXN0MhoYAD8KlO19UZooLNUM8K1VYYqs9PZbVCjkQGm +K0gSUs0MhiSckgUlCQ5tUclt7ZQkgGycLwtaGlg6Odvji7I+mfdx7mdmf1VyCKGR+yXZH+V+IO8q +91OZX5L1cbZXI9tXpbgupFyfSFIW0JO3UguBLUu3ZA2bZBETm1gl1x4pZx+QZfTIMrrERbaOTRVE +YEBRkzYSZEPaSbSU0k5SwiwXQE5YWk0dFlCZb+ZqGFfOH9pc+KY/S8HYoA2SuuHMTTAtWlVFUxGV +KoUqYXpqF4X3UeROCu+lcN4DURbkQ75Rhubyc90oOpvlZrWvcmpnxdhbAXflKoc2f38ltcNyxv5K +KlOEiCzjvpl2wXbuyznvAoznfj9zzbr6ORet0tmXl/8CjMlv/nmXzn04/m/KS8f//GPmAC4pv6ez +AFmVMzMByDWVQa+oDpeqWty66l1qzOQGtupkcsggeTJToEsaLMjjqFAZkhuIVKpaVe6gpspaDdn1 +RM7BUqUwWcZ0yVF4VDjzyYgK2q/kjihZ2qyQ2ZULX+cip9s85e7sVK6Y/mzN/ZyGmd9aaPpOjU22 +XGwVlssdwYgCcs43mmovUIbfGHpz2C1D7kjlHbJcSWVKIETu/cnsAwNraXqtMqQFjutr8xLQJYwr +nNkHSe+GVIywVO+HJDacEr4ZK85EzkRD/ygewmgIYqJT8RA/S3u2uhLJqvZwFRX9Rw== + + + SoxNf+crn+cpFXDY8wFGW/GzyT7wlMA4qT2Rs67MP//ZHsfXzE+NzLfHseAJah8kxz2ZZmxErt/g +MgobpkOuaIcsixzSJevWBt3cUJ8pRobc5gCO2VNBotobPlWUNF0z7wDz/m9dO2fZ+ADuGRwEFiWT +HV/bKEdWlYuOjN0ALpq5VDxBZ23W/atU909X+7nKj1ZV1/ap4GhW82cr+EbVnoovHhVgjPq8MkBq +ecKaupJEVW8FqIKpoJINXWBMZcUjfTlnXPb5l+Z22hqyRaylrvqsNTSi2qyxIFvOeupzfeZJs1cV +96T10xunLp7LWfefjsGzxas5f74Cozn7OZfSw9nr/NU68zLibmof4Kt+5nX2zwwHAKPpF61zL3vh +BeEPkO4svNzMFxgrwOjlvvzzLsB47vdzruD8S4cs3+TS4UIt1Ws/ry97fmd2MNOZrYoSVAZwjBJV +UqSqmJvllCfLAkW6RMFFiqraIm9QJx/3bDupXnwsWyQ920nXturbpgJG0pfP3dvAGyr6CtXFzX3c +Far91VQ3d51225qqp9vSfd2O2rVylXll0xuoLm+hOr1lt3ek9rMqqu9b9n7zVddXQ18qAsVCmt75 +Si77jMs5/9LbqN7cy818zfwAxkU/dr4LMPJn659faDCw2PZtrzkYG//sUmH7N7pOdSiWhe9Enl3i +HAg+WLYP8oofLDdyHPjgRoEl8MyuLUBncTAkXJCElRzsVYyisrDgF93i+A1xYhekVQa98Vwa4vhe +pE5IW2XI4GxXwAdBSS7c6UZlK3D8Eh7tdsPImNJXo5AzCKIQJo6z9XwrCvX9AaON+H7PLwVO2Ree ++fSvul0+GWwhLKK5clHk2L6g+32FriyEJKvswBr6kVxET5QDywuNeXwDZDQr/A6GWI7BYzziDZwH +Nrv4APk13BqUsfRbcmdZ8g9wyJXRNGiqNBr4KIUJvmRibBI0xGaXQf+9kh2UvQAkL1meb4WR54fc +Nda4HAkWvnLEOGDJ4U6UDEQHyBwQQDDnRk/wN0CVs5v4BXxq92eOcJ4GAruKI5zFEc7iCGdxhLM4 +wlkc4fxqjGYtsTjCWRzhLI5wrvRxv+II5+Xj6fd6hPP8A5qLD3j+g6TLmZd0OZh0mUc4iw3WufiK +DdZig7XYYM261VhssJ5ej2KDtdhgLTZYiw3WYoO12GD9yg3WomG2aJjN3TDLrC0OFBUHiooDRf8G +xuJAUXGgqDhQdDEOFBWv+ihe9VG86qN41Ufxqo/iVR/Fqz6KV31c4Fd9FK+/K15/95+8/q54K3Px +VubirczfEGPxVuavwbiwGcUq3spcvJW5eCvzMt/K/PYiHjS78EfzLsTxxQt5sHOJB12Xf8j34h+F +PqebOOff76S/Zy3/eLL8i7v3Smub+/vjeFLa/jhtj+Ix/yle7EI+4xtaX98vw+xt+m+IwcH13anU +EFtx4M0X+fsT+PwBoJ9LXulZ6e07q9S9ivA3L7hx+lh+UKhKLfx1Bn8aaMlfLf4wkL9tzkhjIDwf +1zWAFbdx7YW0XLDkkBn6yBYIVPyAJJdk5037m81pH/+5NZXN43VlzpRGWjbwPqSZwUzctDWLeErg +J2w7VHNy0Jq4Qcl3yi4EHnJ+DARD7LmWkA92yxg2zYXxza15GJNZW3K+DlDmBB5II6yOK5/ol8MI +ZqlALQPkOjDhQC0K3zoXaN4sV+nlqbVKP+f4rNvnPmfehObMe2CQaltygVwPzDsopXygB3LihhrY +MoFeWHYDW6Hi2+cCU7cPEnq1vFpKCEAa0GygnBpODg0JmgsPQTjKkR+UWACRFrgAeLKI1ELBJCzw +AQrUMkAwlSCMfEWJunUu0Lx5niTbpEHm/EKevBbu0FH657Dtg4gfBqmpg9wFEUQdsKIi9JVEM9AG +5fV5yUPwH74/F8Y3t+ZhPCXR6PSEgAABXFConuiiWjoa1jJhXjnylQbxrXNA5p1nyfM3sEozE5XL +RXid1BQYZsx0Dj3zyDYmb/G0Pc1W9lvMaCSB40bBvswlkJoxLJBnRxBw2KABvNxO2YGgl2EtExZA +QAPi0TLvnQcz750nnD6KoBF2JJMnJxtCuklSCavuU/hI/lcplIDYILJL/N9jEzhr4y09rDXv3nkW +FYISsNdoeiEUksgpWtCwlgkr20EUaVMn750HM+89JYLIdVgOWDwLwtFjpebIdQVqGSCyqEJpvrpz +Hsy8dTD7ROaEtnD/wO/JafmgNq6yy2oGCnTmROcRlMZ2mj8gwGEoUMBcJ1TMB2aGtq1hLQPGJr5l +3jwXmLrb1DOIzlX0B6EpWAakX8Wz6RA6kOIqVyWQ1g+MNGThiqWQ8riASMFaJgzIhsRdCY26dx7M +vHeeYunJWNKGqTkKmXYBC6UlU/Z9Jlo6NoGL9YZ/WRyBmRykYMbHCBoEKwy1iYfcWsNaBoz9SMu8 +eS4wdfdZZn7mScdnIpj7qHlzmjd3M3KhKAd4wfac3YLtOAmwZQLZbbXM2+cCU7cvVnIOY7S792S+ +SVrO6bHgCoOPosSeYnbCx2dOQ084xBrFLGnzgKnb57m4xLOhZ5AhjHQNZnzjKBvmy9hM+WQwPBbQ +5bplTGmleYqonsKwlgmDZQ59sHYt8+a5QPNumjTMuXFVJnCQ9Klc7OrXZoGh/K46mo4PNa61l4NB ++zjulgiM+V7Ju3nVKmEjRunN56tXpvjBzO/mZ3cyt1sHBcU1BQcMhgZFwCcjsC4iG5bDA9uTwFsz +8CDQwV4Kz1lwA88Ap7WZqmp8XcglHxCAr8IHh2VH+OQ+Ea5ArgeOSo7zQpBmAvpo/dOzDqUXqOlZ +u5JKRGr5ajDWaSTQDmGWcx8PGPZpqcCx2LAS8ivPsz21tDI2oplEZcfy7BICITBGlHKwC0kfAt1y +KCyFPMK4qiYxeCCrIOoS7js2D3Y99TiIyEpyoO2FiujAgskrBD5kG1Yop2BHkKsgUEDOAFkmDQ5p +2QAIuGAAr5AXMgacpafm6wRBoOQD4DBjYS4SAEFonFAtsy8cVwFd2+b5Iq8VZoS7vGwuPFsCHcdS +aD3UPgUMA177SEQGBl9oVvuOGiwingMlUBIY2SHPIfQUArRHrsVj0fIoYLISoAQKaAceT8GCVdcY +KGOXGIJIqOVxKZqI1MJbEKQj0C57jqWkzXN8WniwopbLxAnfZ+IQjvRLlkYuY4g8n4EYZypgxHMz +iHPKkVYEssUIhAzYDpREhZGaF0iJw1JiQRahEPgg6IGabuTJlUSgy9MSqAcKgRIzmFYQJgjAefos +vjYjCCKJAKXF8RUwwuWXQAwrFIYAjYDCIEJBCgBAL5IMAgHw3FABQy8QasFDJ0gwgHAyI+yI7Zsr +4DmueqLnKCSgGZFwmWK15hhf+2rCrhVqzAITGKXeHAJJeBBaaiZUgJbAyGWhCgMhgaA5vs0YRKCF +KpQ5hJwzqDNjRivnqTk7fhQqJB7yRiLxXaGAAZZGJAbHTRAH6QcqxEiA7xmLJ4Guto1k0RXQEbaa +gjKDEg7eQk3ZssNAzSKymNW2rwQowtK0ZqnHRHuY/TFDwF7QYA+UwPMjlkxJseeChXeZCj9ghgAc +N/7UhB0h1GDhW7zwaPkVMBSsc4GJIXLZ+oSunIIn0wUJQ12XQM9nexJF2hwg3LaUOYhCKUAAhNVz +T2GgCEcCbctPMNAspSqF0ioCMLJdmwVC+gHPl4YoWXKFAQNyn/mmPAwCPdbl0LUYA7MdlgGsVILB +dbU7CgAugYEvBK+uBkaeYGVOlgHAlqP1SDIegLCkvGY2TwtiT14aW4uTF0i5l3gjKU4ATMwnWUoJ +pBKLotYLEgw+TI0HK0GH+A78MPsBR1ovGCrAs6nVdQMpIugkHbaJGLvUNAZ+mif9KYIwqpVECA1L +rHrisgDuRgGrtivNDgCjRHmUScQCJu6MJLNSGABuC9ZV23Z5sMPKg9vWpd95sIDAgN2QwowmwdPC +GyoYWGrWPjQ+6mngTcFqMmKNwMcVSbkmz3SxIrBFgiGyXDYCoEo4GAtjmBAoWZChEQBdIdSzXJdl +wcdtI56CI+TTfBtzsZl1BKCvwg9lHxUGyPiDiNUHfYAECkvruhUECuhZKe+mMQROqCj20Q61GO5j +HU/GClHIc3OjiJfHsjVmoQMbW6sKYrZZfjkm8B0dfCdxFABtkCSOo/QCAxwEkUUNi3cSKCxPWwy1 +wC6wloXPSfQdBoOtZvkLAk8NxhZEXh8ZJSIGh2M2bABhDJgiaZ/nhexYAA7GjOGBz0g4vka3IGM8 +AEbaBTlYcdOYI+Ep5XQxN0MgxMUB6wDkhLYCgo0M2e86eoUBHgrfmJsECo/Xx1d8A9NrhezbbBEm +CECreXlEwAgS7297Ds9LuNq/Gizy0TiyFgEPSgoI7p8xWAx0QqGBgZ9gSOTdigTHmQD3hC2S0E3C +Qsd2jaWUwMBh3nvozTVi37L9GQ6pqpzE4EoziY8C18Rhlx0mGAKbTYevAhAAQlyqgAEoKAED8Fjs +xrBrhzGAtbctjzFIa49Axw54YtLfANAKOTKi2F9j8LxILQPHxQDE3yVQMBWi7Hi86iFGpwoDwH1a +B8hfgVeuGmxF7ASoBKaArsPPchMtEmhCFRwst6QiNNwIB+E+2hA2dIFjaV6ABRDsiPxQWmYcrHLA +SEeOCLRZK0Jbx/y+CmckyVEQqcECE2mJFtZJAcFc8xzA7iYYZP3RjF79SIfhMBhWTQEdiEx4eXUE +4yP1rIfEAAV0WV0CFQoi2ojVJfB0zO5jRB4oDETPOu5qGEac8h0JTAIjgdtkEgPCVQACc5CRYGBj +14UtOWy7GugKh4EOrwKCtT8N0a63GO65bEvIyUmg8Dh5iaShRFjACISTIHY44xSWIgA8GluyUNpC +uNmKWJJEElYB3A45TiChkEA/ihQFViBFH4EOa7VIrClOS5tePX+Ykx0wBhW7A9DxOfIOMQvWBMAI +hYGLB4jB5xXwVAhEGLTYJREUwAObecPiCEDXD1gUlL3AkdpfUSysMYQOG2qBcXpLw11SFSTEkgFi +gE5PmEshgZbUHxqpFxjAaH4StZJAHxIhJSIqMQEg2BueghfYCQZPB8ReUk4DOEUCEi6USLuSu2lu +uIb1DtGMaMy03MoOqBVC/6rlXNUqECg8TbH2YwjHjJ8IIUOMQA+0IhFUSyigUkCWKYXB08kUSro0 +DgG4Ji9iy6lyNAB6WgGF0MFc4BsZaKSqMwDExiF+nJDLHshMJ7GcCgPALbZFlK1JoKUjP1ZBgNks +lKGjk2BEELG3CdD+SKCj9TC0lA4EEMix6IShtvQID7heEtpK5SCL8F3TqEsgle2UE0v0EAsNEftM +1HUFtD1mpqvEF4Auj4REx0swuIH2utLxA0xVM5HBgS+JCNGPssND/6EQhGCJGAHHv4BB+OxsiFES +GGFgoB5lJwiwMVKFKiq3oCCWgWGg5oWJfsB+39cFJsoetJih4WkxHBJY9izSFVMg4g== + + + svCit5FAW9eS6BaFGEuL7G0i5cSILWxNKHaVQF8myzgFiIIVBlT10AtSUxBglj1HCbqjSl8A5Iw/ +5UcRHmmaI8EYhA50ApVpAhB7j1matA8TaMNdnhrWTRXagO0LbRPxHDiYDW1d/aU52FoDZD0D0eL+ +h1wblccj0ObZ4mGxBIOwWH65egJAPGuUtkRIheAQ1w90ZCbANYQchLmemjA4EctiryvsSAFVRQTp +dXX8jnDL1VroM4YAO6aUrkhtAyCl2kocXL0OLjbHqr0JMh4thnsySCXLJSMVADohF9mEkIKGQB1+ +k2fVmD2dnfjK+QIwiJhHvi9jPoElJ8s1pE9hwBK/jr8dP0zmpnyZoYkwOCkY+ioTAaDjcrQUJIWC +04NbGq5Fm0rWEuhGbFW5lA5A3+INDB/zQo05iVPZZ+A0As5EhCqe4bN0JZN8tsbguLxEEUZUag7a +mUUqq6M5aAX1DAR4li4d6ApM4Dgy51AZgEmJKkzSFuFj5xQzJJSxPQJdTzs+xXwAhi7HR772RARn +9xCp1B2Anu/xYFeWZwQW2D1xWjDBdQahqbgKbcT15kiFCgjU8QPZ1QSDbUUz0ooYQu0bIj0xh624 +UewDuB9x4ZzZ5nMIjwqjCjwAFJYOEzEZ0ggC7WAiEfIUAu2lyXWqR7kcwifBukiKgFE52WFCsA4J +yfYk8MQr6wmHOjkwFjIpPpBE6ufRNNOGFXy69tSUF0qgqjhS6JeQHGDftDIcnPwDMCkpRCicEkjd +jkrQdQiL8CCRddlFhPCkQGlIJeSmuFwqm/EVzHMiFZVajq5UEZwdMEmPRsz7ewCXsYUQZjinUioA +qmoHZUR6whhGWEydMsJC9voQjIymHOg4OklJYkeAs75yRQtAXAVMkmMRcurC4ba+P9KVDr28EW8F +CEuW6SUwslgnjJAJ4TKOwSXjOaDqssbbWOMDYGhxHkBxgM0xeIgNNnrRI1l1DG0Z6BPQUzVhAKrN +NyHPdDAGcKg8M1X2xKEB11WEWkUECl1kwHxZ3Q+e07W0i5OhMgIDzoI9tc8GQMfmkkiibAjWhUHm +eTKW6JLxc4ipqs57hI5dAe45oRJ+WHJJr8sBeBqYZNxGcAVwyr/V8gY+D3YcBXQkewFGG26SvcnW +G47VzjRS+SYAfWFrnxIxVhHpsk5iu0NXpgT6aS0GGyKCEYGCe9g4pyMIuW1KQM68PakSAHOEYLyB +1neEhzyWLSoAXUubWVu6cwR6tumCNAY/iBizcroAVOYFp6A2sEPfWF7anVYYcFtHp8cep6YA9uSe +sqEWIRp1tgKOp8TE5+rHKcQqXkc6VDISBiypVG6RdX8AclFZxXIKA+RJEUdiXEAIQ978AyAVvCXQ +oBj1RmHAbVXf4bnJznKEY7mUGW2r0lWoNuckZiHNRogFV5sxC70piBgCzk5dV4YaIWYYHlsp4TDQ +dgOOJ3VVIVT1SxWByBA4xNDQY3FXm1khlgH8wCBCY1CBLa2ErB+HEe89kEhFjgJSCKiMkc67ES7D +c2MtI4t3CnEOMsmJLIOGpJkgsmRFXC17xPcTt1M0IFDmOFxm0xgSXXZUR7uE8+6oobaR3OBTaY7N +mC2bNxmMLYJIaZSERyJKMENczJt1bOow+FEgtaeN9we8uUPtX7Wz74/owBLbWrm3QwMtnSB7xsRo +D0mVBHy+39dmTmWhEZ4W44jEsXWpLLLZ6ZLG8thAiylLHj7J0aEo7vnqGUS6XhkoGUGsXlJukUkL +AF2X52o4TZqC0AmydA042HJZ2VRKFtmGdfCSUCfC/JYjYtfSGFgaeXcKx9k2a6qrvcVZ9+MxTvUw +tdcf2bzphbJr8AESVoetNwfqEbq30DamK4GOzROjwqzC4PCmK4m/z3NQxTejMIgYjHW0DQy2iNhr +ql06AAbC0qaFEUBIw1MwZMHhYEmgBMjtIgQm6q7yKAD6LgfqTuL6AS50CcVWFarI5V0ofJzPoJCl +zklS1YgqqWxDdFcKgHlarA+YLXMwwHt2AHSN6mOUIFVtHwT2eFKRknBfbUciyGNbY+sWIxMh/coV +O7KJMmuOPOnBEubpR0cRhyeB2kM2Hs0VtMiMFYwST+p+1+VngZlUDOH6DM7KYck2dikQ7rEPQPvQ +YnAS2vNuS4T9Ir6ijOsBCNRPM7aBEG5zM6ZQxTIEerw2bI087g8ga6/bFCLMpDnBCRNvGkFo4fGa +s7HGwSE7Ik9VhWEkSCsDMd3SmKMgYJ8R6Qgr8mXng1pM5Ut82fmQCpAQs3aGdrIrAHCwwqyjlixL +Rbg/qokO9NyoMVRRp+MYgAvZfIjUYVImgYGdOERfwVShAREkmyOIWOcNvmcSl+Q0XP2np7kzIWGE +uWmggZGeWmDEdNwEAUA3ZParPTUa6CqOBikETsC0CVX8B6Dnst/hrAyx6iqyp3MfACcCyBuDiDXi +kJL2aiTQ13bCFHfAoIWHq58ATCJu7oeNhOwLULFuYMzBSP0D3WYA461AJ8hYHWnp8bopkOM8RI4t +btIn8pyF7CRTZcrE+cBgwTV5R9WZAOjqnkJXNVEC0HN1C4Qh8AILoOwQAocxhDZHXrz3D0Bh+2HC +ToUg5DKTybnQiIWoniuBql43Izy6KI+6pfYrIuwFZBsR+JangGobDqfg6OwfB2vWUcVTPc5nvY/Y +KWLPHye+RtGFMGj7pZpioghPXLOjYKVX7ThJPqIxhK7NbsnWJAdJJVl1LuLEPF3CSPaVcXDgzdQb +cLDN1Wwu1OOz9AYCARWGyKjWcq9NFBl93kJmrgizudoWGdKAneA60nNtXvXIDXRtRubvkermVO5N +JAg8WyOI5O5pZHZf8r5cRN0JHFwkmyNRxO1JlGS4PNj12MepfhiCsfU19hERsc2umOr/LYb7AZvw +AEuYGq6ae8nKeHp2ci8bm3pDy7J4W0+o8wP4MIKr1mLyWq46bmDhmrB74aQMcUacyapYBjMqjhMd +7jal+3lppJuXM3AiI7xRTw/ZP1JJNJmVw8Ejnzyw6GSKdmGWpivSOVIYGXQ5ujAhDbp6nNBVn8BV +QNpAlfrA/fMEVyUilHIy/wQMHfZWUh8kUGuO7poBuC2JNxw3AdVOAIcEEhgIXtmAi3ISbiduyZdU +qHORiVuigWHAbHQ4sCa4sMOU+Sdgsl9DO1uKXKkkuAxhFCYYrIhr6wEVk2gwZAe6QJsA9XaG3oKR +y+Nbejsj9PWa8a4TheYSFkZqoLZMcmqhbmmnDig5r5ALpjLHIaBy44E6EqKJUGFjwD1qEkPSVUGF +RQn0uKtCWyaC0/KpXSCL2ZZ0tMlGGmJPEmlRl4TCAGzzdS8BSr0C2pydy6yD0Ea+ziq5j4sG06Fg +xYrIVxgivTmpZRqSAZ9Xl10dgRM/TsmTBBrbA3jiSAITh6TrqwRXW6EIxz45CXRs7f9CmzEkdTaf +62wSQ8gSKXfC5GA30Bh8RkstnxKIRkpjSPaUybeoCYdRysZL0nStnYx5Mgefy2F2wAhUJTPgDgUJ +tLnpgPabFQJP7qcb9RM52NL1EzY5uP+oDylxowbB6T0FSviEqwYHWkzJSwDM5+4h3qhUCLBYyMJA +x0AQGEjVNWIvAnoBN28EhjQExsY4j/Rd1gg7uV143IpjhX5yd6RPicjChUQQsFLKPF6O1KrjcjRP +8CTaJJulfI8wYi/XVkYPzyHr7vZIqbsAFdWb4pYmDMYKwQ3nfCZFDtetSlbIeJMGbJs5Kdir4cxs +J0oQJ+1dFttuIbcc5cwodpMjPW5kDyMnSDBEuk2ZWp4RiFs6fMCIeuwlkLe+VSu8whDqY11qwi2G +J11yrhdJJJHstZSDHV/BPE+H3IaNjOQJe/lArFC1GJ4IJZVhErjurJZHnQgYevpYALVcERD4zPR5 +iQij5eeVc7kLkOC2z6ewfCqcEtDXZ9/Y1FKJUB8+8UIDse7xkh3FtEBJrU42CRMQYn/GYNkGBmXE +qVFduDOryQdN5GRVp4Q6jqMxcPsOEMGWMtR7URhYqzXDqigfLqTEWnOaW0VDWfqRU1DuKZQVbAUM +bD0wigwE+rQMbZYoOfGFmoKDnXUSqLoAEGi4bpil4H59inGVZNrcEE+VFBZXPqTpG1FUiFs3/qnH +Jafk5HkbqRoWc92cA5734sfJdg8C8pG6UJ4EUYZGMcJ2jNttK/AMIZNAYKSaVUAnFqTZsPmciW64 +lYP18UjKihUwYEWmBlRlueSWHo20XcNWOi6znX00Js/6bIOXGFCfT0w6XIdTltlzDBa3GO6ohuQw +sZUmUEu6L0uzEmgEVz77aVw2NoCePm+QApIPlUAjNMI9OdZMStdb2kmq05+qw41dL59MkXVaAtra +lNC2oA54jNVA66aCLpkzBMrySqAf8QpT76UOHf2Iz4ZxCxImLbbGECX5ughCnq3e+MJU1Wez6AQu +t0lQssvaqTErwZFs4mpL0o4eysZ1jTnRRN7Wi0Jjka2Q81dbOWohD/vo0gcfQgn1FiBWVFQPHBAX +qnJ+oEMTIWO8pGSkepWwLSGMksIOndYmuGpwwXqakDZCcF8I1gpVP6NaSV2oc/TzuGcFq40WH8mj +HSFVr/TZfBoHMqj06jJm1SoMQN8RSqK4ORpLwnbAtCX9WVhWVlUkkZTDXH30Dh2/4Jo0dXgotHrX +FDcgVIAiZJ6KQDxS7we8lJHebVSHK4VszE22JtWZDiHDe7VrGupuGCG3cdflJq1sbQKgz90PPm6l +KipcXe6BsZYKcYQslOjNZpXMIimqPxQ3pkPP5ZVwGDFYY0acVORwd9vn5aQN4HXaB0/kx1Y1Pdwx +t1hjvGQrBuDcYIVHNmQ1FoHqiIPgvVBsEggCtWrGRgj1NTgK7kay6IQdEDZPwU06M2CgIpfaInQP +BZ8eEnLntMVwol8RrXoKEBgqzL7qz0fMEc/B2OvCVg4VAqqC5Dp1kyRqFPAGva0P5gljRwXAjmBh +4+NSocWFYuxoVnV/gS19QsmDm+w+IFyEinO85S4wteYp2KoQLyJZkyegJSw3wWBbjIF3KIWKtZSk +qRamUCcUQjZmKAyhTmuwgqt685LWpDQGy9Nypq0f9UGxCtCGw5lo0dwwM6lLT2EI9GH9QDkCAiZO +h8WEuvhYDZ2kMc7V+8fqOOk6Nbk6ARNhq+5AemEKi7/WbpGcghGyZaTFcE8dRg90QwI1zrH5DLid +G2PxQGFIui+pJMKmi09fBsnLHwTlYRJGTJEzMI4BhNp/C/mKCwkEm8H2BfdL1qn5HORVC5O2v2SC +WFNstdGGM1etiOokvwIKIViLkzNCSWe9kB1c69SwzyXiREzxJIE6jyNkKqswBGCKWINo31ECIYxR +QN6ZRqDmpJ906yFmnzELWx1O8fV5LSF7VCUwcDkmSPoyAjy+F2qwOnXgS4ugRFpNwdfNdkK+GlFh +8PSpW5Ecx3HlSQ65Zqr9Bw8PJfNKHFlgGXbA0+ef+Fi2wBf3yClYvPeHj0re8kCntQ== + + + GB4ox4tAx2Ei1NFa47yXSOodBA9k7ZaIU8cOLH02EiSL5ckyOGGc8MXjZarbVCQHsSzdviySU0nY +ncDmmPbcJQY/0v1ngvdX8SSbzx6ae9f9SL/VRZSTlw/4dICTx9r6zJmfbFAIud+3TocNOXUSKkEg +IB8OMM0AHlUVrCrUWL8ujz+r16QEMsxbp+PiavcxCMyDZ3gcXx36ArjadMDXMMi+xyDQm4decrA7 +kGdYJAYXi14hu1d1FtOlI0CsmY7Hr53gY85CnjjXGBxL2z31NpNIHzETug+XBgZsuDnUlohlWRqn +JpUVX4gRsZDxQQQEqkPOgXmqBF/4IWQ4EOjtYTfgrhUiWCqg6/ORMQQmbe+urwPiQJ+cQKCqKiex +FmIItYVN/Bq+UkXVAwJZ1GhpuCfzzUDutmi4YzE/9BtNfLA6PGehmjVdnzcq+MVO6omObMgjOAc7 +Drp+jx23CsDxvULqCEhgHiJxAt6OC1Suu05vJuJaV6BKvfQaI9ohVSus/Y3j6EqD0A0ljo3huloi +oTpHjNdWKashMdiR3rLlNH/ei5teyXc60eueHKMK4Tj8tinVRChvsQKub0Qen8wnq6RGuvy+DN3H +I+EBv7SK6s7qcaGjEkyp4/PmUOPpWdiloru80bwea7ivj8WEFtd9OZLBnThViwCgz307Fu/0SgxJ +XzmXv3WRWHDPmQQG3AJpce+IxCBP8tP+bcCVbsj8uA8+4lR7hoiEPofzD5qdcJk+gAveBNITcYy2 +DdpiU9sODvdBuFag6z2nMLf0Qy1jSaj2ecxwoTuThc9bQcLnFic6tCWBoC4BA31dR7Q4EKR2nJAH +q9MJ3Kgxdwo1Y3Yqr+PGGT07FfMI1cQpqwq6M9kVqoqLbRu8c6zPIoZqW4z3NmgrVT4t5N4mX+/A +zcygxq9Aw+aHkJuTiRnHGm7z5ITFvQ+Ox1u3coNRVgVkD6bcutUFhGRHVafIQp5pUT1IHvdOzEwg +mZvZUuPzxLDaJHhP2tIVhMjSQBVvY6+Pn7RY65ADyw26ocbnfipfnh1R7UYhdxBF+phZkLyaamZi +LZ4wVS25oE1W8JjhfqTPjIQB59RkR7hZgaoOrTPw6Ef4gX5zWiRjr2OGsxNITrbiaxt0/xy/YyLg +CqlInRBGxAFvd1sqHvXNo7yhqlOcnoLmmBcZBwwptj/W8Ei/cwOPZbQ0POQSIX1qnYFHLsBL9d7F +xqCbfuviV77B0bbkl9uvHjV7fUB19cpd/bl0D35786z1fNiN6XO915n0hoP26MuCr+6X1v4+7g/g +y3WY4Ki3N53E45ulOzCwMhq1Z8d0Dnv97ige0AindPfxYJJ8if9MvpzE9OWabVnXb5buvhz0OgDf +BtyDg/TYT+3+VA0+jHsHh5Pzh+O7Kmk0zIfH31kF4j73upPD7LSp4csiLQdhf2cn6u+VIOhLdoK+ +LI+gyuPdSv/ksL1rZyas14Whi0jCQcuiabj3Ie5MqsPpoAtzrA4XiJZB2j5ZQBg7GWfnXuqmO9kI +u2gGdjId7U378aATZ14reXPWRdKPWhp5mQkbxeNpP4f/4PHLIm4w3J70Jp0FXsEgcEzDd3r9OIeU +p25amvktW35mMvfa47g5ij9OQaxzGOOZ25ZFqpOZzsH0eLMzaX/Kw03znowm6ywy7PPImO8oTIsb +75imZ8G8z2fGxTctvcECtqZcKA5elvhtD6ejTvxo1D457HVy0JeHvOVRt2ieBknDk3jUngxH2QlL +7liyZtWGxyfDcW+STbH+pVlQcLR4Anfr8X7pfpGHFnnovxI3FHnoquShXpGHfsd56P6oDWFp//mw +Ny4y0SITnUvlBclEsxfMVjsRzW6Qi0S0SESLRLRIRE9pVpGIfvNczbvMiWge4lYrEV13Ll0qmouk +lUlGq/GnuL992O4OP/9LW6OrmJ7t9acL/M8KZy8y0qAqxKWLM7IH8eNJtx5/6rVxWnlyMvOuJYcb +j9rT8bjXHlSltK5eKJ+dW90cBrW7RIs63N8fx5PqZTYfOZiWw7F3l+jZc1n7r7CEy7QRmySQK2kd +xidxZ3O6QDNWWJH6mH1gI2tn2B+O7n0+lIljVvf1pZ+jGKyGX1YNWwpR2Tt0xtPRfrsTb3fauXiW +umtpSWp2KkFfp/32qDYcjCftQQ5NPH3n0qi1cpPb+PtkOIi/htzkzhVNk9Z9y8q+YCuS5ttWHqJW +I9Ffd3IR9b/sRP1v6RHO1rA3mLRU5W9pVdd4Wyl1S3n1IuS6gCHX15U+VmULKS/3ViXQKjaPLr7l +6PcmW+3eoihohU1HfuVaFbNxuXees+cvR252inDsClCUQwSPliiB2SPTowXVxxRF3kpQtICdKYrs +5VHUHvUmh8fxJIeJKJzxaqb1X7GJsWJV8Wfx6CDGdf0+Yq1LzZ1/dRZFI1fRyJWBOPvyNnL52Slb +kQJvHklcjfJu5fFubTjsV0dx/L/sW4jFuaLLd67ILmc/Tz9qd3vTHOvD45eWgVza2lKOYnQ3RyS3 +RNW9zD2G3V6/naNTY4Wz4GfD0cnhsD88+LKSedJlNoaX93BljsNdK2IMCxNYmMClJTuXrsV6L/v+ +x8qZvpwncFbA9uU5qrtSRcoVbqy+9C+f2MsR962aichO2sqYiBxWb0Xio+/qBSHZJXK1XxCSvd+/ +eEHIUg/vLujjWWXrn520lbH+ORzayrTUXUKXll3yxjmPOS33fFMl+15g7bA9GMT97bgfd3JVM07f +uSxqX2TfzP1qak/fuWR/Vu+NT/rtTnwcDybP2icr6dSO24Au+wboSmVr2WtUK+evc77lcxX8dY4Q +ZEVcm1Xiq3Tqo536mJl0+pgj+ufxS7aUNTyJ/oxNzepZyb3sOdrKmZLspK2MKclhHVfElOQ4Lf/f +vX/oomnpfr4+tf1ev5+ri6u/RFeywOabxTD8y3Q5imBy+MUX7P3R8DgHu2j0sqjys7Oru+g0RGp/ +dLrEHK/d/9z+kp0wcGyT9iifJ5Q3LI1r2dOgYY4kaLg8ikYxJaiZ6Wp3u71J71OOFC+5Y1k0DoaD +HAR2OtPj6eImkxSJxj3LIrLfG8Tt7MemOu1+59mwm4PI5I5lkZg9cDH5yXN4TrRkZmn6tqVmR+1B +77i93Fc7r/4bH9fDS9eP1Lm8/Ug5SFuZnLPoR7pwRuHS9yN1Lm8/Ug7SVsVE5LF6K1KW+q76kb6b +P52b42WVRUfSMh1c5/J2JOUgbWXs/2XsSLqETi17Kll0JM2SWHQkLdWfFR1JFztfu7wdSTlIWxl/ +/R10JNlFR9JqdiR1Lm9HUg7SVsaUFB1JxV9EW+E3d+ZRydXa3ljtN3bmad4s+HJJ3syyOmz5V2ex +zBlcqleoVh7v1um9O7s5a64ZI65VdHg5Cusr9oKvy/1XGYoXSBWG8BsYwqAwhIq+7CtRGMLCEBaG +8LIYwsYIIEVAWASEK24HY5TjwgwWZvCfmMEiHCzCwcIMFmbwuzWD5v7Xbs5Oj0tsDbOvxPe4B1ro +Vn7dEoVuKfqyr0ShW4VunaFbW72/4/5Wv/1lN+eJ04vcTORbJT97f57k6Ys8LXrGLcuisfgTbbmX +bBQfDxe9uWNF335kl+z7jlWyffjXKsH/78Nn+O99+KL0X3SqFu98+rbnC4vXI63g65F6g2683xv0 +cmwrjeKTuD2p5+GhccuyCC3emjRL4Iq+NWl8gu9NykzmKr41KWN49/2+MumihWl7/UXWcIWPbuQi +blUOb1zmvzlbVFlWyXZ0hscnwzEEYJvTBUZhhW3I127ErcobE/LZyBWxI4vmeTk2F2usfytvPS7v +uwW/zluvivH4Kg+wKkYku1AeLWjHMynCsStAUQ4JPFqiAGbfeDhasDueoshbCYoWsDNFkb08itqj +3uTwOJ7kCJ8Kp7yamz5f59OLQ6dfO4tic/7f2JzP+a7Xi1wsKjbni835OUt2iTfnSeJxe96x7ueT +/mJDnikrNuT/BaqKDfl5RBYb8vOILDbk/xMiv4M/Y1RsyK9YWbzYkC825C9ODbzYkF8l29Ht7e9P +c/xxoVUzH3npWxULcin34L/E/f7wc2ay+r2DwwkMWO/gq5Czkzh739KS1uwpq5Ti2nAACdsgh/qd +uvHi0yotxna+P0yRumlpdaTsnm862od0MCeR6bsyer6L5nAucR1Rmq/7B6M4HtwHAx3f7w26vYPh +/U+9YT+e3B/F3fvDUXtwkJ38osDIlC27wFj8QfSiwFgUGIsCY1Fg/AYkZo/biyrjRQnc7DD7vmj7 +f73j6WTBH1VNMYlvWJZMBtmJi/vwW76alXHLkgtW9R4lgi1UwaU2I9VlZtpStmAlVWJ8EnfAXYwu +82GWS1logkzs+6ky/edliSV1gGQnU6lt/nLa6TtXgatq0o2/TyCA/hpykzuLotNFKzqpEpMsOqkK +FNWeiqLTHNKKolNRdCqKTkXRqSg6DYuiU1F0Gl70DLuv6hSXq3mjKKUVpbRvOJFtlaYVtbQLXku7 +3G92+BoOrkrBsHg7zMW3IP3eZKvdW1TfWmHzkbuXdWVMx+X+0zU53s+xIm+FyUFR8VaYZSUZ2Skq +3gpTOON/yRlf3te0fV24uyoeOXcwtSrOuHhFW+GMLzRFhTO+zM54Fbsn8vvy4vVsXzuLZc7gsr2e +bfuw3R1+vkx/OK14b1nuJbvUL8e4zO+RyP5KxeI9EstXs+x/SLj7JUef2pcl2tr9/XE8QYaM4m4+ +FVs1M5KDeQs8Top5fy+Pon/71MIybcUmCeb3mIj8A5VcMR7ny0guGp/+s+281WFRkTSuQtJou9b1 +zPJ6GC9uTjRllscvyyfaXg7iPve6eZoO1fBlkbZu+9lJyxHCLDGCyUVSjpB6iRF1UpK5RK/LL0oy +RUnmeynJBEVJZoWi8LAoyayuGcnBvKIks3RbUZRkipLMxXYGRUnmFIuKkswqlGQwaZy087QZFSnj +5UsZ90ftzqTdfz7s5Tj/Im/Pukz6YUshsJO9JLJqoWwO0lblAHfnX22FW9J7LrYnvUlnQc03leLj +8J1eP8+rglI3LYtUq5z95Vl77XHcHMUfp/GgkyNLnrltWZTmeCnaYHq8CSb2Ux5umvesqGO5xG8G +yyPm+6PhcQ66aPSy6CpeirWKL8Wyytn/MNRkmCNsGy6PpuJFX2dQWbzoax6JxYu+/pM6c/aI7ft9 +z9e/VfvamY72pn1Y+VWukl7WF/TkScRXJGst3svzn+n2paoq29ZlbvTLQ9xqNfrlIGw12vxyELQy +TX5JELC74BUKxa7NebWjld+1mZjR4OXbs0HyLu2uzXe1H2B9LxsC2dvK/qP9gCIR/Q4T0VyGs0hF +i1R0XjxVpKIZ5KZIRS9C5lakohcgFc0e4hWp6OVLRS99A2GRjF6WZDT721hWOxfNTmeRixa56IWw +m0UuWuSi8wKqS5OL+pc5F81D3Grlouv2pctGc5G0Mvno6+GwezBq57DPRTJ6+ZLRSw== + + + /QKUfOf8V+TA1+X+A1XZM7HivS7Ltx7Fq3ZX2DoO+U0hl8s+Fm8QXqX3ZHyb19Usp4c9119vXzXr +kI+6VTEO+33IetaJtnt7/Xbn6H5JgoYn7U5v8uVenpr3ePKln2NTRg1fssI1kdyV1LfvyDWP6d2k +tUupgv/oNV2rUsrPaT1XJDkravkX30rm/cvcq2Yac//l8RUxi/92kL8Uoj4f5nkhQR83ZWDAegbr +aVI4e9+yqM3+JiYlxLXhYDxpL/rLtqk0dPbGi0+rNBjbnXaeWDl107JozN6mN56O9tudOCeR6bsy +er2L5m9I+S7fa9VsNzv32//rHU/zbNHqG5ZFXZD9ZVxxH37LV2M3bllyKFfvkZlsqe6ApXVmwETI +breUp1rJyPJr/sr8qkWXRRS28lHYf+61L3j8xWqbP9g8fefSqM3ur3jSjb9PhoP4a8hN7lzlkKyI +yIqIrIjIzp7IttL2IiS74CHZ5e75/xoOrkrcWWwXXHwL0u9Nttq9RWHSCpuP3PsFK2M6LncjaPZ4 +6GjBm71MinDsClCUQwSPliiBOSha0FWToshbhbT6aMHQFEX28ihqj3qTw+M4z18tKpxx4YwvUrS7 +Kg45N/tWxRfnsIor4otzUFT44otPUeGLL7MvXsUafPHHaC9pyHWpufOvzmIl5ePSv6xrJ/+LsVct +6/i6HYTVCM2/o9eRfT+vxr54fyvz33IMK/4+suM2oMv+lpFV8guP4O7x4s6oFXYLX+H5VsUr2CVL +XfM+aUhmuuljDgvD45eegfaHo2eso6tnXr6Ls66XOTor3mazSuq2nj2+XJXX2Wx+P2fm1y/fi1++ +h/LhCr8ABgvcyKKdy/y+839gQVZn5zZ/srMqEUjRg7ladiT7SdpVMyRfZS1XRc3sco5jZ0WofyFU +7s1+PGr2Rpe3wPWfeLVV3JyftPdyLMoqVW2dUvatA1qFVzkre6mblmyFmtNB58VKmp/LK4BlUbJK +35cIPipE8GKJoP29GcHqUpt7KPnCA/M7o/ZgvJ/lT9BcQH1AKuRWxKWOCb/20NiqVHK+KrBflSyz +KOZcfDtCrY6Vfv+/sCCrmHt9pZ1dsV2NVWu7/ZdmkPMv0l2vPLat3cagq/8yHcF8BO0+Hw62AAu9 +YmpdwavxQW9gfnP1yvMTxkNfbn853hv2YS7A8uHnm1etUuXqFav05vPVK1P+n1XahH/KofB8CB3L +vi0CD9KYsmW5keNgq0zZ8q0ohP96nrD8CD4Ix/ei0ps23s2dNW++4G9P4NMHgH0ueaVnpbfvrFIX +nvrmxdUr66FlB2XhuU4pdIOo7Nl+6XgW7JZd1y+1ACyiMCzbnh0AWFjlKIIBrZnhIiwHgX8a7JT9 +kMGuWw790DsbrKYyiyQB78OS7oLSTNJG4vru2jquEv4YTK5WK53O9PjFcJIUK6/vInt3r155efVK +VFq7WXrz+tTn+Y9gCQSWulugx/Fo8AIYO56MCPsOC+P1Xat0tzoc9lNDGwMM1R9Ne12l+td3ndMI +8Y1Po4mBSk1Wzy4RTCVOXymVofxuqz+Ffzfpr5WhaHaHe3GpOpqOD0vP2oP2QTwqbY66oDmLvizJ +b2vtfr93IGM6NXQHVuJuyS+dTMqlZr89uauGwgpvDoDsQxh3swQzXktG1w7bo86w3b97s1RW0wUS +05P9Fwg/Y/ZIXzL/m9TV5sOFmhbR/9T1387WXEBzqrx4N6kKd7f0coAGrqtGwQ0l726JL7QZd0vw +D1xlJ2nO+/akRPI7mPU2/vmJMTi/p4Ph5wH9hhq2tk1/awD09znMV3pH0MBPsR5xlwKy6aCb/LFQ +pLY3KMkhTWXlkYK7asyd+bdtT9qdowW3VdvjXid1z2h4FJ9/k0O/9DdHavCdmYAGiBtOXsSdIShO +l76VAxWNpew2nMZ0ET26rBI4wTUDlfZn8Gx0aKW7W+3RZC5ZteGgO+1NzqIoffNXcmD2mbhGC245 +d9W0hX05jhuf4sFmV70PDhEna7kpl0k2neKVz03iyJkl1vhzLLBU1/poeFJiEbfTxK4ZX5bbvRPQ +AalzMCRmbVhLYbi705v0M8gXe63OeNShOUPE4Jfuvojbfcy02hIYlL2QgfLNowBcd8rg8hX0cDj6 +H0F9i0Hd9uiIYzPJjZN2T95q3vkpHk3OYk7ZhWjG8iCMcSmMwdgn9FwMfixHRUEQ54QhmKZyYPtB +GMAH+c0/5uW40x+lYsu9/qB7Nl/P/uUUx6v9eND9J/J9lzDkNwoGdQmGc0mCexp/x50pzkV+yX+U +ecY6vwV4G/K9d6aB3u4dn/QTA32mxiEDygGw2kUeB4qzAUS1NjJUeDaEuvDBhsjQ9/GDA8yO6AOF +t5U8vLaZ13SgMkUVOSJwXoYbWuzPttr9GMIzSdrWHumQF1kkkyyuAYkpfIgsOwp4pmtvzRDx3U1a +ljf/w+VMf3H1ylZn3tKtvaZX5qqv/9EStkkwwe1pbJaFs8c5AxIfE41IZhOYaERKIW3WUFs+gfDU +nv3+tPQi7iao1DzwRjUBZFc58mS+Ytz2e9zvYwKk7gxdnDEqvF5BVHM3nfYEnO64MidK0D0axZAi +nlogmx9syfuZT5GLP8b9tS/t5PZkIfCBuJxMmJ5M2cYn0AcejPN1zDlVMfHUS4PL5purzBBaZckk +xCJnnGB5BiH2YNLWiIhyWy4rM8ViuoSit2xz0qiGS3w/Q/707Gfbskq//wwB61P4mMicllnIw9Si +8TqBsVV4HTlphc4CbBEigyzu6c8mLuKg1A76pMTS9R34jNOS3DXwhDSpFJ5ktX22/pCDOq5aNGaO +L1hITakgpD4iRXrnYtWzCZVc0QMUX4mbvibdQArPn6UYEnJlCjTySE2Z9Il4YGiTlAGFE3miOZKg +TGNL6A5ZFkNWFaXsCp1jKXyzdOtFTLAqWUzkDkSIV9ORi8KTPAur4EVUdoSMXtlhLy1YqBwSL0Yn +/DPQ4ap7ZLjkPAgzMUpOk5fSkcQrdKGUa40vketEql2WZc0OB9dD4vXYCDow2tJ4I+K3lkzXJHvG +PLEzwKkHiM0MWkylTmgXaRkSbBm0sfV8xokCqRgUpFQwtJhybwYbP5tnI6fGHouXWUVaPDXChvI9 +wxWuN7FhNYyynRApl7MsTOsqeUOKmMYZRTgx08hYAfyYlS6YO9lUzRa0skQN2zOLTBBO2KRemkeX +J6ZvZuptfqIrtT2FTZpHB/E5/mkxZ00E+61EPLEnTJHNEuZLG2UyXqKf0UzS4JKxJpaacoIDbaaa +gp8ynr51BlZXLpVtWjpLaiFKEa8JBwiuJExhdZO5un5aoywWAj1bD+9MKQMLjBZld4ZvGrs/a5w5 +GlG8ctJxCKuWeqTpiFAKnBkbymaZ/ZeXyK3W4CS1kF+yHcUVcBCpN7OummwORzyyWiTBSq0C7bnY +EXs6XQHcHk7Y85l835AENVyLRMCBg4MhkkuPxU+mvLkp++JrzxdYaSHWRl5PL4moNC4WFYdFRZlJ +xo7LEhB2lAvPWGxlphNcAc9U64pgYcb/eylbS+vtacTGemsDg3FEaLJOi2LAtsdjt61yShZnvSZi +Rppdlii9JqH2BTx9X8cvPH3FDFNZaE3CmRV32abrpQiZCJeJ0HbT0WFrSsFJWAKfIwQ3we7xsuqA +N2KD6TH3XO3tWOOtU5IoEs/pW6dlUftw7aH087RQ6oTDSjkUX6OnlRGMvbqHVbK1Vm8Qt0cQvbe7 +PYhy8Qhwkvskp4SrBxhVVquA8vQdCUJOnKqHhPwFDGn38yA/fce5s3Vyz9bJPtvFyE/fIZGrMzKl +7Y/T9igel9Suws0UNnm9NVC/K52cfS/7VbOJ1y5t0WTgnzVUqURybNyCCdQXkWEhAGw7Ch6aGg4/ +roKLBO4hPFLwwJBMBTKENTAf6ZlhkPFII34LzUc6ZrhoPNIMI30DD2vgVjUpHOjyQL4KeAvS/1Rd +JSmBn65TyMHfZAsSUf2/ZB9ydktJfX3OoxQd9WFnegzSV29P2rRnxgC5XXZ3dv/M3OSf8/XZm+S0 +Hae2yf8rNN/oKWftZiebf3P3s6/vrt0YjHc/tUfj+2dsWieb2zAYvxgv2t3Wsxmnf135pRoMB2f1 +FqRWqT/sHMUL/+I4zYSH3rkQBO71Bl2YsJ2FSJCZ7XjynKjJQKg5/FsKxT9flHMbPq7vZluKHm66 +Z9KMLJxeuiCgUehMx5Ph8b9oFi4ElflM371P2anEsbkk/V8V0XvjNu6goA8FPcwuqf+F3mwvPg3/ +X8/ncqnyeP/zxXfvF0FNxv1e5/KYccf3yr4T6A33M8k+jLP8cTKaCQ+9EBbcFqIcBY63kMDPvS79 +bbzF9KmRF4K8yC0HoWcvpG7hq77kHC4IVb6LVU13IVVfMlH15YJQpVtTzqRnbziBeKoV7082R70D +6u5eTN7pmy5MSEG2Uva1V7FT62LEFODqLsQ8juNJuwvB1jeYTPSPJ/NDV1VMMsmcMTq1GJXHUak9 +muwN26NuKfmTx6k25Kh00j6JR6Vx73jaN5uh194+i7u96XHpRTwe9qeqS2X2fEPlsW2XdHkH4rDp +CfXCTuIBIN0axVg4NJJIK+lsPnVfqz04mLYP4tLW8GR6MqumdAchHH2KSzvx35NSo9ubtPd6/d6E +jUrg+65/JvUluzTSubvveE549lAnz9AD6jTJOHgv4fPC6ZqIHWPgBI8xnrRH+A5gGNTrAv/+lxmr +MQPX0k17OHRzOjmZTkov2uNJPOr9j+TBEADmiZ+66Vk8Plx0i5ViI8trqQfD2pMYZhRTIeP80UeD +YedoCPM7GA21gJzyHB73NQ77I5NKAnZPeuXZh7T7vfGstI1PhpPZccft8REj1D2MJ+1uN9HEyuNS +ZToZ6tXgZZ4x8bXR8KQyitsEVUPWWWv1l9TizFLFz3vUH+61+y/ik2l/bHDEWDCrtK8V8IT1Zfgp +Hp1gsfYUpTN3wPL2e4O4NKaO4fEchswbPQF1XIC40++dgARiTvs36NYBTJ6xi0RaU7eMaBXXP8Wd +CcgtkN2mF+HeMbmMAqgMDhqk36ZtNAelVvwp7p8lITPc2I77v7YnYIxaw067j8ZqbDLmrNHw+Hj0 +uJ4aa36/g5kpPlp/d9ds5JyZ16lGT2PRt189etM+mZUTgNZ36rOrDtCtg/15lM9/AqG6m8Qkdz8M +98qgOqiWN88fNYI1Ho3jIZ30SHue2aHjo97JHrCP9SfxarMjT/D0CDiC2FQqsvzYsPlkuPd4sD8s +Gcua26N8zaKcjMuD+KBtKOQZozrDwYSKzucN6tuoB22mwJkzqnNcBnrjnvbphqGewTY+bAMDtKqu +vSxvl0uv471SbQg87Jb+XNt+vbn1583SpzkHpGeeeTIa7vf6pwMVc9ioOwI6qdZ4DtcB2fGwawTb +c+eOuj6Ix6cMgTns75NyWvXXzieD5tceDIazEnJq0P500MkV7cxMa3A6rpkZMTwZLw== + + + HNGdnrOMMAIN5yIcneE5I4iv0g8MJ4fn6qoxtHP85eg87skVVLZ6PF601jGdcusuIHU4wDMB0vec +T7Maajoe/4yhEETNRCNJPDAzdHRq6BkqDGHtjOyeaRCOcUXHZmBt9Mufp45ghGOyVEb8PG/hxpN+ +uStRkovXHF6gKHifumGBJO8PJuVu/2S0P0wCiCzIT7poA/oG9mCuITg4Pioft0dH4+H+fllm0Bnp +PelmRzwyCmEZZi9NXK4nTIaGps4ZfDIq947BH5X78f4k28gEZYbnG2gD2zkfsbka8+eAqEFn4+4p +rohoAfLU6AzYF06mg7g/D9WLeBeMO1w8Lv34FN/mBjDdeNw7GLQXGAYKYFCj9lR9JesE0vJwNl7T +O881OIiV0ry99ug8y6Qxtsd7vclx+zz6CenIOJSyaCzGcD0I03hc2fHPXAJQZMwgzCruAt2k22D+ +EzzmluMWqc9ZFjDtq+bL2ahbxpyq3z4pf8o68PCcB+M4WIkTfZqOcr65w+jNI+ezodMflXXKt0dH +e85/9HCE7WKLuIto2UdDgrxIwKRknfa+Z0TFRsp2hjPd62HUvsBRjad749lK2GlnZgSnZyvS6Fy7 +QGPG+hzdGREVLO640xmMz9NvHDTp9VMFkDMwnfQ7vAD2/JRAjmv3Y1Mw50+e7M9C6R0daEwLH3mY +Bdu5egAiZvBmgWKjlC2IXcgjUL1ssd+Is7kh01ZBLAfmq1va+1KqjyA9nPM2o1kXaUz4HEeamsw5 +3tyczTwBxDEqWjpPHGBUKqdL590VHmlm3qnaIQxtbG2XsLkV3z9Qag+6skh7fvVQ3ab7VfE2WU+c +vc0sEsmbZJHt7itZHqqmcsT03JxS5XH+qdFdGWaWLlHjzGpY66qpWteLVK3r9OBNVUPbTlXczkhI +U3V3vPu8Yru5ZETMeStmTowGn0PE4skRhvPmZptbEINhUqAs9QZUJlSv10rJdbJms+VM68xl3UmV +JlPLcS4WOWIukvlj0vwzqnRNyJrmvQMGvkK88lUdc+p4WEl+Sk3a9JWXYKTG353UXqb5MKxjGvLp +JN82BmCYEjdj3Nc43ou7Uj7mzhPEIKkIusl9wNlOb14lGgnA1xtQPfWk3TljrtvgrePJJJnTovLc +2tvH/f6UQlGQ4W+cSqP0bNWbu7zPVIEQYK89abW/xKNzi1Q5KteGkUljyLaTckYhMPvuTf5SF69K +UmeX+vx8QV7P98nzA83R8BjM7+fh6Gjn/KT2zPtemC4x151VMyHNd2sryc28c0Tm2XAw7BzCbfRy +QFXyedobcHzlzS1PmXfXh58HsunvMSbRlb3hp5Q7y/DoBMU8L5ULgTH1827Fsx8GwWr/hS2Pc4au +6FvPoXl+PW/+zbmopT+5d+acgxx3Gmt0Pql041fTOnN3VmIdacmoZvB40AGjCbdsDfu9JIM450Zp +THCTazBRSFDfU/cviM4XoPoaJPhKIkp+H3cBWW+/d245m+9VfMPENesaLN4TzXDjOXueWbyP4eiw +1QGWptY+kQ0PvWQa55oG6V7R0b5Ad3BebsO3VDEprC4s4KWGJwb9PLpoKIThR/k4r96H8iWj79ZR +XQbB2J5AWN8eGTlwVlkwNh7OuIsesDNqn5wkOfYZlTCe+s6od/ysPTp6HWcvVZ+hH/lursdjEK/2 +TIS0tnMIglhqj4Dcw7ikssiSitfGpc+H8aA0bn9CtO1ByYzLUMdL7TGC5Uuu4Cm6kaNcejkmlPBv +GtmX4bQEgeagBIFLLEWeHi3RHeDrxHqpB90pwcP0rQOQr9JkiCg6calHuUS71G9/waYRYASovQyK +xtPOIU7v8aBOhd0EjXzaADg0hdkN95PH98al6eAIX31UzryonVHvJF1TW6BIrQUbA6nBZjh0ro9G +yYXofedwerw3aPf6WYxQ2sEanu48c9OE0PN1vPeqF3/OoBwgBVRe2DFLX46/0APjH3nfTpprFvr6 +uWSc95SZoCYj8WCnUHmzLC4jr4wmmcjGCc1Qfd5M2I6cV6DVzgZCkcdGsX7RYlbP31hIfBhtLOIs +jER1XunXXBPQzlQ/37myJm3yjtEKl8HiG5YuFQbcL63B1zKvqel0MWNOiu8wmKet4Or640kZ/mOX +IV4ZJ4TNm6I5epKqF5yPud2fdPojj402RFgdEC1+m9b8Jo7kfmemgHres5yZZy0Ybqnhtk6BFpIy +OEi2Z8rB3MYDE396UedJizlabV3km7ybjw1Oprk4M3OZpxfJaNcUh3ndQibitOSci7U3Npo8Mi6H +k5GXbpqXC8Q9z0zcfEJoz/BR64d8490i9XBzqIc1OzPjXZdnsSstwYtW1cmxqk7ZjIIzajararCQ +Cfuj+OPUMLoZuZZRnZzTw8+3lxBnz22xP4tTuH9p9H+dr1USv9nouOgB9uwDzjf41qkHLLJlOQl2 +Z+eziMH2KQafb6OcnBQ4sxQsmpBzakKL7rDmyej5ZjbfojqzizqvPjiLP/sS2bMKfL5AZLX7Ti5r +68zYfW0+6e2Yi/Usu/V0Z0zQosVJe9BFltPKYTndHAvvzs7j7NGd4TQzN/OwyD69cFnWmTlql8Wi +G9JOSosAv4Z0sTFcsEdvUm4uPW9CPx4clfDtM+bus3nIaabt+6Q90J0kQohAj7Qd7CAvbVJOPi4Z +2dRaUqWQOQB2GA3luNmdTROFUS25W+1xglDZrj1+HPr1GEsE9K33y+aNt7cfvP75p/vtN3eeuDc2 +16sbo0fHh/cOBteeNK/dWfup1muXxz8GL39tBD/c23j56OEz75d7rT9/erYxmnZEs+E8C6/bnveD +ZY3rH+oHd6wfN+6/L9/aeHDnZLwxfurchcds3G9dG/GoJ5Pqwa+/tTYeePF2rffzw069XP7p4NSz +Wt3f4YGi3rx+T/zxaFL/8K7q/bF+p3I8bI0rj7cnh7cfBj9Mm3Xvx9fVD/2f8E9N1PetJ3tzsf0o +on3x6re3f1Z2auVXZz/VHHfv3caDo+a7jXvj8vHt+p3r0+baoy7+PQ9ar+Zfu5vT+v6716La3+i/ +ubdfPZzUDsUfdmpF/rpR79itjxsPfvnptUQEkx7X3h+8H8KnGx/rj7uPr1XXww8/VrbXfxjISbxp +d6fwmOjD2u1Oo+P/tlY79HbvP6hcd2/crj6/89ftjdpPL5u1eHrr4asnPxze73TaR/ipd7ux3zqU +j7atu20x6v34173e+yfdav/6Lz+tj27/Oa20tm98RAJubtx/cujCY4L7r95tVAadn45v//zs/l1x +/OfPPSHujvfdyqjz2L59dM/WKDv1J+NXsHLip1i8dq3uvV7tbhuYbD/7eW39Tlzti61jScPvresb +tccPfnjduBP5+M7q+uO3wQ8PRW34/vaDV92395y9H94R3oeD60DSw+DWD8iWt8Hr4LcBLtXD6tHN +YF0J6Ktuy7Lf/fCsfrf94Ebz2u0/RviYAL94T1hoCDzG2vu/xx79cvth84H69OB146kcX7vT+Eti +c353HoMEv7FuP3zYuOPUfzn4WSF6/fOD+90Pz98TN/WMAd9m1efHwKjqEz2Fd8kU7LWfX+Co2COY +f61a36XlhgT/Fy/4I/jQqezUP9yu7999+rHRbv/0YzXYe/lbtHX9zcvKZq26Vd/f7n3c+Pju3gE8 +pur9vrMrF/SPoPtHY9e+/arqvalsNusfXu/Weh+Cu/f3j68fNGv7t2xYw4d/CfGiO0weGG5/PH5a +2Wzdetqs3+w+lavDay1VAEVgclL+7fYvr9ofJUkPg7C9cX9n8n+VnSeT6WniZhbXWAlmxpvRNUa1 +DRq0WcN3gTX+6F4/cP568Evdav654ZIcPPjrQbMOMnLrzu3qMHo/y6/04prMZWZI8fnlcDyldUJq +zKV60npU2X1ik9w8uH1y/6/m2v7TcsV6sPOHc/PH9w/kTNIrEkxfRHFz7cbJzdph8OKocbtVbiby +Cnrw+5CMzXaji4K6Adp1fAOI++Fm7eCwMRb3Oy9fVMQfzutZPmz92n+VQv5/jxrrd/aieWyJjuKn +NXhMZedZ9zYYm4dRvdr6/WjefGmoMe7R72IflKfhWM4j79lp8ZlsNW9u9e836/4fzu2Hj/7Cl6Ql +pAFdnf1mo+6LarC++YpsT9n+9dUdemr97l8nt6ofJt3jan/waljZOXzzI+B4elsjOGncGT53mjfW +xdvKi/3Dn+C2dzeqwe3WoTKdN+v7P/0awHyHh9IkNl69+ZUtOjzh6bsdt7lx8PMbtPd/1fe8w9eV +l9c74/S4G5UXO2/74Yf++gOybolfwMckA4ZPrAfVo7WTXvPBI3vNMPV/vLjVNpcFfIthum1rb9pY ++/nj68TzzHyLAr02EQcwwXj71IDwr9v3H4/3wX53fvCr9rT/trL915Oa+jaq/LXx4NdaGYb89Qrs +QetG1f5julvZnu54ybc0GG0aQI43Rp17NyTLTEW9+/uDXzZrAyGetn+wnkzeblhP144b8E+3aj21 +uxX56Qm+j/Pp2puHAGtvmDD7oEp34GPMoW1159O1gxrf+QE+3Yy25E3qdn6CRCSxnTRh3C8v4NOH +uhyiBp+ox+gJ4igTET3muD6Lw5i+vuPJUbeupiPnhLMjLDAJeoyklFDitG5WtyVMYSO66DF4++wq +6UnPPrX1QK0O4JPUvP3FuP3JZPMBjHr5C/zztmKuJj1/7f0GL+SD34xFkEv6x0/PGcv7SrK4+Jg0 +t+bzNy8zZjiRPMa59ojXC6aqxr99yEuVWhE5LvlVCg2JDz769CTOoiYLW4gG+YlRqm9Tv6JsEG/O +EI9zZOOPay2TrkReTq8XfUGPmbdeklxaDF4Rg2ocPHddSUAMqtUaJos2SzjcpB6ocaSnY2irJPjt +w9RTEZ986puHUm8SlqVZK5cPUcrxsBjzVEZpJt6GemCKKj3rg+INDsi73AuFhlb9jSTOkDTN/eQm +qY8Hta8SRmKLIlguGuk0Pv1msMmfiCQkRNL605/pmPBWZefV00Fz46d4B/KAfcf0H1FlAN7zoNX8 +69nv95rXbpXRrVnx3r2QI4D1HyGeqR9tvP7h5UGt9353o9E5+nhD+jYjxvAnW2enO2Yscvs1pTuY +raUzHppq/WD95i8yJtx6fPPPxOml8jHrh41XP61FtcPpiz/qT59+rJokVXfjyotBfXNj+/1oD4Pb +/saxnX7MbUot7j23+rsP1v9qDme/vft/N99CovrqpNG5s3O3Gtxx1o3U0q7uHdTjW41fk5CLAqgn +0yhZGxWd/RluGtmdGVlA/ooJcNRvDvdl2HYKwRsPblsf3n324s8KTgwDKIjl/T/+SfKSIXOhAOof +Ji8ZMhcOB7WgriNxMrFOZcjvj5IMJuyXR78qPry8fqTCpjdPqhThJkuVoLp0iQfl25xx/fpn/Wk1 ++AmecHOv+tvG21vV366/m1CobD15ZIs5S2WmKiT9D4On5frjD6KdrBwmHrh4igWVwQ== + + + r+JVv7VT2Xz5FMQe1FTKaDKTs3IOuaQPg+CW1oNH1X5w8JZyA3hMkh6cnmq8WX90dD0GPfvtAZY/ +OvDpzuTRyf/tRdHt+97zNN7WGTnMg5+UsXlU2e5v3IbbDz7anRe/bDobL69FKp3duRXDeh15C4oD +zh9HP9QO/7x2D2a8u8si8K4MBJfRClSPnt2GRGVr39OKcg/zhvfVI+fna8kXWuate93jvoWsepLK +pINq80Hjz7LGIprv3936odkYTFE9nevRcSjl686Pd9+GotN6Uv1ta2PLufn78XM11env1yu/Pd9+ +hSk5f/H6g6uWeXjDEkfTvS2rdVLuPxpvxqOZR7N6zjz9Wz8aHqMls7kxGh2+9O49e/0LPeG+9cv9 +vzABrFn7Ue2xgXzzpPpr1ZtWLfvOy/G1FB/evq9E95+u6y92vI/lXkVma407G6P/e/Jr89bNOx6Y +rteQAN3pDsBdvWg2d29eO0Ra3Y0He+8HG69/u33j3uHt7R54w+gDibthq0+VOn5drz8Z3fpLSdpp +ubnWeCiHak1OYcumxk5QuUEukWo2izTZTeqU56uxMRNUY8gWh/u13rgXUPlh/S0EFY2PtRmUGaoB +Bt7froEzZzV27Ue1p30acs8Orz1HK3Dz961J5envdlfy8uenz7v17nF0h0Vw7f8gnf/Fqtd+/UE6 +p/XhtYdlWTCQ1bbXP/v34r9uxGqpft26W+2XX9iAdHtAsQg8Rj7z+cvwXWP3/fW3MP2Daxsfq+/X +tAs71NIHNjj48TosRvQYfdBBY+/uH710ZEP2+y2l+MqFtw4wgBKvn51sp/25HCoeuI248X5zbxci +lvtoe/ZvNjq3rT8r3lr0G5jC16GMD9Tz3R82Hvzy8kb98XHvbdV/9aZc+e3W1kHlxc7tJurN9Ufv +RPXI7o7MAEY6mJ/v1h+/bd3CCOQFDQFb/WB73vTDnRs/bjd3f7jxe30flqzaD3+8U3+ydnONQp7E +ClB4cXD9CCQj+r/7+z9uH855qgdu9cW4cftWsG/6O+TXyW71/carHycT/egWsPngWjBpNTEprPo7 +5fXUdz9dsx6/ffRA4dAul+q6zz7s79/r/fTbM4j17lSa9d9/vTWPuNQ4/zY85v674ds/zxv16pZ4 +3rm/OTPkfvz+5hHV3e49P7jfa9wZ/mGDmfTtyrbffPfoeHLrJxz3QRubU7L0wxh8y7NDGd78Erx5 +VHtee/XLjICovY/RtbcQUn98AZze+GiEjQqVVYYVfo1/w4D2T+bwoQyK+jQIfm5+/PVBvd/ykwBZ +MfL9D9fq+9t/DWu9//vRB/n2NiuDh4+H8wSJeIOytznsnETP9u/alc17jacb96snZliu5vZgbWO0 +Hk3/f3ff2Z06rzT6fa/FfwgloYNtOknoLQnppJBCCyTZKXTuuefL+9uvJDfZlmwZsz+89zxnZQOG +GWmkqZrRQAldKmdexxe199wgXn+arA90JM19Lf0dYAv0uuXZ52UIEk27ZRQrCr19UYcPhlU8wbZK +4TidIO2S3He53ilncjfInuzX3q9XUEmLUkMab8vbqJZfPxrV0sdNy3fMn5Rz8e8y+Svl0FfpvnMy +bBzV1thwgFz2ekr5h8lHKTtf9lEok4CmLgRDaL3AXrr6ZJ2raP9poRw1f85/w4VMswX1zeLpsKus +VgJIzfoKhvivwR75Oijdv3c2GPBC+nRTi92Mo6X8xdc3ZrmDP520pzGtSkc3Ct8uygI8iqj8An2o +WQL/T/xz0hvI5J4kcYq0Lje1Vm+1qkVGjfpR0Ld/B3Zkd1H5vSykjJvm2gPU2fcTMqAO+QAQesl9 +YMN14rX3zhL4g9z7L8aKJ6vXQXO/4T4rLb29de19towR9m0O6NGPIDwcemxU34sJlY1k/wZaDBkY +vhVNr4bv8esvJ6S+P2vNwv4E2B25tBi5fbt/WilwDxuBk/EDdEBfoLR4rE2OetCR2IRVH1E5JkqE +AsFsann4AIyl5lf5kq8kgDde/C4dFeZenCll6wi8GscxQnKryFO6cJesl1PRs2soMngCGvQtNNRe +Q+gQlZSn0Z7W31JTgDoaCxLo5S9nbs8bYB26V+VZ+T1AQQOof5alwQgAo4r7yJ+HE0C3dg7cTCyr +2f3S2tAYQInbc2vAzp1pmROKjWuwtQZc/a27TNVKrflC/nJkBg29tLibmt3SDzp+lE2O8PHp0ylG +IKCGXis/mZIPeRrSgWgankxkQhsoOm7y0fejpTJXPFZx3gpylZ+f+UDn52M7DVPlo/qIO/Lj9r0E +Mi0+KP8MJ/BMwwsPe7jyzay9rkUuF2PZgPreKMPW6BuE5qD+5km/Ak/HvWzUszctvQWyaN20kTt9 ++P57cAC8+6+0aiIRrIJzIL/rMbTgEI2JoXH4UA9f+sOAhr2o2fcK54Afz3wAdSNGQg3QKNgfSkc/ +jSBuoOuh3dIZEPLyonpRzw2QggkXVk85VVBC0QlndRy4DnahB3MR/+vNH0m2rvytRv8nngYCM/1T +yjx+1MvZ5moND9KjjcBp9L7K3/2uDif5g18w65sgjrqw+EXmJZLQxbeJVnRuytnR/APTEEj8Pl0P +W8AInHGH75vJUi+IZ6FaHPuFcsaMdg6Mciz43C0wxm8bjdIH2Oy3m87YehunkWeMKAG9hHOwhx4E +YKQcnZdvIyWwNh+hqQYN2qP1t42nX85GYx5oKqZ1mwzop+mkkvwej9P3d6/32Uyx2qp+Po890AXz +lI6uE73a2dmRRzl31v8M2mmN4UG9dPh6ByzSzHWYEyKLNyD0n76BGn6fl29+Ug8akTx8LK2Cj57a +2WkC7H5vZa7VMiKjKK5CGhIL2tBIYKULi9Bp7a06/K6F/sbfDPJLEV2K1FIE1osmueDqKdMZeJfQ +IwuVDnvcIL3gVn8hmq9SLIvFEIWrg/BxuT4GHN8pP9Q+kq/fYKnWJSyQKX7l0v9aj6Yzf4GIC3nE +WIkst+r58fitk7/ojTaNwevmE2U/jE/8UH69ANOr66181/xf9ae30RMB5AwsQSvaKN+4l1JahgYu +lPMdID+bp0hgqk+h1Ym+ALb9IUa+0ePkpvL1VWg1O33gHMvuNKL0Y304mIfBos3ymbte+FYOgiJ6 +PfCVnyjfaT5lO3dQ2A0gPIgGuKuhReOo8bYyp76yQCtpmteBNdwRR+m7q3EcMO9dROviA5UQbXjT +y+tWEbm4/uIBDCN/Aos4PQR7/vq89voVq+i+n70EGlxiqMzTU62RLTyRgafPPivXZV+6klxN05lM +Zz4mh7vTCi+91t4r6w0K9+Jb4PrF2wicVbLly7PQA0zU+Qv2kH+tQ6hyJFyb98rSr1PgOKDeWb1R +Gz0JNBij0uHZJTCquMhj7dT9zmkC79fAejlv+JHv2Wg1s5cn9ZRMAjzin//bi3yUO7VVCPOWgFr7 +hS5uSIs616hWEgnRkRGjrvCz3nsdommU2vxYq8fqR5FNbdQIdNyBzMPfThcxBVAY0a46wOY+YGQk +GdIPsSJfTizH4mw44a20qX14X3wiqFatfwpl2lvqLVlJl95i+HQzk3Tmt+f7FRXM2UO1AoTS/jJ7 ++eQOcu/96Hn8/GWRgiL5NLlKzoCZ+RqKgOFcR8HUBxuw5z/C+3wq8Qz+5ODahOvn4RwwyytfgD3n +G6AXgvf/U1BT/bTJdTV0HbuUCWisuoEuhtQMT9dxDiYNiq3o4AUb8kPXH1Q7hH9ETtYLF1KDTLh4 +P4pz8fB5KFz8XCfgKyF5dJ1PKA+ulVfowWGi2FlXgLHQ/G55b46H0NwvKE+B1LpJf7qDidaxOxr3 +Q3/fHS58H7mDF085d+TzL3g2eI+5w5v8rTty/lhzR7lzgYsfdwMIf8pdDV4nV8IK6KdU7TtZvBwU +EpVsIgus3t8nFPxCmWLqU67Vn8DEluWycDwqR+YXp6Wz3KqQbR09xBqzp+R9ffnyxNWeGt1O47h8 +/MYDY2IqoUn4rsPVaOgGIGynaRMWpxRLtHM+SDTDt9qr5fJw1QFYIidcPHkrTkQd2yrbWN8Lvdn3 +ATc+4BHqSxXu8pVbHQHg2U240HQfoKmLa1P7jsVX2WYyuzj8Am+bP+Dn3ZoW68vy9fzlmoy1meml +8ie9GBFrz3cBTXAdYhVr+u9Zc5+M9cgdWK74/SUZ6xX/kvQI+ZCKFaaFKohX/sh5lII19RkY+rt1 +MtZk8CV8JHyQ5+pp9OApk/du/tMmTZdrVM5KFKxpr2+6DB5TsHZ7XOP94lbFKia5Koib7qMD/rTf +IWJttoQOlcLCU6EzQFjBjhzVtesKs0+XL5tCGyIOGpc20E08//BBgDU5M2yoNleRsF75/TqsqdRv +f65ixTa0iLi/fP2cdihYS8N0puHjiVh7xcENDSuMXvgSgcMX8nSP3K8r7+fkhoz1uhosLHy/bRLW +8OFPvqBihWuj3VCh4lPpkow12e1yjRx3QcTqaXxkfDe/wiUJK/SQG6+vDcp009797+l5lYZ1yDUj +g3sy1iZX9k8CmS7CCtDoibz2RooS1m40oCNy8SJ5LFG4/vLd0GB9OuLamSgPsYZ0WAGalac1maVv +hlEBIM7M9du4/fw0pGBNezPf40aPhrXGnYdecwgr2mm66Z4s8qWv5cUNEevtoT9BxXo2uU1wJKxI +ESSfo9xtP+ghTXflOWtNLp6fggEi1nv/9IOK9fbzejBCWAEa43Sfm9z92fyIjLWd2L9rlI6OyVjn +px4SViihIeL7ftOzphD5+ZJ7KJ7VyFjPC/V+7/r1lYj19fL7BGFF+sY43a9uatygYH3Jcq+rnygZ +68XX/Pcyl03osKJYDETcP4lOqURe7t+G3RSs3Tuu/vf3lIg1exH1uEuvUZQTOD7IL/TMs+ln+hLW +USKoY57gU3sYQlgFfyHQ0s61zQ1C+TLEGlGxQjQQMYD7tZB1wPFSj3U1OziWsK6LYd1c3S/D56CI +tdLlT7RCMbJc3RVgWAEijhkl1EkUTRdgra4NcrHlSYtYi/xZVCcUI/Pkhah5Er589QxhRWgkxL7l +cjiaQqycDutyWZ7M5G186tZhXaW+8pLmKeavYzoKe2aTQUe0bICinQz7ae2wWncHvVme+rR7zf/e +055+cq3B/kZ9alQEQBDXDig/B+twEK7KA/uaZHRP01m+35Gerr6zRvZMTz89j6QviBLy6iT/Qn2a +FUI3A/rTz2HPrxLN+IWycPD0Rn3aDk+LAv3p6PL9UH2qJ1rae+l5G7UoP8+2DlpHdyvx6bt/kdP9 +9i78VzZb33lP3ki0u9Hp7ZT0BVHi1cLfS+rTh/1R3E1/+lLLHytEI3xhsN/L+KhPv9ZX8xb16fe9 +ULlWnxqJ9vvdKPRoPwdjuj5MUZ+eCsnCownR9t+mo9s27ecH7oOTlxD1ab18PppQn54KRQ9vQrSy +W/AF85SnqRZXPw7Js84HDnVPw53rVVF6Wo0dGdiz1Rk0Q2X1C8DLjtxofbQqN/Y/Vw== + + + JVE02P+BT+eSy9rop0QpVJmtLsRXWpkmrH3QC626o6e5LvBCvzrwTwx+1nBHajdV+OcBuXiKfydK +Cwnh8KYiS8GlR/AfX0Ul6Q78IK2dVvAm/OCXp7+IR6ArhHFG/Dw79QNn93ED5KznACB8P1IQeuN/ +j0dBIKg89eVmEItqZO/SA7OBFMTIFaJgTXuhH/RMxprsPlGxAp3yxevtNHy6yBWiYoU68I2GdYxj +Td5CTxpDnL2o3GJYxwcHXhUr8g0UrAkdhaFvoMy1+aPBGuyKLi6OWEPkY4GKFfkGFKzAZQS+QU/F +Cmejme4rFSsg8ipJxwp9AypWgAa6B5/k6R65Y2ZY234qVmRoqFiRFNAghoZGR7O0k5yMH72SFiNY +fRr/snyvt/mdaqQA5atp76JXf7y0/F7qU9p9ktyogFm/lGXRaWDiQeAXEugGC+YUGpulJGcObks6 +3ocHRhH1T2EeGHcknx6KJykuUJgHj+YKyACCUci1fF9oHIVc87kGhNiwDlEnVDEl4S/U96U/kfOZ +hAFZxzIG1eoEIwLzO56L39IFq4AMrMQ/J7V95c8Nbk1LMbZL5cs1iKaJT3hwWpQjUGDQd1fgkwNo +625CMoFEq14Sztgcrg60NFRCdGDE3Glqfx/9gdvyQedGkYb1nTvRDQsfU3/jBzv4PCL4ixwWd9MF +EBHVoeh83VTOrAgP/0jDF51+wgz9buoMUX2APEn0h7qM8hreeqzX0KvMMCTvNNIkoV17Z0Iv9jWc +oV0qOR6M9DKBxocqXw0qKLTTLLe9TK/DqK39pW4urZIW91fzZWGf+kTSA5PnSd7QjqkvVJ5yp+ak +R0Sj0EsrhYJGKdSra6VQgiqFkEwzXZH6y8kSp6EyaA0ND0QpRCZfr44sG4nIlBFF6hHxj0Q+fkom +XzfqpgpxKnuiAB5xcl2P/clp1BqaX6J43zm3Infz7EA6iiCOpBbWzUuj1rB5Ta5iB9IWMMjUOkBz +P7M1JaKwATsIeHyPGH0VfsS3+yB4AEb3WKMsVWTOD33+FhqEdEawJW04uuL+nIWP5e2Db2gUASJD +41mhkUAh0uPHRCEjAw4brAxozn1Qew49jxvTBfXykTs+Av88h7EjDsPeAGIyUD8jLSkkGr6q8A9Y +VTWCbdwgYIaKSDRukMtrZUzYwMTZrJvEsRWaoxVtmiVusr6LG6wz47JgTuF52Lgs46aVdcYqhb6z +MA5N1VQM1qT6ZWDjPK+pago6HjYWuQnJ0rJvVBGlwLipldoEep3PVF1sMqZ18ZSuPS9vpBGx2Hpg +THRDT14+UXsyLGPOZ25tWHoEmmWc7ptaGzbWsHn1q4KSNrQDaLdThoFB9mSCplUwdgemHBZL0Lrm +To6daeLWnnOi9Ze7JJpWutkc2FwXsxlklgbvdl1YbWk5a89vwIhaJIeRZusSdbZQefx0W8k0zPom +s+e66Nkde1YeFz577rR4smtYzRY8cWmr1EEOu30CdT0HrL6JanXqCVRYKZraMt5AthhbOvFA5hvr +pSqszL1A3UjkDW0cjIU8YBqJ3urcjiwWAgAbieRJhyk666MFY97PNlx38WxTm7+kZg0Jr6tRDAuF +g1cncO/XbWCghD+Aieg2s2yIkoTCKCfmtojIN8zD8m4pCnSiE/Le63rfXFOzioITVRQwxwXoM/Qz +UF2KqlsSXmNAWEc+9GY+Fh38OoFHgw+72Fq1NV9/XTVVGaHNtiN6RhTXHbDAZ4J1l8qHXmb0Ymd2 +qlskulGAXjaZXUMvhdnRLxK+3Hdcy+mnaDZaZic659axKLB5PYzBFLOgw6k+kKsfjlkgVx9M+T3V +2vcU19k6kAsmhzGUvAVsR1ROYabDOWsgRHWj9IM53Wg19RaBELAZFgKakpgAY1gy9vXSaVlKkEiy +02hxvd9TeE7cdRQkgoRhiA7qhAIltgMJlGbb0JgQ1YQk5hozu7TRm9lgM9Djj7KEZrC0IaXP9Ga2 +HfJJdhoa0b75iFgDEYniXcav2xa4t2ZLNZ7prOQt+SZ/HTSfnPV2P1O1oapvtghjz8/0ipA2JfEI +j7bjwQ7SqsFtREHxbj+lt9O2pE3fIr4vR6AUHqWZuYBAOs1npZdwM1eaDab84HmXH08KgfMCn7Hs +CCr34Ru6CkYUsxctN8768Zak/nTHq8xHmQAaLUpLCtFKjgctSguh2eBCskMFmAegcXzEgVbOXAeq +J4WWgLTOpr3hyCfsIiCnrChCUTxOFYoioe0Asq8I1bgAAZrmoNGeWtWeMvpFkyMS0BqjVZQRu5Pj +iSpKc1XOb8z4kUH9QGhCzP5JIcWygEmjISZqYoZpfqFVa3rptvoOGqTb6lt/DMgg3cjBlCqgTWnh +VLrdqdJNcXHt2Pd6aNbSTY0LWJxBQWjbSzeVPZv3sx1IN7ByJOlmXwoAQPalmzHKIQJyLt0glB2c +4iJAJsdJkUpAOQWKY5aNJhKGa6X7mZmfjZ9Akg2XZORGl9cJnCJDVB1+5vQoV9E37/4FXSQxWmxV +wPGXaxJXS8F7e0IXQLt325K48MSDJnS3TKjQcvU98ri1Dvs2ZgtYOV3CFFXYWANiM/ypUMSYDQDk +PKsCQaG43fqDfGtA2jN8xrA06SgCQdtFkFtUjmCGYWRyaPUj+DjqxPrHturQc7Ny7hQ+PrAGv/Ao +B1U/Ptiy/i0itxCac+v/ZUFSjrbVGlw5+xEwglqDgJxY/xgURTk6UGsIEMH6J0FRXVwKIFb9aK4c +RWHzsnCsHzXKsa8/chbRgI93kuoERRExy0vWnprULDW1g2of9Jcmy4JTM8JyhPf46CTIrT8jANCc +8jk2MAKTW2R3mxCNyRKWVxOhoblMYEFjTBxvcgxbBSS9x83BbTL2dGOibgsxa8iSz/SaqhqLGtRU +NRZn8z0ZNJVQeRxTMwDpqXG0uAAYm8BGTQYmG612mNoLoFHPftTQEGseP4CW8B2etXcSTAFEy9iz +OyiJjnA1+zG2yK0IjcL2XdNMX3FboMNitDOYhsW4LQxMJitpkYlVBVdInU+Jjoe0Dqhub/Xhjk6v +++7Ifa/ujpYTPVjBVyfV8rnEi2acl/Phas1Yy+fSFS1tXc5nXssnSugdlPNRsaJaPhe1dNFmOZ95 +LZ8LL110Us5nXsunNQcdlPOZ1/K5NKWLDsr5zGv5XCali7bK+cxr+VyodHEH5Xzm33NJVd+Oy/kM +HKyp5VMdD4flfOa1fKKdZl3Op0mANql0u/I3SJa4SeY9vRhJl0TDMCZygLhmnSseYivaaug96a0T +b2t6w5gQRGAOED/XtBaAveXDTwpr+iyQrUl1GNJsWl31qqL3AyxFaZOvyb1VvEV3UmgGzTzLi22G +YnTQqoiPeYa6QBeBb9gJH7c/JmJVBByWeaDLbEyk4j00G1v1e0xip67LL8GyhuyVca1t5ZdI+WnE +FBP74WZarFm82MxxeKsb9ZpPTvHWrMrutAmXdkOJ4oYGC+800iyW3dGOfXRulFXZHd2JNT+twEVn +3TTFROO/WnkpdV0dhUtTwMwGTZvgxRtPfEbCwrIQk01+DRu2PGORPWnO8ShBT9W0VfTqQlV454w1 +kNYxAEAv0sG4aqcZY21Wscbv7FwXUQG/vSMm6G5z6NWkmmPUYjTcgNLXo1maY8w1hRvLzHsbNYUj +y/obrybGRa+RoxfhmJvZhMx7//GnlzasEqlmlL6G1pn3zGkJ46Y26klcQxdrTWF2aVWTY7YjdCnx +ENrOalaX6rkJtTDGDjTrjW+DaNqwrFOiWRausk9TlW7bEU0bLxYqj92oNomqpUvndxEKytjMXEOo +2OiHKTx/Q4l1mpfu6WBQAHx7dEqaAGMg9Hj4Z2DK5y0Gf1B1Ci38wY8Wsz9IA2DIhNwChtU9LmCt +Xcr1H2xVe1utUp9j0DeyoUNmD1hsZx2NcP0xjWXD8jiKn2fY/WbVerrcQROKmNkzYErm97PIa8Nm +YeZXhhKCQG3NQHX8YIW2ob9O7MWCCL6UZEBZ1OoZBBC9LGtNVPDb2GknrLyvMj7dTvs6sRcLolf8 +GZKTtibVp0VIQuKbAMM+sBm90YxJ49/AYQl2IiUmY9JyNYNaMyFVknVMFinx1uV5ZmMy3DIS08WN +xbKoXURvTlH0xmkaHLCSfQzRG/mk0KJAyJePHTiJ3uBxgVPn0RsAIGCWMmKjHm6b6I3LULroPHoD +6+F00RudccteK5i0Fb0hnxGcMhQIsVUHwWpBwHgMG5otRRA2KeG0hvSZakib5KqzGNKJ4l3Yy7Aj +XOYVkvOz3eRGoLXJX/t3EwECk8sHrDKIWerhtsya1+gbWMlGj0XZKGMzJEO4iKWLViV+thN0Ccmw +qMSPMSfQtMQPK2bVmRw2007OTO/XwtgYtzpN0wGvjPerws8YNZ88G2rS024q8xCaXaTtmVfmmZzi +7rIyj5h2ffW768o8JzUeNirzTJNhd1eZh8LdDlmRoTJPPVixTkJ0UJmnTbWSf+TfdWWeS3+Xqlic +t+vKPOxA0lqZbV+Zpz30Ykjp3K4yz+Ct0c6FYE3dDgr/ocrbWeolAKVNvaRanSypl/czptRLSymw ++k44NQ2qKOeCLeHSGlDEcgswAmKpYqFCkew0BGgHBWWG3AizzHtr6Qbr/OgBNGN+tQvr5kNJsfYv +QoYUa//CYjF0zEgPDT3eO+FHtf4JDz845UcAzfQaHKJMo/Jjd87Kj2amOqS5PZ+SuN12dNUxAmSP +jcguLgK0k7rMWpxRrVkCot93TLsKjJbYbbzv2PI6N200W3eKOwhGjCEvWAVnfiOVpdutxGzeec+2 +aSfYrGm3Jm8Th4bQ+gxlraxFskPPiCW2YFF2uJsi2ZfFjopkIaCdFMnCujXnRbIQyk6KZCEgtouu +dX4zMXcQMQr9Kljb+UvBqLwFtPz46JgfdUV5FJm266I8sY7ANFdoF0V55LXZeVGeg1inlmjmLr4d +39NBUR4eTxPr8v5JUR4p/PAPivIo8TRGD65rZjHiQsGF3w9tVn31SU2LZbn9XmenVWMWfhNrHhkE +lWILQjIEniE0+v18di0bwxXKdk8mXFipfJfxDMjs5mEg2Ek6EENjXXWtL/F7oV7go9cVSkiVoC5U +Toat9CIkhNI6oBaghcvP5s/9sF/zjjf1Rs5X6jU6hat6Kb72Q0XQ6BQzXdRuvfZUX5bKrXTntFqJ +vVWrlfgZbLtwO5f10/6PdtBSfEpbEUaqfkNulFQo9UwvgMte56/wTaYtuzt8uzzHg9YY1tRnaP/I +PXPRiv2S3UezsrtxnIqVa3QqpsV++5d/z4c0rAMTrM1oDsOqrwjLh1d42E5fdpd8/GwrTRt1pWie +gFnZHR/TYXVp+xQe/tKK/dJe7yK9eaGV3T2bVb/9WhT7zTodKtaD9uRzTMM6sehTeP1Ix1q/eG5S +KeybJg77NKzQuDUsLWBdaeLolbTd84zfOyR9Two/aL6afGkzgUwGr8TvScq0nSaYqA== + + + F4obVWhsfvQ61izmzJDfqzVuw1NpNppTpquD2W6KixiSYfUBFnpPrwXDmPCzNZNhWeXBWiWPSC7u +LtvrkVquuAg3wDDEosza69kL2z3XmDMxLYozxRsubeQOWnXWM88dZN9VFp31qDM0nN/UGBqtsM6Q +obsCM+Gteqzob4Nz0FTPBt80J/R+TNTUWtaufBYB4m0K+7aM2dgt7CN5CXLYboeFfaz32Tgs7CNF +EQ1847ywj1TV59q2EJNe2EcK41MS/J0U9mkIIzGvelK4s8I+EiiXxWUmWxT2baukbRb2kc55VO25 +s8I+UlWfJi6wm8I+UlUfa9aQjcI+UpRednF3WNhHWmExQLzTwj6SyaPJUt1NYR+pqs9FuVrfQWGf +cUyfXhMDatvCPpLZioi228I+0hqSUq0cFvbpQVl3YN6qsI9qde62sM8G0ZwU9ulAGU7Yd1TYtx3R +bBf2mVd67aywj1L1vevCPhIAiGbHhX2kwxZ95v0OCvtIgkLn4u6isM/qYGVHhX0M+mYXhX0kcmCm ++q4K+ywLynZT2Eeq6iOnjLR24iNGVR8RI9rXib07p+g9zYw9PHVuFHP11cKC7TX0T85oJoeDLn6G +Ma3RMdGuu/iZmBxspFqH/bZIpdJJm3AJi0QtrQ3GfaApjXBRyrFpw9KNiVUoKKdRJsPSnm1tNSZE +NDAsW32qzcZEzs2gCxsTUpn0qabIT6TWtC5TkT9d6VymhC83t+gIbx7KU9Saaf8/x83/XNgdXYz2 ++jbN/6jCRtP/b9vJKde+uWgFZWw1fUw5Fxb50Gr/P2fr1ezOXSxtdkyDWkzN/6yDkJA2jpv/yZaN +ef8/x83/XGIVnkX/P7bjp/nZLu7oShTvePOFtFHjcbaz9Kf5mWqOk9J5mCd3HGTdpfRjIti2zzLD +0WqXwoI+6GKbB++ZavpYMqghGqt6R3pmCHOxI0RjktxoI0kNEogaLNRtaLZ+YwC1168vaYJXwVJn +7SLdakU7MGpe/W5ZX6ZNtQJbyyIHnTnVCoCyzk9jTrUC0BiTyM0zqZEg3E0hpvOTFNhr0eTWc3kL +MAJi6oFLgoInjt3ughURFEOZvYtYwGxdaY+gMVX7Ujtf6Kt9b6fGat/b6Q6vN4TQdtL3WdxpYLws +gg1XZlRqdkjUJK8N7myaZW2HjKfDsCjQmLJt7rDTsrYnq+/dFMYoNzvbNy+MoNobJquTpYQUPLii +nzazS4E7W829qUd4sBedYxtDhGKaPmoD0C6uMRABOe3wLUKRmVHVnraaEemqZy1LKOwdFgfDBH68 +ZyihYAveO+7755LrPWmt/7bgR0K+hrVM20nfP7qpLrX+c7jdpL5/DMUXu+j7x5Bns4u+fy6lgaBz +fjTp++fS1kaxVKds0/fPZdYXF7b+s9/3j/n6dliC5bza92WhGj9UF5e52hdAszZ+FDfKqtr3ZbFl +ta+hEDPlNNoEix3PiXXamtMoRkBbCFFDlAMB2kmB6TnH6K1ZAqLX5+oKqRQDil5LBbsI2qm+JxVS +aY5XoayIGPgxH7BYDIYwmEvuhcdYS8VSSOU/7um9VVytsdRSaadpEXBVQalrQ62lygeYyudNvXuV +PfMBFvZkKaTyH0/1hvnWvuejrUIqanIS7CtponztWYyPLqmy2EEXAp3FSLj38bErotlJ3W01Rr8U +Dfk3dvv02WqGiahpYqd1d3erVlc8wttR3W2XeqvWFpbNaGWrGaZVA8H4lnW3GKMqqR0uhnJs67pb +MCb2cmyzulspXAQXo50hI5RtQlh71zru1L75aiV++lDzTk5hdLBWDN92jmeDcBq8al6hUsPG40tj +LPgLnpqoiFBEGIs5S6809YAXxRscq6YyD6BZee+7V3hkS9uaLl997lIq84L0esDlZpDndRJaVxLI +hWiFiGmvL3MTfKXVA75QscLZeBrzBHW6XNP7dEfF6j8ZxT5oremCKlaXUlCmEvkqJWBYtTVyK3/m +QO2wmNAVXQYDxecfElaABhJZ34lPUxI41Bci4hQ+O7qiYE1795MXtQEWudUX5/VNsDZ9aTrW5rX3 +iYTVhXrhZVuaUk891huzDotn93Ss9fpdQ5s4BhD74BciyiupKnQTOo5rtwDle4kqR/2eC6/35Aah +fJkBZDg/W9dVxQlm3U3qzVHlsEcODWn1adUkvqxoPsbsTEDXVBAdJ+GWTY0hQZNBXQPgx/riKutg +Cr0sypi4RR0T2tD0YVVZ6qusi6tWrl01pkFxYKvGNKxxp5p54hZ1+WTLRjOsWzs5bmYFgPqLNB2U +x1lkgop0cv1h21W6gzO7M1TD3bAG0HYLSsqYDDlgBr5hJrytHDCAxmxY9PiyvTFB0UlPA5NGZMjD +1Ymu+kshpD0JrxM6xmznaQDgJwzXe1tFbnv1Xd1E2Y269cJm+4oo07A08zFRr+7kil2XWiFpuPdu +q7I78vk3nqLIVJK4XURam6WKShKd3q5Luu/ORa1bs/JqjPfdmThIlHiaNhWFcFg7bNhq8WAibBo7 +86SHDYOw2fYMXaz9ozG0eOhl3dRPMzb9GYF1jM+F+hRSIzDJhSEj4Tu7tG+kUBx2MK9H+hmjvYI2 +Yx8PB53qzKupXLYqvXK2rmLAxqSvvxk3zWLOlqa6ZkxYhYB89I3xr826xG8fQ22pC7+jy6Qu0aoD +tMUaYgf546Z1qRDzjtC1gXYR2+zYgGbVSMhvKPk1gabTMg6JZllNxD5N7QmoU6JZthSyR7R28oUC +zVDFTDIbZaJtWZLIWo9oVX9jXajGVI9olhLPUJLIWo9IiEPbKUlkrUdUk2G3KklkrUcUw91blyRq +9ouJF2rIubVXkshaj4iItn1JokpScwni0lZ62S1JZK1HVD3prUoSKWMy1CNqzj3FERnn5bxZoYu9 +SZ2TZoX4bP5hs0Jj+OGfNCt0WTWp202zQqlixdxscd6s0PVnn2Av7rxZoTFs90+aFRJTFHffrNDF +1N/TSbNCTfgBDitNHZZEJauKZXq3Q/PCGBsND81DEtbZdowND9lutXLc8BCb3C5utaI1PLSZA7Vt +w0PzboekIORWDQ/NQ0gUh91+w0PyFjS/1WqLhocMG3oXDQ/N003UQJfDhoeWBWU7igObdjuU9Y3j +hofmk9NHObZueKgZiaHboSbW6aThofmUiMmw2zQ8JBZHml7fzk4b5updOZ7muOGh+b1l6gm7w4aH +ppqvKqq1HTQ8NI8mu2xdnmXS8NDcHyanXW/R8JBUtamy4PY7Tdfw0ByKWfjBVsNDcyjojGAXDQ/N +z2PU8IPDhofmxbwufZHstg0PCUYo1u0Q99ag1Ni64aGOHzltt0PcuN2iOoZTGh5a1+LupOGhebdD +dUM7bHhonuKNGbfOGh6qZWSkHakGU+yVXBgaHprTUDRud9Dw0ITnVt8JxqNv64aH5lAUA8ppw0P2 +PoWOGh4qUIhsZLuUxNDw0KTkwjq1d2K34aG5mQ9ns5OGhzS1fk84kNyujIzB1lcOJK340arhofnZ +tS4tYfuGh1qC6x3KbUx1YsNDcyh4no2jhoc0KKztdxkbHjq8YsKYAGKvRaGhSNZZw0NNRNzQ7VA8 +WNlBw0OlXsu096rjhofmxg9tp9lueGje7dDl+LopqeGh0+ggY8NDllrcHTQ8NO926LLdp3Cr0mC9 +6DQ2PNy+VB/rdoijcdTw0BiCxrsdKhJ6W36UGx6aZ4/p1drWDQ/Nk6j0EaitGx4S1gbrdkglmt2G +hw5inVqi2S+8ovmeDhoeqkKM1O1w+xRFXcND022BNz9x1vDQ3GKUXFznDQ/Ni3RlJe244aF2mvpu +h0Y7jfkWLm3DQ7ppJFk2FrdwMTY8ZLNsHDc8xFfTeABErljZouGhua6gJ5HbbHhoriskWyBOUBdP +Zrbb5R05jUR/I9aneDukXnuCj+kRYfN8f10RpWZLKTtNPf4pHM/xKn0xlCXhCmh0Zmym0oaLX07S +CkkvNN5qG5b5LJfC6tMN1MypO/x84ePij98Z8VuwqsvtOy+cxLjA1B1/e54nE8vP00bh5zV3fRcK +RH+D/sqiwrU+LsrexaaSdr8MxwnwalDaT2UPWwfnl4ub1OK7C/t4ZFKx5Fv2vPEYO4st3al2Mzmo +3HzfFce35+mHz87kIrW4D0zefQ/lYLL25encnH3nf44eZ5NiYLroZxb7y9I0feF+uCj6fYlAM73/ +/nxyEtx8ep+Ts5dJXpYCqNq0cNe5vXfHwr2SW/hY3IePEv4S16icVbjG+9sp10wf3CyXg1xguco+ +nKy8vfRolRo9XymVn53wcTz6EEu0cx65AO8rvly9zGAHvpxXNAcJ4kRT8nr41O7nym/Xc+h2Kw0y +YbvNzYDfD5VL7VMSvRA5wITXB2htEj43dbqowDIw9E+uvPdPnYJvuow3DoTkx8b7M3aPYW3rqVyu +6t5E5skLmBB3PkUVku5yo9PZ53yTsRgXuJppDfq5jo3A5K6qWP2eGqXFJgdEHIkShfR+FeYO1p4a +k0fUYrT62rx5TF9Ux55SfH10WoqvxoeNnPf7qv5QSvQA5aaF5s/940u5lXaPAKD7hQxX7C8a4MPf +GVhY2e2VDtvuJZpX+XeGNnT57OGhH67fP7bgKzDnq58YLCWOiO5/IdVdIteKi68DML+hvxblcjwV +88uv+ACKOQOaZKbgbSaEapGB7DmZg7fHEVHYeP1ArT0vwSfVmPzLRrxRF86zAG6LC9ci+5tGoHVy +wkf8n315qGdB/EFuPVQehPEH7fAbQKM8i+LPepmJ8iCOP5hXP5QHPPagWVnAsoaLEP7ZXWCEvixu +gYsI/uwjOZYBXcRQ60e+5StxUEP4+Fa0kYAPeCCUZt98q3gD317jwEcfYUjc64j4lTdfJq+erQG5 +CDdZhX+LHvPwW3FYPPXLvxVPIOWuJbhv13cILiy0PfJCgodhyTNSUz4hGE1C36CDEUYIFkuHEppD +eHx+U/mJfYTKV2/v7drZiftW3ZnKmUJV693ua53SihBsNY5I8OCG3hbkdftYAVlJra98k+brU/aj +fLvx/a0/ja84OC8e7WFpQw+E102vVP07jPNcvNtLyJusk8RmXytm3uRFe4giGgq16ypUiQ9xefc/ +AOCjV9iu7oGXLOHUg2xyzOCbhPhKqwu1Z6EHGgGgsKeZAEDcD4mmCID86+UsUH+onJ9Wgj9LeAVA +ulWpc7GOUQDoGwz7xX0YKmfRvbFBeSJXMyUCBfRYWNwolcfeiot/e2Lxv56rg4Qv97vmuEBsVX/7 +XuQQ26O8aRRhBG+TQVQ7zNdfSvBtPgw2/lcBMnREkSov4Bf3nMg3rRgyVmA+Sgz523yzF4PudCtO +iZ60OGWXHGCBEMCyAZgiuuAj3HSgsLF46Rzkh0h1f6R8LDEWsLUgn53FcCnwcRyvnR7NOC5eaHNc +anRWJMgDaBV8XIpCodCdxSSZBmf/UsZXX7JYqri7AdZBtTHQrjYE3wxsoXaSFS2Leg== + + + LwXW8mYNLZBrzbUH7RX8LAo+y27ELx+8Zc8wcwx95l4HVgqAKx0ApD2ToWYs2Sr/cuP9aW25PJ6F +cHWNWl8fRc8VZdoSArluQrWxRE25X/HVZABvBzoACE0ljsHgG49NXjHuIFliv1BTBZCSiv8t3NXR +Ro3/jeQLaGvLn90v5M+6y/jfy2k44Ts6GjT6wWeYZwM85IszDRfAiSeD8MKInFttzQwbfrvl+yty +Xqkx9s/dBW7Nok6+cErA9oAiVrqtAaAJPS8TI7D3ww2xEzQcqvEmB7m+XryKoZK+JPd4lttiKtde +XGA3WXxwGtsJNfATp9TDpyR8aJpro45yxpGj5t663kzyTgsf1Va3inGnu2AjqppSEMZAtpiOBdlY +AjbWyHfzApR/sqnvjt0aHK9FT5owcoRVWowufTGK+as1cUralZDtNNJiSOe5Iow8j8EoPYSGMoxY +lA5APIACAOCGlmZPgmGyI6R7/NgGIZnqRhjo7jEnE0FxEZmaLrUPu4GgJjDu8nHiioBBzDEWALYb +TjST/QhFd5gJ5B0vDl/sOa/eGXPzK/Q00UFo63E0kCzrxUd9J7yEq9mqqLgkKbDAvgrURVAe1hcf +Jly0Iu3DYT+Nv/2aZHC6tpPHunPPXqmIT8n/mcHfctMs/rYdPsTf9jLH+NuP4wI+4rYnp0lLgOZu +Hv9CL4ZDAwbvEf52nseBA9MXBw7sX3zYrXS7pF0bYBGXsbej3n4Of/sRxkcymvP4SICpjI8EmMha +ovFv6WpBssmAoyJUuvwJWhFWH4nBQZKP8Jz4SAwOElwbpz4Sg4OkQ7OVj8TgIMG1ceojMThI4oZ2 +5iMxOEjiYbEzH4nBQXL9ce4jMThIAI1jH4nkIEEFn5LjczOJaPEDuA4B+ZfnU2nvX05C4rL4j29D +EseBfQMrNaLQnuIQjETxoT5EVh8Up3CDtAJo9aGWh6fTLcUjQKfJQi36HEYcpzBWFO0gxHYwwvko +zat5FpRSDgEXkk98UiccjJheI0dGc7wKfIlkANpVMW4cCOQlShfyaCIBvt7LH8mflRDvwzONmwV4 +24gpYucVzHX0XfnxTBtIfyEvBRlQhUte+VZP3DIifZvHIdkBuwgjs011S/6n4PqT5Xh+L5vI8Hvx +m83PZHm5/Pvxd7oXcf05dP2Jl094/m46njWWk0ln8n/Xtdnb5ncyXe/l9+Ll2+rJSTZVm7zNxpM9 +8YgvNchg90CII5DOL/HIruZgU9yitfdc87vlvTke1t65bgE79kTOSjDROnZH434YQIbR1iP3/oQ/ +c0c+v27h24ZoOIoxXmJYcQBWNh3y1ibLyqYePm8/6JgLOR+pn1F9ATztFIobtFJ5eM/e53NlcCHc +Zs5KxQh4+xZF2kKK6GkC6VjwlxAsBm7W+sAdPLpIwoncw2FDy8ftq2Xj7kiwVIIfn7rD154Ld/gt +dgEfFN3RcmLsjpw/ttyhhReoguEiq/ILzJQMS758lT+UNlCjr+iBqxna1OLa3M6Blv8oIFdJUk/Q +q4c/V7z6OHoLOScgvfqaQKneCkoc41/Ay99bYeltPhCVOEZiX2CkSDCAGbiWYwQnnLqHATusc/Je +zwTVB/gcCsdh7MHQVz2WH1ShY4JxROXprig/O4mrDxK+w4+y/EDHHVDFA8ZQP8NRN6sRPBbaw7E3 +T2JQCocAI7+EkbsPOPJrAx7c8OhtonjnBm+vSirwvhQZuWogvg4B23JSQXsOHm5kRcunnQWa/xKs +79VlHMqyCMCw8IG3dwhuSFyg+NVzIn5++w1VVieMqSzRS+62owrWgYwGbfwnSLRafHh0kP+Y+u8a +R/XkFxaOFoPVotxSBJos1ZRDlhwY4rSqgiTBk9JLmUHK11UikMHT7HUu22yU/JNO7WR87Ja4qvvI +K/pI0Oqj4E/fK22y7jCpzH6Ib7LRZRRpC8nUGt3Fpd0/euT4UfskCF4985KSGfWEQu5EAOs1GqJj +JPiGNZKDsSejAIBMfiTJtFP4pyhKgchifkkWAIqIkQQAu7ZEUmArhWlLW4rnO9soTFvaEqDZUmHa +0pYu7Y3LKGxLOljETyNT+swdPafJx0JI6YSPb+tjZPlQgmTL5dHZQ1iNslU7o6QmypZqeRfpzbkM +YLCvB7AZXS1QNFCJHh48CaeGgOBx91cJCN4ZIorJ7hUeUUzNGnoAiZNnEYB0LnorwpBSLwBZkMkt +cmGj7xeCv5UM3KgB4E1+cHBrB6XPhouQ9Nm3JwzXMKVYqmNtLFTkAgcRD2RUG+NcPfX8EqKBQSc4 +VI8cjcJiYAFSkM4YoYvN5DhX90mNc6k3sarnOyMgfhiCdOgWUcsIXQSL0MEIDnSzCLfwyrcZbB8V +FVuvOgodiSWbpouhWwkYCNNM169GVlHwU4HxisN4uzynraZfvD9QOwgxHG4yDj2MoacZtj8IPDvC +j6/vVhMRr7MhUFMkGtNEgN3xHSfAeNWxAE51HdFe9F8l0JcEUp2/aYgcXgxgNkqWaQbUjce1arcj +BddUd7Fz+DyI4jLSsDoVZVm6r4qwq0KjOS5pFOUaX0Z7HVo2kmb9l/a66gL/U3td9E2r0X9sr+Me +wT+0113i1S3Zf2yvo7Wh2Nc7tNc1wubf2eua6OG/s9fRTgMmu2KvV9R1E1lWMpCB6y7+Epi8IisO +PaeIq8PyVwC7gU0TgwYs1O0vK/g0jucTvIBPMksUxRVPu+GN1poo7m1S4qp8YCFzVSmK7iyHPPcE +jOZ7KZFmcpWR5AZgwWdd2alSwPPeK70odvWBUotThXHfOCHkGyZEe6NioFc8+e5lJniCDICRuW9V +B9/lMRSnP6LRHPWdfCpx2qASP6rAA4KY5Aw0S2FoQpzLJvIKxpVgHgmMHvXr0zEeOQIf74OPbifr +zRx9JdWvTD7+TtvD/06Wrj/8nvgfB/6DfzO5PV7I7gmpFHiTgp+2gQUTQN/e44N77SkA0o+Xl+va +37f139l0uPzvXh599njevjup7eX3xG/3wbcP9wJgTFwffB08CqKgVR+OtO/6w+2V4Z/H/7j+bND/ +Qxs4nBr8ENhmXEzIcXwuvQdeJHICj16kwf8ycKyxDJ9JJzPwBZfLcknwIp1L8nx273EIAYgTAtD/ +C9+dgldf4LP/7CX3zveeX7m9sQs8u3H9SSSzsQSfSO3xuVQsmwKz/wUfcrlYMssn95ICF8smsoAk +KYAwld1LZDKxBCcIezwXS2YSafVnVdcfIRNLCrnMHp/NxLg0x+8lsjEukwXUzfLg58nsHrCehFyM +y3HZPTD8WCKRhIASKQ4ASidjiTSYyL3rTzIZE7g0vxdNpcELXthLJIRYjssJe1EhGePBjPfguIVU +Oot+l+aTCTiABAAOaAaAZsCo0hnwQz4Xy+bgOMEQslwqA4eQELJg8Bkw5yz4Wi6Z2jNSAYziHVIO +rIbAJWKZjAAe8nDyiQwkERy+wGck/BlAmjb4EIDh05Bc8jfhh4AsHPgAfJiNZVKJHPownQYDTAto +CLmkkEQfJjjwOp3YE5IJ+EKEmRJiqVw2DT4EQ8vyCfRhBiDKCuBDTgBwOPRzZZz4zwUhocIE/4rY +c2D1spkEwJ4GS5ZKiN8EY85mMmjwmWyG18DEZwQIE7qjcQG3Fz+ZrsVtv/c2+53PNtPx3upzOJ/s +/c7GEy0PADC5vUBw7/EBvSaDVPgFbFngt6blH+z3NyLGS/RPLJPMcQJkhEw2meDRCy6VzYIXiJEU +lhjCr/No+4N/9Rv5F32q3+9GljDuGZhc0idsLsMe/K/4RcNmNezpe/RFw+Y38IeBidBQ9KxmYEc0 +DgPXGiiCRvG+mwUHpDXwg0hxA0f8oI8NPCF+bOAK8WMDX6CPjZwhfmzgDRGIgTukb+v5Qwtb4RBp +JHr5IH5skBA/ZJr8mNKct0lzxFo5lW+A6plL/4r/QCUksVNoI2KoiU9wRQLfk1QJgoC4iahOwMfb +KRTC5iSpFONOJymV/f62aoXIqyTFQuR+kmrZ709FatbIW+iXvIXa5C3UJm+hNpmt2mS2apPZqk1m +qzaZrdpktmqT2apNZqs2mSZthWy7Uj5GvghcDdef73+nY2Dr3W7+rsEPxP3/eMVg9d1CPH2+n+hb +GX47MO+gJuTlkevtx1guJYCvw59DMPAFoHMyBV9wsnbkAbwMQitC5mIpqC4FhAJwUSzNpZNgyZOx +VCrHwz0pgL2egwuaBB8ibk3CcYGlBtwGVhFwksxIys8A/6QysXQyLfJEBoxjL52Kgb0hIN4RcgAJ +4B2w8xKQjfhMIsYJySSEBN4DBkulYhwYFWCbFODCDJfZiyYyMZ7LAI0mwNHvRcFkMkI2BTkaooVg +wK8SgHGQWcgBps4mAb4MEBpZgFjICeBFWhQjiUwuJ5uFAhAiQDQAcFkRmJYGeqswDVgFblAumc6p +VmFKZNkkHLVsFWaEnPpNxSpEPwcSIyduew2zpuFPZKswBRYTslMakFEyCtMcJ/JpKgd2kd4oTGUz +qlGYRhyt/BoxaCIr8i34Ba/ahFDEAfbkU+mMYhNC8sChpxKCoAGJz+f/K5vQsImRPDbudQM7GHfM +m6wVNDvLuP9Ek9CwUY37WTQJ9fvewBl67kFqzMBjBkZEwzDwq4Ee/8IixHnBaBEiblAtQpwfFINQ +yxFGgxDxhGq04Vyh2oMavsDsQZwzVHtQwxta0Ap3YPYgLhlUe1AjG37IFPnfag+S1Agg0naKhLA1 +SaqEsNEJygR8azt1QuJTokIhMD5RpRCsQb1iIW2gNnkDtckbyGgNygqGwFKKMWhQMiSWamuGrYFB +VDUkllJtQb26IVHkf48tKLDZgo7tNYNJ2IaXsMJgZ306RuHIKDyC2b8afkw6y+HfHxj7/FgN/89k +bzidztbD9WQOHu19LCer9Ww5AYSa/Qd+An+k/GB/v37ZcP35f6tJ6xw= + + + diff --git a/src/assets/networks/xdc-network.svg b/src/assets/networks/xdc-network.svg new file mode 100644 index 000000000..a691ead2f --- /dev/null +++ b/src/assets/networks/xdc-network.svg @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/src/components/CurrencyLogo/index.tsx b/src/components/CurrencyLogo/index.tsx index 48c8508af..1d4234ed2 100644 --- a/src/components/CurrencyLogo/index.tsx +++ b/src/components/CurrencyLogo/index.tsx @@ -5,15 +5,11 @@ import usePromise from 'hooks/usePromise' import { useAppKitNetwork } from '@reown/appkit/react' import styled from 'styled-components' -import AvalancheLogo from '../../assets/images/avalanche-logo.png' -import BinanceCoinLogo from '../../assets/images/binance-coin-logo.png' +import XdcLogo from '../../assets/images/xdc-logo.svg' import CeloLogo from '../../assets/images/celo-logo.png' import EthereumLogo from '../../assets/images/ethereum-logo.png' -import FantomLogo from '../../assets/images/fantom-logo.png' import FuseLogo from '../../assets/images/fuse-logo.png' -import MaticLogo from '../../assets/images/matic-logo.png' -import xDaiLogo from '../../assets/images/xdai-logo.png' -import { AdditionalChainId, FUSE } from '../../constants' +import { AdditionalChainId, FUSE, CELO, XDC } from '../../constants' import { getFuseTokenLogoURL } from '../../constants/fuseTokenMapping' import useHttpLocations from '../../hooks/useHttpLocations' import { WrappedTokenInfo } from 'types/WrappedTokenInfo' @@ -49,15 +45,7 @@ const StyledLogo = styled(Logo)<{ size: string }>` const logo: { readonly [chainId in ChainId | AdditionalChainId]?: string } = { [ChainId.MAINNET]: EthereumLogo, - [ChainId.FANTOM]: FantomLogo, - [ChainId.FANTOM_TESTNET]: FantomLogo, - [ChainId.MATIC]: MaticLogo, - [ChainId.MATIC_TESTNET]: MaticLogo, - [ChainId.XDAI]: xDaiLogo, - [ChainId.BSC]: BinanceCoinLogo, - [ChainId.BSC_TESTNET]: BinanceCoinLogo, - [ChainId.AVALANCHE]: AvalancheLogo, - [ChainId.FUJI]: AvalancheLogo, + [AdditionalChainId.XDC]: XdcLogo, [AdditionalChainId.FUSE]: FuseLogo, [AdditionalChainId.CELO]: CeloLogo, } @@ -91,7 +79,7 @@ export default function CurrencyLogo({ return [] }, [chainId, currency, uriLocations, tokenList]) - if ((currency === ETHER || currency === FUSE) && chainId) { + if ((currency === ETHER || currency === FUSE || currency === CELO || currency === XDC) && chainId) { return } diff --git a/src/components/Faq/copies.tsx b/src/components/Faq/copies.tsx index 596943354..18e3f10e1 100644 --- a/src/components/Faq/copies.tsx +++ b/src/components/Faq/copies.tsx @@ -9,11 +9,12 @@ export type FaqItemCopy = { AltLink?: () => React.ReactNode } +//TODO: revise for XDC const faqSwapCopy: FaqItemCopy[] = [ { id: 'whatsswap', question: `What is a Swap?`, - answer: `A swap is when you convert one digital asset for another, allowing people to diversify their cryptocurrency holdings. \n\nThe swap on this page happens through decentralized exchanges (DEXs). When you swap, your funds are sent directly to the DEX service (Voltage on Fuse Network or Uniswap on Celo Network).`, + answer: `A swap is when you convert one digital asset for another, allowing people to diversify their cryptocurrency holdings. \n\nThe swap on this page happens through decentralized exchanges (DEXs). When you swap, your funds are sent directly to the DEX service (such as Uniswap).`, }, { id: 'whereliqfrom', diff --git a/src/components/NetworkModal/index.tsx b/src/components/NetworkModal/index.tsx index e47c91963..b15d856d4 100644 --- a/src/components/NetworkModal/index.tsx +++ b/src/components/NetworkModal/index.tsx @@ -75,13 +75,13 @@ export default function NetworkModal(): JSX.Element | null { const networkLabel: string | null = error ? null : (NETWORK_LABEL as any)[+(chainId ?? 1)] const network = getEnv() // eslint-disable-next-line react-hooks/exhaustive-deps - const prodNetworks = [AdditionalChainId.CELO, ChainId.MAINNET, AdditionalChainId.FUSE] + const prodNetworks = [AdditionalChainId.CELO, ChainId.MAINNET, AdditionalChainId.FUSE, AdditionalChainId.XDC] const allowedNetworks = useMemo(() => { switch (true) { case network === 'staging': case network === 'fuse': - return [AdditionalChainId.CELO, AdditionalChainId.FUSE] + return [AdditionalChainId.CELO, AdditionalChainId.FUSE, AdditionalChainId.XDC] default: return prodNetworks } diff --git a/src/components/Savings/SavingsCard/index.tsx b/src/components/Savings/SavingsCard/index.tsx index 1a9261ad2..42e58d21a 100644 --- a/src/components/Savings/SavingsCard/index.tsx +++ b/src/components/Savings/SavingsCard/index.tsx @@ -104,7 +104,7 @@ export const SavingsCard = ({ account }: { account: string }): JSX.Element => { /> )} {isMobile ? ( - + ) : ( { } > - +
)} diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx index c343f3d3f..b0e5bdf0a 100644 --- a/src/components/SideBar.tsx +++ b/src/components/SideBar.tsx @@ -209,6 +209,13 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl withIcon: true, show: true, }, + { + label: i18n._(t`Xswap (XDC)`), + url: 'https://app.xspswap.finance/', + dataAttr: 'xswap', + withIcon: true, + show: true, + }, ], }, { diff --git a/src/components/SwapErrorBoundary.tsx b/src/components/SwapErrorBoundary.tsx new file mode 100644 index 000000000..8b497b421 --- /dev/null +++ b/src/components/SwapErrorBoundary.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { ErrorBoundary } from 'react-error-boundary' +import { Text, Button, Box } from 'native-base' +import { classifySwapError } from '../utils/swapErrors' + +function SwapErrorFallback({ resetErrorBoundary, error }: { error: Error; resetErrorBoundary: () => void }) { + const { message } = classifySwapError(error?.message || 'Unknown error') + return ( + + + Swap Widget Error + + + The swap widget encountered an error. This might be due to extreme price impact or insufficient + liquidity. + + + {message} + + + + ) +} + +export function SwapWidgetErrorBoundary({ children }: { children: React.ReactNode }) { + return ( + { + console.error('SwapWidget Error Boundary caught an error:', error, errorInfo) + }} + > + {children} + + ) +} diff --git a/src/components/Web3SupportedNetworks/index.tsx b/src/components/Web3SupportedNetworks/index.tsx index fceef22bd..bd2bc68cb 100644 --- a/src/components/Web3SupportedNetworks/index.tsx +++ b/src/components/Web3SupportedNetworks/index.tsx @@ -9,14 +9,18 @@ export interface IWeb3SupportedNetworkRecord { export interface IWeb3SupportedNetworksProps { onItem: (item: IWeb3SupportedNetworkRecord) => JSX.Element + exclude?: string[] } -export default function Web3SupportedNetworks({ onItem }: IWeb3SupportedNetworksProps): JSX.Element | null { +export default function Web3SupportedNetworks({ onItem, exclude }: IWeb3SupportedNetworksProps): JSX.Element | null { const network = getEnv() const networks = useMemo( - () => Object.keys(SupportedV2Networks).filter((v) => isNaN(Number(v))) as SupportedV2Network[], - [] + () => + Object.keys(SupportedV2Networks) + .filter((v) => isNaN(Number(v))) + .filter((v) => !exclude?.includes(v)) as SupportedV2Network[], + [exclude] ) if (network === 'production') { diff --git a/src/connectors/index.ts b/src/connectors/index.ts index 52fc4d8f4..c9d046ddd 100644 --- a/src/connectors/index.ts +++ b/src/connectors/index.ts @@ -10,10 +10,11 @@ export enum AdditionalChainIds { FUSE = 122, ETH = 1, CELO = 42220, + XDC = 50, } -const devEnv = ['development-celo', 'fuse', 'fuse-mainnet'] -const stagingEnv = ['staging-celo', 'staging', 'staging-mainnet'] +const devEnv = ['development-celo', 'fuse', 'fuse-mainnet', 'development-xdc'] +const stagingEnv = ['staging-celo', 'staging', 'staging-mainnet', 'staging-xdc'] const getDappUrl = (env: string) => { const dappEnv = devEnv.includes(env) ? 'dev.' : stagingEnv.includes(env) ? 'qa.' : '' @@ -46,6 +47,12 @@ export const connectOptions = { label: 'Fuse Network', rpcUrl: sample(process.env.REACT_APP_FUSE_RPC?.split(',')) ?? 'https://rpc.fuse.io', }, + { + id: '0x32', + token: 'XDC', + label: 'XDC', + rpcUrl: sample(process.env.REACT_APP_XDC_RPC?.split(',')) ?? 'https://rpc.xdc.network', + }, ], appMetadata: { name: 'GoodDapp', diff --git a/src/constants/index.ts b/src/constants/index.ts index 675e16f74..e2e6b7429 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -68,12 +68,44 @@ export const CELO = Object.assign({}, Currency, { }, }) as unknown as Currency +export const XDC = Object.assign({}, Currency, { + decimals: 18, + symbol: 'XDC', + name: 'xDC', + getSymbol(chainId?: ChainId) { + if (!chainId) { + return this === null || this === void 0 ? void 0 : this.symbol + } + + if ((this === null || this === void 0 ? void 0 : this.symbol) === 'XDC') { + return Currency.getNativeCurrencySymbol(chainId) + } + + return this === null || this === void 0 ? void 0 : this.symbol + }, + + getName(chainId?: ChainId) { + if (!chainId) { + return this === null || this === void 0 ? void 0 : this.name + } + + if ((this === null || this === void 0 ? void 0 : this.name) === 'XDC') { + return Currency.getNativeCurrencyName(chainId) + } + + return this === null || this === void 0 ? void 0 : this.name + }, +}) as unknown as Currency + Object.defineProperty(Currency.NATIVE, 122, { value: FUSE }) Object.defineProperty(Currency, 'FUSE', { value: FUSE }) Object.defineProperty(Currency.NATIVE, 42220, { value: CELO }) Object.defineProperty(Currency, 'CELO', { value: CELO }) +Object.defineProperty(Currency.NATIVE, 50, { value: XDC }) +Object.defineProperty(Currency, 'XDC', { value: XDC }) + Object.defineProperty(ChainId, 'FUSE', { value: 122, writable: false, configurable: false }) Object.defineProperty(ChainId, 122, { value: 'FUSE', writable: false, configurable: false }) Object.defineProperty(WETH, 122, { @@ -89,10 +121,13 @@ Object.defineProperty(WETH, 42220, { writable: false, configurable: false, }) +Object.defineProperty(ChainId, 'XDC', { value: 50, writable: false, configurable: false }) +Object.defineProperty(ChainId, 50, { value: 'XDC', writable: false, configurable: false }) export enum AdditionalChainId { FUSE = 122, CELO = 42220, + XDC = 50, //KOVAN = 42 } @@ -100,6 +135,7 @@ export enum ChainIdHex { '0x7a' = 122, '0xa4ec' = 42220, '0x1' = 1, + '0x32' = 50, } // TODO: specify merkle distributor for mainnet diff --git a/src/constants/multicall/index.ts b/src/constants/multicall/index.ts index 2fc73f4a0..82a1b891d 100644 --- a/src/constants/multicall/index.ts +++ b/src/constants/multicall/index.ts @@ -27,6 +27,7 @@ const MULTICALL_NETWORKS: { [chainId in ChainId | AdditionalChainId]: string } = [ChainId.OKEX_TESTNET]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', [AdditionalChainId.FUSE]: '0x3CE6158b7278Bf6792e014FA7B4f3c6c46fe9410', [AdditionalChainId.CELO]: '0x75f59534dd892c1f8a7b172d639fa854d529ada3', + [AdditionalChainId.XDC]: '0x0B1795ccA8E4eC4df02346a082df54D437F8D9aF', } export { MULTICALL_ABI, MULTICALL_NETWORKS } diff --git a/src/constants/networks.ts b/src/constants/networks.ts index 139cc1dff..1d096912d 100644 --- a/src/constants/networks.ts +++ b/src/constants/networks.ts @@ -1,71 +1,20 @@ -import Arbitrum from '../assets/networks/arbitrum-network.jpg' -import Avalanche from '../assets/networks/avalanche-network.jpg' -import Bsc from '../assets/networks/bsc-network.jpg' import { ChainId } from '@sushiswap/sdk' -import Fantom from '../assets/networks/fantom-network.jpg' -import Goerli from '../assets/networks/goerli-network.jpg' -import Harmony from '../assets/networks/harmonyone-network.jpg' -import Heco from '../assets/networks/heco-network.jpg' -import Kovan from '../assets/networks/kovan-network.jpg' import Mainnet from '../assets/networks/mainnet-network.jpg' -import Matic from '../assets/networks/matic-network.jpg' -import Moonbeam from '../assets/networks/moonbeam-network.jpg' -import OKEx from '../assets/networks/okex-network.jpg' -import Polygon from '../assets/networks/polygon-network.jpg' -import Rinkeby from '../assets/networks/rinkeby-network.jpg' -import Ropsten from '../assets/networks/ropsten-network.jpg' -import xDai from '../assets/networks/xdai-network.jpg' import Fuse from '../assets/networks/fuse-network.png' import Celo from '../assets/networks/celo-network.png' +import XDC from '../assets/networks/xdc-network.svg' import { AdditionalChainId } from './index' export const NETWORK_ICON = { [ChainId.MAINNET]: Mainnet, - [ChainId.ROPSTEN]: Ropsten, - [ChainId.RINKEBY]: Rinkeby, - [ChainId.GÖRLI]: Goerli, - [ChainId.KOVAN]: Kovan, - [ChainId.FANTOM]: Fantom, - [ChainId.FANTOM_TESTNET]: Fantom, - [ChainId.BSC]: Bsc, - [ChainId.BSC_TESTNET]: Bsc, - [ChainId.MATIC]: Polygon, - [ChainId.MATIC_TESTNET]: Matic, - [ChainId.XDAI]: xDai, - [ChainId.ARBITRUM]: Arbitrum, - [ChainId.MOONBASE]: Moonbeam, - [ChainId.AVALANCHE]: Avalanche, - [ChainId.FUJI]: Avalanche, - [ChainId.HECO]: Heco, - [ChainId.HECO_TESTNET]: Heco, - [ChainId.HARMONY]: Harmony, - [ChainId.HARMONY_TESTNET]: Harmony, - [ChainId.OKEX]: OKEx, - [ChainId.OKEX_TESTNET]: OKEx, [AdditionalChainId.FUSE]: Fuse, [AdditionalChainId.CELO]: Celo, + [AdditionalChainId.XDC]: XDC, } export const NETWORK_LABEL: { [chainId in ChainId | AdditionalChainId]?: string } = { [ChainId.MAINNET]: 'Ethereum', - [ChainId.RINKEBY]: 'Rinkeby', - [ChainId.GÖRLI]: 'Görli', - [ChainId.FANTOM]: 'Fantom', - [ChainId.FANTOM_TESTNET]: 'Fantom Testnet', - [ChainId.MATIC]: 'Polygon (Matic)', - [ChainId.MATIC_TESTNET]: 'Matic Testnet', - [ChainId.XDAI]: 'xDai', - [ChainId.BSC]: 'BSC', - [ChainId.BSC_TESTNET]: 'BSC Testnet', - [ChainId.MOONBASE]: 'Moonbase', - [ChainId.AVALANCHE]: 'Avalanche', - [ChainId.FUJI]: 'Fuji', - [ChainId.HECO]: 'HECO', - [ChainId.HECO_TESTNET]: 'HECO Testnet', - [ChainId.HARMONY]: 'Harmony', - [ChainId.HARMONY_TESTNET]: 'Harmony Testnet', - [ChainId.OKEX]: 'OKExChain', - [ChainId.OKEX_TESTNET]: 'OKExChain', [AdditionalChainId.FUSE]: 'FUSE', [AdditionalChainId.CELO]: 'CELO', + [AdditionalChainId.XDC]: 'XDC', } diff --git a/src/hooks/useWeb3.tsx b/src/hooks/useWeb3.tsx index 81729b652..4f31477d1 100644 --- a/src/hooks/useWeb3.tsx +++ b/src/hooks/useWeb3.tsx @@ -3,9 +3,8 @@ import { BigNumber, ethers } from 'ethers' import Web3 from 'web3' import { ExternalProvider } from '@ethersproject/providers' import { Mainnet } from '@usedapp/core' -import { ChainId } from '@sushiswap/sdk' import { DAO_NETWORK, GdSdkContext, useEnvWeb3 } from '@gooddollar/web3sdk' -import { AsyncStorage, Celo, Fuse, Web3Provider } from '@gooddollar/web3sdk-v2' +import { AsyncStorage, Celo, Fuse, Xdc, Web3Provider } from '@gooddollar/web3sdk-v2' import { sample } from 'lodash' import { useAppKitNetwork, useAppKitProvider } from '@reown/appkit/react' import type { Provider } from '@reown/appkit/react' @@ -18,14 +17,23 @@ type NetworkSettings = { MAINNET_RPC: string | undefined FUSE_RPC: string | undefined CELO_RPC: string | undefined - KOVAN_RPC: string | undefined - ROPSTEN_RPC: string | undefined + XDC_RPC: string | undefined } } +const gasPriceSettings = { + 42220: { + maxFeePerGas: BigNumber.from(25.001e9).toHexString(), + maxPriorityFeePerGas: BigNumber.from(2.5e9).toHexString(), + }, + 122: { maxFeePerGas: BigNumber.from(11e9).toHexString() }, + 50: { maxFeePerGas: BigNumber.from(12.5e9).toHexString() }, +} + export function useNetwork(): NetworkSettings { const celoRpcList = sample(process.env.REACT_APP_CELO_RPC?.split(',')) ?? '' const fuseRpcList = sample(process.env.REACT_APP_FUSE_RPC?.split(',')) ?? 'https://rpc.fuse.io' + const xdcRpcList = sample(process.env.REACT_APP_XDC_RPC?.split(',')) ?? 'https://rpc.xdc.network' const mainnetList = sample(['https://eth.llamarpc.com', 'https://1rpc.io/eth']) const [currentNetwork, rpcs] = useMemo( () => [ @@ -37,8 +45,7 @@ export function useNetwork(): NetworkSettings { (ethers.getDefaultProvider('mainnet') as any).providerConfigs[0].provider.connection.url, FUSE_RPC: fuseRpcList || 'https://rpc.fuse.io', CELO_RPC: celoRpcList || 'https://forno.celo.org', - KOVAN_RPC: undefined, - ROPSTEN_RPC: undefined, + XDC_RPC: xdcRpcList, }, ], [] @@ -69,13 +76,15 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN if (webprovider) { webprovider.send = async (method: string, params: any) => { - // for celo force gasPrice to 5 gwei - if (!isMiniPay && chainId === (42220 as ChainId) && method === 'eth_sendTransaction') { - params[0].gasPrice = BigNumber.from(25.001e9).toHexString() - } - - if (chainId === (122 as ChainId) && method === 'eth_sendTransaction') { - params[0].gasPrice = BigNumber.from(11e9).toHexString() + if (method === 'eth_sendTransaction' && !isMiniPay && chainId && chainId in gasPriceSettings) { + const gasSettings = gasPriceSettings[chainId] + if (!params[0].maxFeePerGas) { + // params[0].gasPrice = gasSettings.maxFeePerGas + delete params[0].gasPrice + params[0] = { ...params[0], ...gasSettings } + } else { + params[0] = { ...params[0], ...gasSettings } + } } return webprovider.jsonRpcFetchFunc(method, params) } @@ -98,12 +107,13 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN env={contractsEnvV2} config={{ pollingInterval: 15000, - networks: [Mainnet, Fuse, Celo], + networks: [Mainnet, Fuse, Celo, Xdc], readOnlyChainId: undefined, readOnlyUrls: { 1: sample(process.env.REACT_APP_MAINNET_RPC?.split(',')) ?? 'https://eth.llamarpc.com', 122: sample(process.env.REACT_APP_FUSE_RPC?.split(',')) || 'https://rpc.fuse.io', 42220: sample(process.env.REACT_APP_CELO_RPC?.split(',')) || 'https://forno.celo.org', + 50: sample(process.env.REACT_APP_XDC_RPC?.split(',')) || 'https://rpc.xdc.network', }, }} > diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 9cbb1a1da..020388c7a 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Rekening" @@ -2705,7 +2705,7 @@ msgstr "Rekening" msgid "amount" msgstr "bedrag" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Goedkeuring" msgid "APPROVING" msgstr "GOEDKEURING" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Duidelik alle" @@ -2888,7 +2888,7 @@ msgstr "Koppel aan 'n beursie" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbind met" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Kopieer adres" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Hoeveel wil jy onttrek?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "Likiditeit" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Likiditeit Verskaffer" msgid "loading..." msgstr "laai..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Laai..." @@ -3143,8 +3143,8 @@ msgstr "Netwerk Fooi" msgid "Next month:" msgstr "Volgende maand:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Geen data." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Prys Impak" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokol" @@ -3213,7 +3213,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Glip Verdraagsaamheid" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Dit is die protokol wat die teken is ingelê om." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Hierdie maand" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Teken" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index e0d43abdc..8d9ec4096 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "الحساب" @@ -2705,7 +2705,7 @@ msgstr "الحساب" msgid "amount" msgstr "مبلغ" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "الموافقة" msgid "APPROVING" msgstr "الموافقة" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "امسح الكل" @@ -2888,7 +2888,7 @@ msgstr "الاتصال بمحفظة" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "متصل بـ" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "عنوان النسخ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "كم ترغب في الانسحاب؟" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "السيولة" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "رسوم مزود السيولة" msgid "loading..." msgstr "تحميل..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "تحميل..." @@ -3143,8 +3143,8 @@ msgstr "رسوم الشبكة" msgid "Next month:" msgstr "الشهر المقبل:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "لا توجد بيانات." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "تأثير السعر" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "بروتوكول" @@ -3213,7 +3213,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "تسامح الانزلاق" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "حصة" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "هذا هو البروتوكول الذي تم وضع الرمز المميز عليه." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "هذا الشهر" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "الرمز المميز" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 3df3ed484..d7563731c 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Aprovació" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 8201b5a28..0dcc17c00 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 41aba4f5f..18bef35b6 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 8b4a32a6c..ef74b6359 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Konto" @@ -2705,7 +2705,7 @@ msgstr "Konto" msgid "amount" msgstr "betragen" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Genehmigen" msgid "APPROVING" msgstr "Genehmigen" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Alles löschen" @@ -2888,7 +2888,7 @@ msgstr "Verbinden Sie sich mit einer Brieftasche" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbunden mit" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Adresse kopieren." @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Wie viel möchten Sie zurückziehen?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Liquiditätsanbietergebühr" msgid "loading..." msgstr "Wird geladen..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Wird geladen..." @@ -3143,8 +3143,8 @@ msgstr "Netzwerkgebühr" msgid "Next month:" msgstr "Nächsten Monat:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Keine Daten." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Preisauswirkung" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokoll" @@ -3213,7 +3213,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Schlupftoleranz" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Anteil" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Dies ist das Protokoll, mit dem das Token stecken ist." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Diesen Monat" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Zeichen" @@ -3474,7 +3476,7 @@ msgstr "Gesamtbetrag auf wertberührt." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Rücknahme von Mitteln von {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." @@ -3714,6 +3720,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index b87efeddf..48f08d1e1 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 86af79731..28e28057c 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 4379eec10..ea2b6caf4 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -349,7 +349,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -365,12 +365,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -414,11 +414,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -432,8 +432,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -485,8 +485,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -535,7 +535,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -545,7 +545,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -605,16 +605,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -738,11 +740,11 @@ msgstr "" msgid "The total of your deposits which accumulates the rewards." msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -751,11 +753,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -776,7 +778,7 @@ msgid "This month" msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -794,7 +796,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -853,7 +855,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -919,6 +921,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -1006,6 +1012,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 1a6e0beb6..ceee54b73 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cuenta" @@ -2705,7 +2705,7 @@ msgstr "Cuenta" msgid "amount" msgstr "Monto" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Aprobatorio" msgid "APPROVING" msgstr "APROBATORIA" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Limpiar todo" @@ -2888,7 +2888,7 @@ msgstr "Conectarse a una billetera" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectado con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Dirección de copia" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Tarifa de proveedor de liquidez" msgid "loading..." msgstr "cargando..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Cargando..." @@ -3143,8 +3143,8 @@ msgstr "Cuota de red" msgid "Next month:" msgstr "Próximo mes:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Sin datos." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Impacto en el precio" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocolo" @@ -3213,7 +3213,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolerancia al deslizamiento" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Apostar" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Este es el protocolo de que el token está apostado." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Este mes" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Simbólico" @@ -3474,7 +3476,7 @@ msgstr "Cantidad total en valor estancado." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Retiró fondos de {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." @@ -3714,6 +3720,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 65ad031c7..4841625d9 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 46c3bc495..9ab60027f 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Approbation en cours" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Connecter un portefeuille" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "Liquidité" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Frais de fournisseur de liquidité" msgid "loading..." msgstr "Chargement en cours..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Chargement..." @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Impact prix" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolérance de slippage" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Staker" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "A retiré des fonds de {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." @@ -3714,6 +3720,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index ac99184fa..507a2aee0 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2705,7 +2705,7 @@ msgstr "חֶשְׁבּוֹן" msgid "amount" msgstr "כמות" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "אישור" msgid "APPROVING" msgstr "אישור" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "נקה את כל" @@ -2888,7 +2888,7 @@ msgstr "התחבר לארנק" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "מחובר עם" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "העתקת העתקה" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "כמה אתה רוצה לסגת?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "נזילות" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "דמי ספק נזילות" msgid "loading..." msgstr "טוען..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "טוען..." @@ -3143,8 +3143,8 @@ msgstr "דמי רשת" msgid "Next month:" msgstr "חודש הבא:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "אין מידע." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "השפעת מחיר" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "נוהל" @@ -3213,7 +3213,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "תנודת מחיר מקובלת" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "יתד" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "זהו הפרוטוקול כי האסימון הוא staked." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "החודש" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "אסימון" @@ -3474,7 +3476,7 @@ msgstr "הסכום הכולל על ערך staked." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "משכו כספים מ {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." @@ -3714,6 +3720,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index b46a2f611..27e26a55b 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -1460,7 +1460,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -1488,7 +1488,7 @@ msgstr "का अनुमोदन" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -1643,7 +1643,7 @@ msgstr "एक वॉलेट से कनेक्ट करें" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -1754,7 +1754,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -1770,12 +1770,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -1823,11 +1823,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "लिक्विडिटी" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -1841,8 +1841,8 @@ msgstr "तरलता प्रदाता शुल्क" msgid "loading..." msgstr "लोड हो रहा है..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "लोड हो रहा है..." @@ -1898,8 +1898,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -1958,7 +1958,7 @@ msgid "Price Impact" msgstr "मूल्य प्रभाव" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -2028,16 +2028,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "स्लिपेज टॉलरेंस" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "दाँव" @@ -2169,11 +2171,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -2182,11 +2184,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -2211,7 +2213,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "टोकन" @@ -2229,7 +2231,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -2288,7 +2290,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -2382,6 +2384,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -2469,6 +2475,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 1e133db19..010b5ee81 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 156b13dd0..b3cabc71c 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "Quantità" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Approvazione" msgid "APPROVING" msgstr "Approvazione" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Cancella tutto" @@ -2888,7 +2888,7 @@ msgstr "Collega wallet" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Connesso con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Copia indirizzo" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Quanto ti piacerebbe ritirare?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "Liquidità" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Commissione per fornitori di liquidità" msgid "loading..." msgstr "caricamento..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Caricamento..." @@ -3143,8 +3143,8 @@ msgstr "Tassa di rete" msgid "Next month:" msgstr "Il prossimo mese:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Nessun dato." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Impatto sul prezzo" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocollo" @@ -3213,7 +3213,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolleranza slippage" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Metti in staking" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Questo è il protocollo che il token è puntato." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Questo mese" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "Importo totale sul valore puntato." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Ritirato i fondi da {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." @@ -3714,6 +3720,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 0cc673f94..31ff45425 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "承認" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "ウォレットに接続する" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "流動性プロバイダー手数料" msgid "loading..." msgstr "読み込み中..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "読み込んでいます..." @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "価格への影響" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "スリッページ許容値" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "ステーク" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "トークン" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "{0}から資金を撤回しました" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" @@ -3714,6 +3720,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 4ab17ff94..7e74a5d49 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "승인" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "지갑에 연결" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "유동성" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "유동성 제공자 수수료" msgid "loading..." msgstr "로드 중 ..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "로드 중 ..." @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "가격 영향" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "미끄러짐 공차" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "말뚝" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "토큰" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "{0}에서 철수 된 자금" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." @@ -3714,6 +3720,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index c8868ee7d..37c955d0c 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 09e2609db..810bc61fa 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 5fe12ce74..180b7ab34 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index cdb742700..0839c8fee 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Aprovando" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Conecte a uma carteira" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "Liquidez" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Taxa do provedor de liquidez" msgid "loading..." msgstr "carregando..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Carregando..." @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Impacto de preço" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolerância de deslizamento" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Estaca" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Símbolo" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index bfffc47b5..a874c1971 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 3568c2b34..debd02416 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cont" @@ -2705,7 +2705,7 @@ msgstr "Cont" msgid "amount" msgstr "Cantitate" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Aprobând" msgid "APPROVING" msgstr "Aprobând." -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Curata tot" @@ -2888,7 +2888,7 @@ msgstr "Conectați-vă la un portofel" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectat cu" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Adresa de copiere" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Cât de mult doriți să vă retrageți?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Taxa furnizorului de lichiditate" msgid "loading..." msgstr "Se încarcă..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Se încarcă..." @@ -3143,8 +3143,8 @@ msgstr "Taxa de rețea" msgid "Next month:" msgstr "Luna viitoare:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Nu există date." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Impactul prețului" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Toleranță la alunecare" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Miza" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Acesta este protocolul pe care jetonul este împachetat la." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Luna aceasta" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Jeton" @@ -3474,7 +3476,7 @@ msgstr "Suma totală pe valoarea stabilită." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "A retras fonduri de la {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." @@ -3714,6 +3720,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index f549f40ca..dcccc40e9 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Счет" @@ -2705,7 +2705,7 @@ msgstr "Счет" msgid "amount" msgstr "количество" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Утверждаю" msgid "APPROVING" msgstr "Одобрение" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Очистить все" @@ -2888,7 +2888,7 @@ msgstr "Подключиться к кошельку" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Связаны с" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Копировать адрес" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Сколько вы хотели бы выйти?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Комиссия поставщика ликвидности" msgid "loading..." msgstr "загрузка ..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Загружается ..." @@ -3143,8 +3143,8 @@ msgstr "Сетевая плата" msgid "Next month:" msgstr "В следующем месяце:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Нет данных." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Влияние на цену" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Протокол" @@ -3213,7 +3213,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Допуск по проскальзыванию" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Ставка" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Это протокол о том, что токен поставлен." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Этот месяц" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Токен" @@ -3474,7 +3476,7 @@ msgstr "Общая сумма по стоимости поставлена." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Вышли средства из {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." @@ -3714,6 +3720,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 9cf0ae880..bdbe4c77a 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 96449c62b..0c5114cf0 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 428b131f6..25f559a21 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index accb768e8..d3e399a70 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2705,7 +2705,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -3143,8 +3143,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3474,7 +3476,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3714,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index cdbdf0f33..724c0b947 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Tài khoản" @@ -2705,7 +2705,7 @@ msgstr "Tài khoản" msgid "amount" msgstr "số lượng" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "Phê duyệt" msgid "APPROVING" msgstr "Phê duyệt" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2888,7 +2888,7 @@ msgstr "Kết nối với ví" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Kết nối với" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "Bạn muốn rút bao nhiêu tiền?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "Phí nhà cung cấp thanh khoản" msgid "loading..." msgstr "Đang tải..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "Đang tải..." @@ -3143,8 +3143,8 @@ msgstr "Phí mạng" msgid "Next month:" msgstr "Tháng tiếp theo:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "Không có dữ liệu." @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "Tác động giá" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Giao thức" @@ -3213,7 +3213,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Khả năng chịu trượt" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "Cổ phần" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Đây là giao thức mà mã thông báo được đặt cược." -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "Tháng này" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Mã thông báo" @@ -3474,7 +3476,7 @@ msgstr "Tổng số tiền trên giá trị được đặt cược." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "Đã rút tiền từ {0}" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." @@ -3714,6 +3720,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 523ec47e0..81dc76616 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帐户" @@ -2705,7 +2705,7 @@ msgstr "帐户" msgid "amount" msgstr "数量" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "批准中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "连接钱包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "与" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "复制地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "你想退出多少钱?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "流动性" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "LP奖励" msgid "loading..." msgstr "载入中..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "载入中..." @@ -3143,8 +3143,8 @@ msgstr "网络费用" msgid "Next month:" msgstr "下个月:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "没有数据。" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "价格影响" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "协议" @@ -3213,7 +3213,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "最近的交易" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "可容忍滑点" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "质押" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "这是令牌赌注的协议。" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "这个月" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代币" @@ -3474,7 +3476,7 @@ msgstr "价值总额托出来。" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "退出{0}的资金" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" @@ -3714,6 +3720,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index ce34ff530..086f53c96 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帳戶" @@ -2705,7 +2705,7 @@ msgstr "帳戶" msgid "amount" msgstr "數量" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2733,7 +2733,7 @@ msgstr "批準中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "連接錢包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "與" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "複製地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2999,7 +2999,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -3015,12 +3015,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -3068,11 +3068,11 @@ msgstr "你想退出多少錢?" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "流動性" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3086,8 +3086,8 @@ msgstr "LP獎勵" msgid "loading..." msgstr "載入中..." -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "載入中..." @@ -3143,8 +3143,8 @@ msgstr "網絡費用" msgid "Next month:" msgstr "下個月:" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "沒有數據。" @@ -3203,7 +3203,7 @@ msgid "Price Impact" msgstr "價格影響" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "協議" @@ -3213,7 +3213,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "最近的交易" @@ -3273,16 +3273,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "可容忍滑點" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "質押" @@ -3414,11 +3416,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3427,11 +3429,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "這是令牌賭注的協議。" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3456,7 +3458,7 @@ msgstr "這個月" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代幣" @@ -3474,7 +3476,7 @@ msgstr "價值總額托出來。" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3533,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3627,6 +3629,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "退出{0}的資金" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" @@ -3714,6 +3720,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 79477f48a..9b8d3f1aa 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:75 +#: src/pages/gd/Stake/index.tsx:78 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2204,7 +2204,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:77 msgid "APY" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:287 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:326 msgid "Clear all" msgstr "" @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:303 msgid "Copy address" msgstr "" @@ -2405,7 +2405,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:278 msgid "Disconnect" msgstr "" @@ -2470,7 +2470,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:443 +#: src/pages/gd/Stake/index.tsx:507 msgid "GoodDAO Staking" msgstr "" @@ -2486,12 +2486,12 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:223 +#: src/components/SideBar.tsx:230 msgid "GoodDollar Main Bridge" msgstr "" -#: src/pages/gd/Stake/index.tsx:425 -#: src/pages/gd/Stake/index.tsx:429 +#: src/pages/gd/Stake/index.tsx:481 +#: src/pages/gd/Stake/index.tsx:485 msgid "GoodStakes" msgstr "" @@ -2539,11 +2539,11 @@ msgstr "" msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:85 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:83 +#: src/pages/gd/Stake/index.tsx:86 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -2557,8 +2557,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:98 -#: src/pages/gd/Stake/index.tsx:262 +#: src/pages/gd/Stake/index.tsx:101 +#: src/pages/gd/Stake/index.tsx:289 msgid "Loading..." msgstr "" @@ -2614,8 +2614,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:103 -#: src/pages/gd/Stake/index.tsx:269 +#: src/pages/gd/Stake/index.tsx:106 +#: src/pages/gd/Stake/index.tsx:296 msgid "No data." msgstr "" @@ -2674,7 +2674,7 @@ msgid "Price Impact" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:73 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -2684,7 +2684,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:324 msgid "Recent Transactions" msgstr "" @@ -2744,16 +2744,18 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:81 msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:237 msgid "Squid Router" msgstr "" -#: src/pages/gd/Stake/index.tsx:298 -#: src/pages/gd/Stake/index.tsx:425 +#: src/pages/gd/Stake/index.tsx:218 +#: src/pages/gd/Stake/index.tsx:325 +#: src/pages/gd/Stake/index.tsx:404 +#: src/pages/gd/Stake/index.tsx:481 msgid "Stake" msgstr "" @@ -2885,11 +2887,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:87 +#: src/pages/gd/Stake/index.tsx:90 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:79 +#: src/pages/gd/Stake/index.tsx:82 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -2898,11 +2900,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:71 +#: src/pages/gd/Stake/index.tsx:74 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:67 +#: src/pages/gd/Stake/index.tsx:70 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -2927,7 +2929,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:66 +#: src/pages/gd/Stake/index.tsx:69 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -2945,7 +2947,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:89 msgid "Total Rewards" msgstr "" @@ -3004,7 +3006,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:309 #: src/components/Popups/TransactionPopup.tsx:47 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3098,6 +3100,10 @@ msgstr "" msgid "Withdrew funds from {0}" msgstr "" +#: src/components/SideBar.tsx:213 +msgid "Xswap (XDC)" +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:392 msgid "You are creating UBI to thousands of people around the world." msgstr "" @@ -3185,6 +3191,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:333 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/pages/gd/Claim/Claim.tsx b/src/pages/gd/Claim/Claim.tsx index f9aac0ed6..ce2ef7110 100644 --- a/src/pages/gd/Claim/Claim.tsx +++ b/src/pages/gd/Claim/Claim.tsx @@ -19,6 +19,7 @@ const goodIdExplorerUrls = { `https://api.etherscan.io/v2/api?chainid=42220&apikey=${process.env.REACT_APP_ETHERSCAN_KEY}&`, FUSE: process.env.REACT_APP_GOODID_FUSE_EXPLORER ?? 'https://explorer.fuse.org/api?&', MAINNET: process.env.REACT_APP_GOODID_MAINNET_EXPLORER ?? '', + XDC: process.env.REACT_APP_GOODID_XDC_EXPLORER ?? 'https://xdc.blocksscan.io/api?&', } const ClaimPage = () => { diff --git a/src/pages/gd/Claim/ClaimBalance.tsx b/src/pages/gd/Claim/ClaimBalance.tsx index 1a186a133..da5c76c93 100644 --- a/src/pages/gd/Claim/ClaimBalance.tsx +++ b/src/pages/gd/Claim/ClaimBalance.tsx @@ -5,7 +5,6 @@ import { SupportedChains, useHasClaimed, useSwitchNetwork } from '@gooddollar/we import { useG$Price } from '@gooddollar/web3sdk-v2' import { useClaiming } from 'hooks/useClaiming' import { useNetworkModalToggle } from 'state/application/hooks' -import { BigNumber } from '@ethersproject/bignumber' import { QueryParams } from '@usedapp/core' import { useIsSimpleApp } from 'state/simpleapp/simpleapp' import { Fraction } from '@uniswap/sdk-core' @@ -30,7 +29,9 @@ export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) = const claimedCelo = useHasClaimed('CELO') const claimedFuse = useHasClaimed('FUSE') - const [claimedAlt, setClaimedAlt] = useState(true) + const claimedXdc = useHasClaimed('XDC') + + const [claimNext, setClaimNext] = useState() const toggleNetworkModal = useNetworkModalToggle() const { switchNetwork } = useSwitchNetwork() @@ -38,25 +39,28 @@ export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) = // don't show claim on alternative chain for simple mode const isSimpleApp = useIsSimpleApp() - //we select the alternative chain where a user is able to claim their UBI - const altChain = chainId === (SupportedChains.FUSE as number) ? SupportedChains[42220] : SupportedChains[122] - - // if claimed on alt chain, don't show claim on other chain button useEffect(() => { - chainId === (SupportedChains.FUSE as number) - ? setClaimedAlt((claimedCelo as unknown as BigNumber)?.isZero()) - : setClaimedAlt((claimedFuse as unknown as BigNumber)?.isZero()) - }, [chainId, claimedFuse, claimedCelo]) + if (!claimedCelo?.isZero() && Number(chainId) !== SupportedChains.CELO) { + return setClaimNext(SupportedChains.CELO) + } + if (!claimedXdc?.isZero() && Number(chainId) !== SupportedChains.XDC) { + return setClaimNext(SupportedChains.XDC) + } + if (!claimedFuse?.isZero() && Number(chainId) !== SupportedChains.FUSE) { + return setClaimNext(SupportedChains.FUSE) + } else setClaimNext(undefined) + }, [chainId, claimedFuse, claimedCelo, claimedXdc]) const switchChain = useCallback(() => { + if (!claimNext) return // 4902: Network is not added, and should be done manually // explanation to user is shown through network modal - switchNetwork(SupportedChains[altChain as keyof typeof SupportedChains]).catch((e: any) => { + switchNetwork(claimNext).catch((e: any) => { if (e.code === 4902) { toggleNetworkModal() } }) - }, [switchNetwork, altChain, toggleNetworkModal]) + }, [switchNetwork, claimNext, toggleNetworkModal]) return ( - {!isSimpleApp && !isMinipay && !claimedAlt && ( + {!isSimpleApp && !isMinipay && claimNext && ( { - const { account } = useEthers() + const { account, chainId } = useEthers() const [, payload] = useFeatureFlagWithPayload('goodid') const { enabled = false, whitelist, countries = '' } = payload ?? {} const { ethereum } = window @@ -24,7 +24,7 @@ const Claim = () => { if (payload === undefined || isGoodIdEnabled === undefined) return - return isGoodIdEnabled && !isMiniPay ? : + return isGoodIdEnabled && !isMiniPay && chainId !== 50 ? : } export default Claim diff --git a/src/pages/gd/Stake/Savings/index.tsx b/src/pages/gd/Stake/Savings/index.tsx index 50e62fd00..8c41d0f44 100644 --- a/src/pages/gd/Stake/Savings/index.tsx +++ b/src/pages/gd/Stake/Savings/index.tsx @@ -153,7 +153,7 @@ export const Savings: FC = () => {
{isMobile ? ( - + ) : ( { } > - +
)} diff --git a/src/pages/gd/Stake/index.tsx b/src/pages/gd/Stake/index.tsx index 8678d1fd0..5f3a4e5af 100644 --- a/src/pages/gd/Stake/index.tsx +++ b/src/pages/gd/Stake/index.tsx @@ -2,8 +2,8 @@ import { Layout, MarketHeader } from 'components/gd/sushi' import { t } from '@lingui/macro' import AsyncTokenIcon from 'components/gd/sushi/AsyncTokenIcon' import ListHeaderWithSort from 'components/gd/sushi/ListHeaderWithSort' -import { Fragment, useState } from 'react' -import { useFeatureFlag } from 'posthog-react-native' +import React, { Fragment, useState } from 'react' +import { useFeatureFlagWithPayload } from 'posthog-react-native' import { useAppKitNetwork } from '@reown/appkit/react' import useSearchAndSort from 'hooks/useSearchAndSort' @@ -18,6 +18,7 @@ import { QuestionHelper } from 'components' import { Savings } from './Savings' import { disableTestnetMain } from 'constants/index' import AppNotice from 'components/AppNotice' +import { ButtonOutlined } from 'components/ButtonLegacy' import { LIQUIDITY_PROTOCOL, @@ -43,6 +44,7 @@ const StakeTable = ({ network, setActiveStake, setActiveTableName, + disableStaking, }: { list: any error: Error | undefined @@ -52,6 +54,7 @@ const StakeTable = ({ network: DAO_NETWORK setActiveStake: any setActiveTableName: () => any + disableStaking: boolean }) => { const { i18n } = useLingui() @@ -192,6 +195,30 @@ const StakeTable = ({ {stake.rewards.GDAO.toFixed(2, { groupSeparator: ',' })}{' '} {stake.rewards.GDAO.currency.symbol}
+ {!disableStaking ? ( +
+ { + sendData({ + event: 'stake', + action: 'stake_start', + token: stake.tokens.A.symbol, + type: stake.protocol, + network, + }) + setActiveStake(stake) + setActiveTableName() + }} + ButtonEl={ButtonOutlined} + > + {i18n._(t`Stake`)} + +
+ ) : null}
@@ -352,6 +379,32 @@ const StakeTable = ({ + {!disableStaking ? ( + + { + sendData({ + event: 'stake', + action: 'stake_start', + token: stake.tokens.A.symbol, + type: stake.protocol, + network: network, + }) + setActiveStake(stake) + setActiveTableName() + }} + > + {' '} + {i18n._(t`Stake`)} + + + ) : null} )} @@ -390,7 +443,8 @@ export default function Stakes(): JSX.Element | null { return stakes }, [web3, mainnetWeb3]) - const mainnetStakesEnabled = useFeatureFlag('mainnet-stakes') + const [, mainnetStakesEnabled] = useFeatureFlagWithPayload('mainnet-stakes') + const [, governanceStakesEnabled] = useFeatureFlagWithPayload('governance-stakes') const sorted = useSearchAndSort( stakes, @@ -414,31 +468,41 @@ export default function Stakes(): JSX.Element | null { {' '} - {mainnetStakesEnabled && ( + {!mainnetStakesEnabled && ( <> - - {isMobile ?

{i18n._(t`GoodStakes`)}

:
} - setActiveTableName('GoodStakes')} - /> )} + + {isMobile ?

{i18n._(t`GoodStakes`)}

:
} + setActiveTableName('GoodStakes')} + disableStaking={!mainnetStakesEnabled} + />
+ {!governanceStakesEnabled && ( + <> + + + )} setActiveTableName('GoodDAO Staking')} + disableStaking={!governanceStaking} /> setActiveStake(undefined)}> diff --git a/src/utils/env.ts b/src/utils/env.ts index fdce74d76..9aa4bd009 100644 --- a/src/utils/env.ts +++ b/src/utils/env.ts @@ -20,12 +20,12 @@ export function getEnv(defaultValue = 'development'): string { return defaultValue } - if (network === 'fuse' || network === 'development-celo') { + if (network === 'fuse') { return 'development' } - if (network.includes('-celo')) { - const baseNetwork = network.replace('-celo', '') + if (network.includes('-')) { + const baseNetwork = network.split('-')[0] return baseNetwork } diff --git a/src/utils/index.ts b/src/utils/index.ts index c0fe43fc4..44da61051 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -235,137 +235,21 @@ const builders = { } }, - fantom: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://ftmscan.com' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - xdai: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://blockscout.com/poa/xdai` - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - case 'token': - return `${prefix}/tokens/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - bscscan: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://${chainName ? `${chainName}.` : ''}bscscan.com` - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - matic: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://explorer-${chainName}.maticvigil.com` + fuse: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { + const prefix = 'https://explorer.fuse.io/' switch (type) { case 'transaction': return `${prefix}/tx/${data}` case 'token': return `${prefix}/tokens/${data}` + case 'block': + return `${prefix}/blocks/${data}` default: return `${prefix}/${type}/${data}` } }, - - // token is not yet supported for arbitrum - arbitrum: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://explorer.offchainlabs.com/#` - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - case 'token': - return prefix - default: - return `${prefix}/${type}/${data}` - } - }, - moonbase: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://moonbeam-explorer.netlify.app' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - case 'address': - return `${prefix}/address/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - avalanche: (chainName: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://cchain.explorer.avax${chainName ? `-${chainName}` : ''}.network` - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - heco: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = `https://${chainName ? `${chainName}.` : ''}hecoinfo.com` - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - harmony: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://explorer.harmony.one/#' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - - harmonyTestnet: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://explorer.pops.one/#' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - okex: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://www.oklink.com/okexchain' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - case 'token': - return `${prefix}/tokenAddr/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - okexTestnet: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://www.oklink.com/okexchain-test' - switch (type) { - case 'transaction': - return `${prefix}/tx/${data}` - case 'token': - return `${prefix}/tokenAddr/${data}` - default: - return `${prefix}/${type}/${data}` - } - }, - fuse: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://explorer.fuse.io/' + celo: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { + const prefix = 'https://celoscan.io/' switch (type) { case 'transaction': return `${prefix}/tx/${data}` @@ -377,8 +261,8 @@ const builders = { return `${prefix}/${type}/${data}` } }, - celo: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { - const prefix = 'https://celoscan.io/' + xdc: (chainName = '', data: string, type: 'transaction' | 'token' | 'address' | 'block') => { + const prefix = 'https://xdcscan.com/' switch (type) { case 'transaction': return `${prefix}/tx/${data}` @@ -404,98 +288,18 @@ const chains: ChainObject = { chainName: '', builder: builders.etherscan, }, - [ChainId.ROPSTEN]: { - chainName: 'ropsten', - builder: builders.etherscan, - }, - [ChainId.RINKEBY]: { - chainName: 'rinkeby', - builder: builders.etherscan, - }, - [ChainId.GÖRLI]: { - chainName: 'goerli', - builder: builders.etherscan, - }, - [ChainId.KOVAN]: { - chainName: 'kovan', - builder: builders.etherscan, - }, - [ChainId.MATIC]: { - chainName: 'mainnet', - builder: builders.matic, - }, - [ChainId.MATIC_TESTNET]: { - chainName: 'mumbai', - builder: builders.matic, - }, - [ChainId.FANTOM]: { - chainName: '', - builder: builders.fantom, - }, - [ChainId.FANTOM_TESTNET]: { - chainName: 'testnet', - builder: builders.fantom, - }, - [ChainId.XDAI]: { - chainName: 'xdai', - builder: builders.xdai, - }, - [ChainId.BSC]: { - chainName: '', - builder: builders.bscscan, - }, - [ChainId.BSC_TESTNET]: { - chainName: 'testnet', - builder: builders.bscscan, - }, - [ChainId.ARBITRUM]: { - chainName: 'arbitrum', - builder: builders.arbitrum, - }, - [ChainId.MOONBASE]: { - chainName: '', - builder: builders.moonbase, - }, - [ChainId.AVALANCHE]: { - chainName: '', - builder: builders.avalanche, - }, - [ChainId.FUJI]: { - chainName: 'test', - builder: builders.avalanche, - }, - [ChainId.HECO]: { - chainName: '', - builder: builders.heco, - }, - [ChainId.HECO_TESTNET]: { - chainName: 'testnet', - builder: builders.heco, - }, - [ChainId.HARMONY]: { - chainName: '', - builder: builders.harmony, - }, - [ChainId.HARMONY_TESTNET]: { - chainName: '', - builder: builders.harmonyTestnet, - }, - [ChainId.OKEX]: { - chainName: '', - builder: builders.okex, - }, - [ChainId.OKEX_TESTNET]: { - chainName: '', - builder: builders.okexTestnet, - }, [AdditionalChainId.FUSE]: { - chainName: '', + chainName: 'FUSE', builder: builders.fuse, }, [AdditionalChainId.CELO]: { - chainName: '', + chainName: 'CELO', builder: builders.celo, }, + [AdditionalChainId.XDC]: { + chainName: 'XDC', + builder: builders.xdc, + }, } export function getExplorerLink( diff --git a/src/utils/swapErrors.ts b/src/utils/swapErrors.ts new file mode 100644 index 000000000..8d7e1a2ea --- /dev/null +++ b/src/utils/swapErrors.ts @@ -0,0 +1,47 @@ +function sanitizeErrorMessage(message: string): string { + return message + .replace(/[<>]/g, '') + .replace(/javascript:/gi, '') + .replace(/on\w+=/gi, '') + .substring(0, 200) +} + +export function isDivisionByZero(msg: string): boolean { + return /(division by zero|divide by zero|infinity)/i.test(msg) +} + +export function isNaNError(msg: string): boolean { + return /\bnan\b/i.test(msg) +} + +export function isPriceImpactError(msg: string): boolean { + return /(price impact|high.*impact|exceeds.*impact|impact.*high|impact.*too.*high|slippage.*high|liquidity.*insufficient|insufficient.*liquidity)/i.test( + msg + ) +} + +export function classifySwapError(raw: string) { + const sanitized = sanitizeErrorMessage(raw) + if (isDivisionByZero(sanitized)) { + return { + type: 'division_by_zero_error' as const, + message: 'Invalid calculation: division by zero detected. Please try a different trade amount.', + } + } + + if (isNaNError(sanitized)) { + return { + type: 'calculation_error' as const, + message: 'Invalid calculation detected. This may be due to extreme market conditions or invalid input.', + } + } + + if (isPriceImpactError(sanitized)) { + return { + type: 'price_impact_error' as const, + message: 'This trade would have 100% price impact. Reduce your trade size or check token liquidity.', + } + } + + return { type: 'generic_error' as const, message: sanitized } +} diff --git a/yarn.lock b/yarn.lock index 84bcd69ca..a44eac6d1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4918,15 +4918,16 @@ __metadata: languageName: node linkType: hard -"@gooddollar/good-design@npm:^0.4.21": - version: 0.4.21 - resolution: "@gooddollar/good-design@npm:0.4.21" +"@gooddollar/good-design@npm:^0.4.24": + version: 0.4.24 + resolution: "@gooddollar/good-design@npm:0.4.24" dependencies: "@babel/core": ^7.18.10 "@babel/runtime": ^7.18.9 "@formatjs/intl-locale": ^4.0.0 "@formatjs/intl-pluralrules": ^5.2.14 - "@gooddollar/goodprotocol": ^2.0.32 + "@gooddollar/goodprotocol": ^2.0.34-beta.1 + "@gooddollar/web3sdk-v2": "*" "@lingui/core": ^4.11.2 "@lingui/react": ^4.11.2 "@magiklabs/react-sdk": ^1.0.8 @@ -4964,7 +4965,7 @@ __metadata: react-use-promise: ^0.5.0 react-use-wizard: ^2.3.0 require-from-string: ^2.0.2 - checksum: 00c5bd5905f3dfa2e6895990dd4448d1c99d857e53ce6dcaf65b362bca543061b0237c80af7b284d8cd620a8e9dd618de7cebc672708cb783b9282dee21d9bb3 + checksum: f71c7b27dba2c4e4adaf24030246bc43bb706dab49fc1e9071931c4d045781f1034973493d56f92b9d21ee7a4adcdc4b805dc77bca734e480cc9d216a6c8ba63 languageName: node linkType: hard @@ -4990,7 +4991,14 @@ __metadata: languageName: node linkType: hard -"@gooddollar/goodprotocol@npm:2.0.32, @gooddollar/goodprotocol@npm:^2.0.32": +"@gooddollar/goodprotocol@npm:2.0.34-beta.1, @gooddollar/goodprotocol@npm:^2.0.34-beta.1": + version: 2.0.34-beta.1 + resolution: "@gooddollar/goodprotocol@npm:2.0.34-beta.1" + checksum: a86bd81d9eb3f350d1d3238dc95b60696f409d2ac8f0bea939838e6d8e371235483a6ccb150fb4c544ba3dacc5b76322ac3ce43b2e90a540cb094c5b022e5be4 + languageName: node + linkType: hard + +"@gooddollar/goodprotocol@npm:^2.0.32": version: 2.0.32 resolution: "@gooddollar/goodprotocol@npm:2.0.32" checksum: aeb8e066c110f1167a29528610dfe57ee1a4ea9a7d7d45f84b1494fc002efc966032b0959ab524b404f212fcad2ebcc0c85b2b6154f9010b42c2ecb797daf6e2 @@ -5013,10 +5021,10 @@ __metadata: "@ethersproject/experimental": ^5.0.1 "@fontsource/dm-sans": ^4.2.2 "@fullhuman/postcss-purgecss": ^4.0.3 - "@gooddollar/good-design": ^0.4.21 - "@gooddollar/goodprotocol": 2.0.32 + "@gooddollar/good-design": ^0.4.24 + "@gooddollar/goodprotocol": 2.0.34-beta.1 "@gooddollar/web3sdk": ^0.1.50 - "@gooddollar/web3sdk-v2": ^0.4.16 + "@gooddollar/web3sdk-v2": ^0.4.18 "@headlessui/react": 1.5.0 "@hot-loader/react-dom": ^17.0.1 "@lingui/cli": ^4.0.0 @@ -5139,6 +5147,7 @@ __metadata: react: ^18.3.1 react-device-detect: ^1.6.2 react-dom: ^18.3.1 + react-error-boundary: ^6.0.0 react-error-overlay: 6.0.9 react-feather: ^2.0.8 react-ga: ^2.5.7 @@ -5197,9 +5206,9 @@ __metadata: languageName: unknown linkType: soft -"@gooddollar/web3sdk-v2@npm:^0.4.16": - version: 0.4.16 - resolution: "@gooddollar/web3sdk-v2@npm:0.4.16" +"@gooddollar/web3sdk-v2@npm:*, @gooddollar/web3sdk-v2@npm:^0.4.18": + version: 0.4.18 + resolution: "@gooddollar/web3sdk-v2@npm:0.4.18" dependencies: "@amplitude/analytics-browser": ^1.6.4 "@amplitude/analytics-react-native": ^0.7.0 @@ -5210,7 +5219,7 @@ __metadata: "@gooddollar/bridge-contracts": ^1.0.17 "@gooddollar/goodcollective-contracts": ^1.3.0 "@gooddollar/goodcollective-sdk": ^1.3.3 - "@gooddollar/goodprotocol": ^2.0.32 + "@gooddollar/goodprotocol": ^2.0.34-beta.1 "@orbisclub/orbis-sdk": ^0.4.87 "@react-native-community/geolocation": 3.1.0 "@react-native-firebase/analytics": ^16.4.6 @@ -5252,7 +5261,7 @@ __metadata: react-native-web: "*" viem: 2.* wagmi: 2.* - checksum: bd7d94e115687e99a35b7a526386edf22cd16f865066bfd596ce3e745cdef30fa5c4944daee5aa6b173cbc40329e1b7b718c1e092f5a3a217085a75444741bf1 + checksum: 84cde425a74bec314f148391eb8fdccf06d30b77da0e85cc12b4ca8f215333352fb013b6298b76651852f73ea82a285f60ff7d2a143d58d11425a287ba309794 languageName: node linkType: hard @@ -12414,7 +12423,7 @@ __metadata: "@uniswap/widgets@patch:@uniswap/widgets@npm%3A2.59.0#./.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch::locator=%40gooddollar%2Fprotocol-ui%40workspace%3A.": version: 2.59.0 - resolution: "@uniswap/widgets@patch:@uniswap/widgets@npm%3A2.59.0#./.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch::version=2.59.0&hash=2fee72&locator=%40gooddollar%2Fprotocol-ui%40workspace%3A." + resolution: "@uniswap/widgets@patch:@uniswap/widgets@npm%3A2.59.0#./.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch::version=2.59.0&hash=8bb720&locator=%40gooddollar%2Fprotocol-ui%40workspace%3A." dependencies: "@babel/runtime": ">=7.17.0" "@fontsource/ibm-plex-mono": ^4.5.1 @@ -12487,7 +12496,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 6ede2cfbf6633dda76d66925de64ac603f40af5b1d71697d9f46546def67717571f0126fb550c806803b04096e46d18e30310ed036a7def98dae4fed0d652c4f + checksum: 968b4fd85294ec13c54efac4425229d6957a5302c6feeb3e16cdaff72c92bd94575bfcae2c88325d0f9e07b397926c227dd0729b9e51a0eaf49c4e6b53d98208 languageName: node linkType: hard @@ -16642,9 +16651,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001464, caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001600 - resolution: "caniuse-lite@npm:1.0.30001600" - checksum: 1aae03be0e9f96163e88b9305531ef8db0e01f224aff545c61a32ce0b0ca323e22531bf680bacac3e34f98e23f71ac31a21b328fa0fcbbecea65a2c2638c70c4 + version: 1.0.30001727 + resolution: "caniuse-lite@npm:1.0.30001727" + checksum: 2bc6112f242701198a99c17713d4409be9b404d09005f34f351ec29a4ea46c054e7aa4982bc16f06b81b7a375cbc61c937e89650170cbce84db772a376ed3963 languageName: node linkType: hard @@ -30263,6 +30272,17 @@ __metadata: languageName: node linkType: hard +"react-error-boundary@npm:^6.0.0": + version: 6.0.0 + resolution: "react-error-boundary@npm:6.0.0" + dependencies: + "@babel/runtime": ^7.12.5 + peerDependencies: + react: ">=16.13.1" + checksum: d6807004d2b5c0a971b433b8698d3c95ebb43d407b304d87d59d57ba2a08d10113e481031ca778a1b8529bbddb421c96e508dbd9a5b5d6f084f1d1f653b05941 + languageName: node + linkType: hard + "react-error-overlay@npm:6.0.9": version: 6.0.9 resolution: "react-error-overlay@npm:6.0.9" From 35c9a1f4e356b192f3800598a8da1fbed5f23534 Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Fri, 3 Oct 2025 21:08:51 +0100 Subject: [PATCH 07/36] Address review: CELO default chain helper, explorer defaults, MiniPay refactor, useConnectionInfo, restore XDC, clean TODOs, fix keys and ESLint warnings --- src/components/AccountDetails/Transaction.tsx | 6 ++- src/components/AccountDetails/index.tsx | 9 +++-- src/components/BlockNativeOnboard/index.tsx | 5 +-- .../RemoveLiquidityReceiveDetails.tsx | 9 +++-- src/components/NetworkModal/index.tsx | 1 - src/components/Popups/TransactionPopup.tsx | 3 +- src/components/StyledMenu/SubMenu.tsx | 6 +-- src/components/WalletModal/index.tsx | 1 - src/hooks/useConnectionInfo.ts | 21 ++++++++++ src/language/locales/af/catalog.po | 38 +++++++++---------- src/language/locales/ar/catalog.po | 38 +++++++++---------- src/language/locales/ca/catalog.po | 38 +++++++++---------- src/language/locales/cs/catalog.po | 38 +++++++++---------- src/language/locales/da/catalog.po | 38 +++++++++---------- src/language/locales/de/catalog.po | 38 +++++++++---------- src/language/locales/el/catalog.po | 38 +++++++++---------- src/language/locales/en/catalog.po | 38 +++++++++---------- src/language/locales/es-419/catalog.po | 38 +++++++++---------- src/language/locales/es/catalog.po | 38 +++++++++---------- src/language/locales/fi/catalog.po | 38 +++++++++---------- src/language/locales/fr/catalog.po | 38 +++++++++---------- src/language/locales/he/catalog.po | 38 +++++++++---------- src/language/locales/hi/catalog.po | 38 +++++++++---------- src/language/locales/hu/catalog.po | 38 +++++++++---------- src/language/locales/it/catalog.po | 38 +++++++++---------- src/language/locales/ja/catalog.po | 38 +++++++++---------- src/language/locales/ko/catalog.po | 38 +++++++++---------- src/language/locales/nl/catalog.po | 38 +++++++++---------- src/language/locales/no/catalog.po | 38 +++++++++---------- src/language/locales/pl/catalog.po | 38 +++++++++---------- src/language/locales/pt-BR/catalog.po | 38 +++++++++---------- src/language/locales/pt/catalog.po | 38 +++++++++---------- src/language/locales/ro/catalog.po | 38 +++++++++---------- src/language/locales/ru/catalog.po | 38 +++++++++---------- src/language/locales/sr/catalog.po | 38 +++++++++---------- src/language/locales/sv/catalog.po | 38 +++++++++---------- src/language/locales/tr/catalog.po | 38 +++++++++---------- src/language/locales/uk/catalog.po | 38 +++++++++---------- src/language/locales/vi/catalog.po | 38 +++++++++---------- src/language/locales/zh-CN/catalog.po | 38 +++++++++---------- src/language/locales/zh-TW/catalog.po | 38 +++++++++---------- src/language/locales/zh/catalog.po | 38 +++++++++---------- src/utils/chain.ts | 6 +++ 43 files changed, 677 insertions(+), 644 deletions(-) create mode 100644 src/hooks/useConnectionInfo.ts create mode 100644 src/utils/chain.ts diff --git a/src/components/AccountDetails/Transaction.tsx b/src/components/AccountDetails/Transaction.tsx index 1098f0b0d..75f9b0b54 100644 --- a/src/components/AccountDetails/Transaction.tsx +++ b/src/components/AccountDetails/Transaction.tsx @@ -4,6 +4,7 @@ import styled from 'styled-components' import { useAllTransactions } from '../../state/transactions/hooks' import { ExternalLink } from '../../theme' import { getExplorerLink } from '../../utils' +import { getSafeChainId } from 'utils/chain' import Loader from '../Loader' import { RowFixed } from '../Row' import { useAppKitNetwork } from '@reown/appkit/react' @@ -81,7 +82,10 @@ export default function Transaction({ hash }: { hash: string }): any { return ( - + {summary} ↗ diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index 7b03b6c37..48d11c791 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -15,6 +15,7 @@ import { AppDispatch } from '../../state' import { clearAllTransactions } from '../../state/transactions/actions' import { ExternalLink } from 'theme' import { getExplorerLink, shortenAddress } from '../../utils' +import { getSafeChainId } from 'utils/chain' import { ButtonOutlined } from '../gd/Button' import Title from '../gd/Title' import { AutoRow } from '../Row' @@ -227,8 +228,10 @@ export default function AccountDetails({ const { walletInfo } = useWalletInfo() + const miniPay = React.useMemo(() => isMiniPay(), []) + function formatConnectorName() { - const name = isMiniPay() ? 'MiniPay' : walletInfo?.name ?? '' + const name = miniPay ? 'MiniPay' : walletInfo?.name ?? '' return `${i18n._(t`Connected with`)} ${name}` } @@ -245,7 +248,7 @@ export default function AccountDetails({ }, [toggleWalletModal, disconnect, open, network, sendData]) const clearAllTransactionsCallback = useCallback(() => { - if (chainId) dispatch(clearAllTransactions({ chainId: +(chainId ?? 1) })) + if (chainId) dispatch(clearAllTransactions({ chainId: getSafeChainId(chainId) })) }, [dispatch, chainId]) const goToExplorer = (e: any, url: string) => { @@ -305,7 +308,7 @@ export default function AccountDetails({ )} {chainId && address && ( { { ) } -// Note: OnboardProviderWrapper is no longer needed as we're using AppKit -// The AppKitProvider is already set up in src/index.tsx +// diff --git a/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx b/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx index 567638567..3a59b8688 100644 --- a/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx +++ b/src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx @@ -2,6 +2,7 @@ import React from 'react' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import { Currency, currencyEquals, ETHER, WETH } from '@sushiswap/sdk' +import { getSafeChainId } from 'utils/chain' import { useAppKitNetwork } from '@reown/appkit/react' import { AutoColumn } from '../../components/Column' @@ -45,7 +46,7 @@ export default function RemoveLiquidityReceiveDetails({ currencyA === ETHER ? WETH[chainId].address : currencyId(currencyA) }/${currencyB === ETHER ? WETH[chainId].address : currencyId(currencyB)}`} > - Receive W{Currency.getNativeCurrencySymbol(+(chainId ?? 1))} + Receive W{Currency.getNativeCurrencySymbol(getSafeChainId(chainId))} ) : hasETH ? ( - Receive {Currency.getNativeCurrencySymbol(+(chainId ?? 1))} + Receive {Currency.getNativeCurrencySymbol(getSafeChainId(chainId))} ) : null} @@ -71,14 +72,14 @@ export default function RemoveLiquidityReceiveDetails({
{amountA}
-
{currencyA?.getSymbol(+(chainId ?? 1))}
+
{currencyA?.getSymbol(getSafeChainId(chainId))}
{amountB}
-
{currencyB?.getSymbol(+(chainId ?? 1))}
+
{currencyB?.getSymbol(getSafeChainId(chainId))}
diff --git a/src/components/NetworkModal/index.tsx b/src/components/NetworkModal/index.tsx index b15d856d4..b33fec8b5 100644 --- a/src/components/NetworkModal/index.tsx +++ b/src/components/NetworkModal/index.tsx @@ -64,7 +64,6 @@ export default function NetworkModal(): JSX.Element | null { const { setSelectedChain } = useSelectedChain() const { initialized } = useAppKitState() const { chainId } = useAppKitNetwork() - // TODO const error = false const sendData = useSendAnalyticsData() const { switchNetwork } = useSwitchNetwork() diff --git a/src/components/Popups/TransactionPopup.tsx b/src/components/Popups/TransactionPopup.tsx index 6d30281ab..e7dfd90f9 100644 --- a/src/components/Popups/TransactionPopup.tsx +++ b/src/components/Popups/TransactionPopup.tsx @@ -6,6 +6,7 @@ import { useAppKitNetwork } from '@reown/appkit/react' import { TYPE, TwTheme } from '../../theme' import { ExternalLink } from '../../theme/components' import { getExplorerLink } from '../../utils' +import { getSafeChainId } from 'utils/chain' import { AutoColumn } from '../Column' import { AutoRow } from '../Row' import { t } from '@lingui/macro' @@ -45,7 +46,7 @@ export default function TransactionPopup({ {chainId && ( diff --git a/src/components/StyledMenu/SubMenu.tsx b/src/components/StyledMenu/SubMenu.tsx index 020cb97f7..00aeb4ac5 100644 --- a/src/components/StyledMenu/SubMenu.tsx +++ b/src/components/StyledMenu/SubMenu.tsx @@ -16,11 +16,11 @@ export const SubMenuItems = ({ }) => items .filter((ext) => ext.show) - .map(({ label, url, dataAttr, withIcon, route, text }, index) => { + .map(({ label, url, dataAttr, withIcon, route, text }) => { if (url) { return ( - + {text} diff --git a/src/components/WalletModal/index.tsx b/src/components/WalletModal/index.tsx index 4d7d1cabc..47ec1bdf1 100644 --- a/src/components/WalletModal/index.tsx +++ b/src/components/WalletModal/index.tsx @@ -61,7 +61,6 @@ export default function WalletModal({ const { i18n } = useLingui() const { address } = useAppKitAccount() - // TODO const error = false const [walletView, setWalletView] = useState(WALLET_VIEWS.ACCOUNT) diff --git a/src/hooks/useConnectionInfo.ts b/src/hooks/useConnectionInfo.ts new file mode 100644 index 000000000..a39247285 --- /dev/null +++ b/src/hooks/useConnectionInfo.ts @@ -0,0 +1,21 @@ +import { useAppKitAccount, useAppKitNetwork, useWalletInfo } from '@reown/appkit/react' + +export interface ConnectionInfo { + address?: string + chainId?: number + walletInfo?: ReturnType['walletInfo'] + isConnected: boolean +} + +export const useConnectionInfo = (): ConnectionInfo => { + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const { walletInfo } = useWalletInfo() + + return { + address, + chainId: typeof chainId === 'string' ? Number(chainId) : chainId, + walletInfo, + isConnected: Boolean(address), + } +} diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 020388c7a..af64b70af 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Rekening" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Duidelik alle" @@ -2888,7 +2888,7 @@ msgstr "Koppel aan 'n beursie" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Verbind met" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Kopieer adres" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "VERMENIGVULDIGER" msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "netwerk" @@ -3148,8 +3148,8 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "op die" @@ -3213,7 +3213,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Kyk op verkenner" @@ -3573,8 +3573,8 @@ msgstr "Wag vir Bevestiging" msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Jy is tans op" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Jy sal ontvang:" @@ -3720,6 +3720,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 8d9ec4096..efca48c41 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "الحساب" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "امسح الكل" @@ -2888,7 +2888,7 @@ msgstr "الاتصال بمحفظة" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "متصل بـ" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "عنوان النسخ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "مضاعف" msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "شبكة الاتصال" @@ -3148,8 +3148,8 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "على" @@ -3213,7 +3213,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "عرض على المستكشف" @@ -3573,8 +3573,8 @@ msgstr "انتظار التأكيد" msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "سوف تتلقى:" @@ -3720,6 +3720,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index d7563731c..7d04554f6 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 0dcc17c00..0e5e6da04 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 18bef35b6..163df65c4 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index ef74b6359..b85ef1feb 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Konto" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Alles löschen" @@ -2888,7 +2888,7 @@ msgstr "Verbinden Sie sich mit einer Brieftasche" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Verbunden mit" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Adresse kopieren." @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "MULTIPLIKATOR" msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "Netzwerk" @@ -3148,8 +3148,8 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "auf der" @@ -3213,7 +3213,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ansicht auf Explorer" @@ -3573,8 +3573,8 @@ msgstr "Auf Bestätigung warten" msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Du surfe derzeit" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Du wirst erhalten:" @@ -3720,6 +3720,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 48f08d1e1..4dd6c052d 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 28e28057c..bd3693ff8 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index ea2b6caf4..d77459316 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -463,8 +463,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -490,8 +490,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -545,7 +545,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -855,8 +855,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -881,8 +881,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -929,8 +929,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -956,7 +956,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -1012,6 +1012,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index ceee54b73..0f5e83c63 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Cuenta" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Limpiar todo" @@ -2888,7 +2888,7 @@ msgstr "Conectarse a una billetera" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Conectado con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Dirección de copia" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "MULTIPLICADORA" msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "la red" @@ -3148,8 +3148,8 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "sobre el" @@ -3213,7 +3213,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver en el explorador" @@ -3573,8 +3573,8 @@ msgstr "Esperando confirmación" msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Actualmente estás navegando" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Usted recibirá:" @@ -3720,6 +3720,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 4841625d9..e8acb79b3 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 9ab60027f..f5f496cfe 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Connecter un portefeuille" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Voir sur l'explorateur" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 507a2aee0..8aa6bf58b 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "נקה את כל" @@ -2888,7 +2888,7 @@ msgstr "התחבר לארנק" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "מחובר עם" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "העתקת העתקה" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "מַכפִּיל" msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "רֶשֶׁת" @@ -3148,8 +3148,8 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "על ה" @@ -3213,7 +3213,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "הצג על אקספלורר" @@ -3573,8 +3573,8 @@ msgstr "מחכה לאישור" msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "אתה תקבל:" @@ -3720,6 +3720,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 27e26a55b..50b4abae2 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -1643,7 +1643,7 @@ msgstr "एक वॉलेट से कनेक्ट करें" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -1876,8 +1876,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -1903,8 +1903,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -2290,8 +2290,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "एक्सप्लोरर पर देखें" @@ -2328,8 +2328,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2392,8 +2392,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -2419,7 +2419,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -2475,6 +2475,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 010b5ee81..3fa5f6c90 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index b3cabc71c..2f0b11e31 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Cancella tutto" @@ -2888,7 +2888,7 @@ msgstr "Collega wallet" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Connesso con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Copia indirizzo" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "MOLTIPLICATORE" msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "Rete" @@ -3148,8 +3148,8 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "sul" @@ -3213,7 +3213,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Visualizza sull'explorer" @@ -3573,8 +3573,8 @@ msgstr "Aspettando la conferma" msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Stai attualmente navigando" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Riceverai:" @@ -3720,6 +3720,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 31ff45425..d51c41cab 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "ウォレットに接続する" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "エクスプローラーで表示" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 7e74a5d49..f4e39bc59 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "지갑에 연결" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "탐색기에서보기" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 37c955d0c..d8574cc8b 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 810bc61fa..b941a5e9b 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 180b7ab34..f598e0483 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 0839c8fee..2a71953f1 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Conecte a uma carteira" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver no explorer" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index a874c1971..e5039a55b 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index debd02416..a700dcc0b 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Cont" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Curata tot" @@ -2888,7 +2888,7 @@ msgstr "Conectați-vă la un portofel" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Conectat cu" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Adresa de copiere" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "Multiplicator." msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "reţea" @@ -3148,8 +3148,8 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "pe" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Vizualizare pe explorator" @@ -3573,8 +3573,8 @@ msgstr "Așteptați confirmarea" msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "În prezent, navigați" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Vei primi:" @@ -3720,6 +3720,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index dcccc40e9..407cb1eed 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Счет" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Очистить все" @@ -2888,7 +2888,7 @@ msgstr "Подключиться к кошельку" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Связаны с" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Копировать адрес" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "Мультипликатор" msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "сеть" @@ -3148,8 +3148,8 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "на" @@ -3213,7 +3213,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Посмотреть в проводнике" @@ -3573,8 +3573,8 @@ msgstr "Ожидание подтверждения" msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Вы получите:" @@ -3720,6 +3720,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index bdbe4c77a..2f1885ed0 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 0c5114cf0..824828f62 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 25f559a21..87fdb9cce 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index d3e399a70..dcad88d0e 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -3148,8 +3148,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3573,8 +3573,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 724c0b947..da755442a 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "Tài khoản" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2888,7 +2888,7 @@ msgstr "Kết nối với ví" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "Kết nối với" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "Số nhân" msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "mạng" @@ -3148,8 +3148,8 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "trên" @@ -3213,7 +3213,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Xem trên explorer" @@ -3573,8 +3573,8 @@ msgstr "Chờ đợi sự xác nhận" msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Bạn cần ký giao dịch trong ví của bạn" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" @@ -3720,6 +3720,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 81dc76616..efbe18c37 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "帐户" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "连接钱包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "与" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "复制地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "乘数" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "网络" @@ -3148,8 +3148,8 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "在这一点" @@ -3213,7 +3213,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "最近的交易" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在浏览器查看" @@ -3573,8 +3573,8 @@ msgstr "等待确认中" msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "您目前正在浏览" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "您将收到:" @@ -3720,6 +3720,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 086f53c96..6a6c4d96e 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "帳戶" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "連接錢包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "與" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "複製地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -3121,8 +3121,8 @@ msgstr "乘數" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "網絡" @@ -3148,8 +3148,8 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "在這一點" @@ -3213,7 +3213,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "最近的交易" @@ -3535,8 +3535,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在瀏覽器查看" @@ -3573,8 +3573,8 @@ msgstr "等待確認中" msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3637,8 +3637,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "您目前正在瀏覽" @@ -3664,7 +3664,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "您將收到:" @@ -3720,6 +3720,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 9b8d3f1aa..b18fa770d 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:266 msgid "Account" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:287 +#: src/components/AccountDetails/index.tsx:290 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:329 msgid "Clear all" msgstr "" @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:232 +#: src/components/AccountDetails/index.tsx:235 msgid "Connected with" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:303 +#: src/components/AccountDetails/index.tsx:306 msgid "Copy address" msgstr "" @@ -2405,7 +2405,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:278 +#: src/components/AccountDetails/index.tsx:281 msgid "Disconnect" msgstr "" @@ -2592,8 +2592,8 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:146 -#: src/components/NetworkModal/index.tsx:195 +#: src/components/NetworkModal/index.tsx:145 +#: src/components/NetworkModal/index.tsx:194 msgid "network" msgstr "" @@ -2619,8 +2619,8 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:145 -#: src/components/NetworkModal/index.tsx:194 +#: src/components/NetworkModal/index.tsx:144 +#: src/components/NetworkModal/index.tsx:193 msgid "on the" msgstr "" @@ -2684,7 +2684,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:324 +#: src/components/AccountDetails/index.tsx:327 msgid "Recent Transactions" msgstr "" @@ -3006,8 +3006,8 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:309 -#: src/components/Popups/TransactionPopup.tsx:47 +#: src/components/AccountDetails/index.tsx:312 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3044,8 +3044,8 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:125 -#: src/components/NetworkModal/index.tsx:174 +#: src/components/NetworkModal/index.tsx:124 +#: src/components/NetworkModal/index.tsx:173 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3108,8 +3108,8 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:141 -#: src/components/NetworkModal/index.tsx:190 +#: src/components/NetworkModal/index.tsx:140 +#: src/components/NetworkModal/index.tsx:189 msgid "You are currently browsing" msgstr "" @@ -3135,7 +3135,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:40 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" @@ -3191,6 +3191,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:333 +#: src/components/AccountDetails/index.tsx:336 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/utils/chain.ts b/src/utils/chain.ts new file mode 100644 index 000000000..a95379884 --- /dev/null +++ b/src/utils/chain.ts @@ -0,0 +1,6 @@ +export const DEFAULT_CHAIN_ID = 42220 + +export function getSafeChainId(chainId?: number | string | null): number { + const numeric = typeof chainId === 'string' ? Number(chainId) : chainId + return typeof numeric === 'number' && Number.isFinite(numeric) ? numeric : DEFAULT_CHAIN_ID +} From aac96e6e200cadd6fb3370a374b9293ea251df33 Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Fri, 3 Oct 2025 21:18:23 +0100 Subject: [PATCH 08/36] Refactor: useConnectionInfo rollout (partial), clarify SwapCelo handleError, add wallet QA checklist --- src/pages/gd/Swap/SwapCelo/UniSwap.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx index 10c6761ee..76c0c95d8 100644 --- a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx +++ b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx @@ -18,6 +18,7 @@ import { ChainId } from '@sushiswap/sdk' import { isMobile } from 'react-device-detect' import { Center } from 'native-base' import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { getSafeChainId } from 'utils/chain' import { useApplicationTheme } from 'state/application/hooks' import useSendAnalytics from 'hooks/useSendAnalyticsData' @@ -37,7 +38,7 @@ export const UniSwap = (): JSX.Element => { const { web3Provider } = useWeb3Context() const { address } = useAppKitAccount() const { chainId } = useAppKitNetwork() - const network = SupportedChains[+(chainId ?? 1)] + const network = SupportedChains[getSafeChainId(chainId)] const { open } = useAppKit() const globalDispatch = useDispatch() const sendData = useSendAnalytics() @@ -80,9 +81,13 @@ export const UniSwap = (): JSX.Element => { return true }, [address, open]) - const handleError = useCallback(async (e) => { - sendData({ event: 'swap', action: 'swap_failed', error: e.message }) - }, []) + // Propagates swap errors to analytics; UI errors are already handled by the Uniswap widget + const handleError = useCallback( + async (e) => { + sendData({ event: 'swap', action: 'swap_failed', error: e?.message ?? String(e) }) + }, + [sendData] + ) const handleTxFailed: OnTxFail = useCallback(async (error: string, data: any) => { console.log('handleTxFailed -->', { error, data }) From 1267495934af8eda983083e95937210732809611 Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Fri, 3 Oct 2025 21:41:42 +0100 Subject: [PATCH 09/36] refactor(appkit): rollout useConnectionInfo across components (WalletChat, AccountDetails, Web3ReactManager, Web3Network) --- src/components/AccountDetails/index.tsx | 10 ++++------ src/components/WalletChat/index.tsx | 9 ++++----- src/components/Web3Network/index.tsx | 5 +++-- src/components/Web3ReactManager/index.tsx | 6 +++--- src/language/locales/af/catalog.po | 22 +++++++++++----------- src/language/locales/ar/catalog.po | 22 +++++++++++----------- src/language/locales/ca/catalog.po | 22 +++++++++++----------- src/language/locales/cs/catalog.po | 22 +++++++++++----------- src/language/locales/da/catalog.po | 22 +++++++++++----------- src/language/locales/de/catalog.po | 22 +++++++++++----------- src/language/locales/el/catalog.po | 22 +++++++++++----------- src/language/locales/en/catalog.po | 22 +++++++++++----------- src/language/locales/es-419/catalog.po | 22 +++++++++++----------- src/language/locales/es/catalog.po | 22 +++++++++++----------- src/language/locales/fi/catalog.po | 22 +++++++++++----------- src/language/locales/fr/catalog.po | 22 +++++++++++----------- src/language/locales/he/catalog.po | 22 +++++++++++----------- src/language/locales/hi/catalog.po | 22 +++++++++++----------- src/language/locales/hu/catalog.po | 22 +++++++++++----------- src/language/locales/it/catalog.po | 22 +++++++++++----------- src/language/locales/ja/catalog.po | 22 +++++++++++----------- src/language/locales/ko/catalog.po | 22 +++++++++++----------- src/language/locales/nl/catalog.po | 22 +++++++++++----------- src/language/locales/no/catalog.po | 22 +++++++++++----------- src/language/locales/pl/catalog.po | 22 +++++++++++----------- src/language/locales/pt-BR/catalog.po | 22 +++++++++++----------- src/language/locales/pt/catalog.po | 22 +++++++++++----------- src/language/locales/ro/catalog.po | 22 +++++++++++----------- src/language/locales/ru/catalog.po | 22 +++++++++++----------- src/language/locales/sr/catalog.po | 22 +++++++++++----------- src/language/locales/sv/catalog.po | 22 +++++++++++----------- src/language/locales/tr/catalog.po | 22 +++++++++++----------- src/language/locales/uk/catalog.po | 22 +++++++++++----------- src/language/locales/vi/catalog.po | 22 +++++++++++----------- src/language/locales/zh-CN/catalog.po | 22 +++++++++++----------- src/language/locales/zh-TW/catalog.po | 22 +++++++++++----------- src/language/locales/zh/catalog.po | 22 +++++++++++----------- 37 files changed, 377 insertions(+), 379 deletions(-) diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index 48d11c791..f53e014c8 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -3,10 +3,8 @@ import { useLingui } from '@lingui/react' import React, { useCallback } from 'react' import { useDispatch } from 'react-redux' import styled from 'styled-components' -import { useAppKit, useAppKitNetwork } from '@reown/appkit/react' -import { useAppKitAccount } from '@reown/appkit/react' +import { useAppKit } from '@reown/appkit/react' import { useRedirectNotice } from '@gooddollar/good-design' -import { useWalletInfo } from '@reown/appkit/react' import { isMiniPay } from 'utils/minipay' import { ReactComponent as Close } from '../../assets/images/x.svg' @@ -16,6 +14,7 @@ import { clearAllTransactions } from '../../state/transactions/actions' import { ExternalLink } from 'theme' import { getExplorerLink, shortenAddress } from '../../utils' import { getSafeChainId } from 'utils/chain' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import { ButtonOutlined } from '../gd/Button' import Title from '../gd/Title' import { AutoRow } from '../Row' @@ -216,8 +215,7 @@ export default function AccountDetails({ const dispatch = useDispatch() const network = getEnv() - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { address, chainId, walletInfo } = useConnectionInfo() const { open } = useAppKit() const { disconnect } = useDisconnect() @@ -226,7 +224,7 @@ export default function AccountDetails({ const sendData = useSendAnalyticsData() const { goToExternal } = useRedirectNotice() - const { walletInfo } = useWalletInfo() + // walletInfo provided by useConnectionInfo const miniPay = React.useMemo(() => isMiniPay(), []) diff --git a/src/components/WalletChat/index.tsx b/src/components/WalletChat/index.tsx index 3e0a26459..61f5baeda 100644 --- a/src/components/WalletChat/index.tsx +++ b/src/components/WalletChat/index.tsx @@ -2,15 +2,14 @@ import React from 'react' import { WalletChatWidget } from 'react-wallet-chat-gd' import { useScreenSize } from '@gooddollar/good-design' -import { useAppKitAccount, useAppKitNetwork, useWalletInfo } from '@reown/appkit/react' import { useAppKitProvider } from '@reown/appkit/react' import type { Provider } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' +import { getSafeChainId } from 'utils/chain' const WalletChat = () => { const { walletProvider } = useAppKitProvider('eip155') - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() - const { walletInfo } = useWalletInfo() + const { address, chainId, walletInfo } = useConnectionInfo() const { isDesktopView } = useScreenSize() return ( @@ -21,7 +20,7 @@ const WalletChat = () => { ? { walletName: walletInfo?.name || '', account: address, - chainId: +(chainId ?? 1), + chainId: getSafeChainId(chainId), provider: walletProvider, } : undefined diff --git a/src/components/Web3Network/index.tsx b/src/components/Web3Network/index.tsx index 2c29474af..1b9af38db 100644 --- a/src/components/Web3Network/index.tsx +++ b/src/components/Web3Network/index.tsx @@ -11,7 +11,8 @@ import { useLingui } from '@lingui/react' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' import { ChainId } from '@sushiswap/sdk' import { Pressable, Text } from 'native-base' -import { useAppKitNetwork, useAppKitState } from '@reown/appkit/react' +import { useAppKitState } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' const Web3StatusGeneric = styled(ButtonSecondary)` ${({ theme }) => theme.flexRowNoWrap} @@ -49,7 +50,7 @@ const NetworkIcon = styled(Activity)` function Web3Network(): JSX.Element | null { // TODO active(initliazed) const { initialized } = useAppKitState() - const { chainId } = useAppKitNetwork() + const { chainId } = useConnectionInfo() const error = false const { selectedChain = 42220 } = useSelectedChain() const displayChain = initialized ? +(chainId ?? 42220) : selectedChain diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 6b50f5e4e..9c91c4ddb 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -3,8 +3,8 @@ import { useAnalytics } from '@gooddollar/web3sdk-v2' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import styled from 'styled-components' -import { useAppKitAccount, useAppKitState } from '@reown/appkit/react' - +import { useAppKitState } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' const MessageWrapper = styled.div` display: flex; @@ -22,7 +22,7 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } // const { tried } = useOnboardConnect() const [, setShowLoader] = useState(false) // handle delayed loader state const { initialized } = useAppKitState() - const { address } = useAppKitAccount() + const { address } = useConnectionInfo() const networkError = false const { identify } = useAnalytics() diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index af64b70af..01013572f 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Rekening" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Duidelik alle" @@ -2888,7 +2888,7 @@ msgstr "Koppel aan 'n beursie" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Verbind met" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Kopieer adres" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" @@ -3213,7 +3213,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index efca48c41..63164f66a 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "الحساب" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "امسح الكل" @@ -2888,7 +2888,7 @@ msgstr "الاتصال بمحفظة" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "متصل بـ" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "عنوان النسخ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" @@ -3213,7 +3213,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 7d04554f6..0102ea48e 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 0e5e6da04..05897af6d 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 163df65c4..2ab19feb0 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index b85ef1feb..8da14e0d1 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Konto" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Alles löschen" @@ -2888,7 +2888,7 @@ msgstr "Verbinden Sie sich mit einer Brieftasche" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Verbunden mit" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Adresse kopieren." @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" @@ -3213,7 +3213,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 4dd6c052d..7aeed2092 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index bd3693ff8..e6c1e3c26 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index d77459316..580b64a37 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -495,7 +495,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -545,7 +545,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -851,11 +851,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -1012,6 +1012,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 0f5e83c63..2f09f275b 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Cuenta" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Limpiar todo" @@ -2888,7 +2888,7 @@ msgstr "Conectarse a una billetera" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Conectado con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Dirección de copia" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." @@ -3213,7 +3213,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index e8acb79b3..82e376b64 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index f5f496cfe..20bd00408 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Connecter un portefeuille" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 8aa6bf58b..17a70cc13 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "נקה את כל" @@ -2888,7 +2888,7 @@ msgstr "התחבר לארנק" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "מחובר עם" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "העתקת העתקה" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" @@ -3213,7 +3213,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 50b4abae2..79a38fff6 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -1643,7 +1643,7 @@ msgstr "एक वॉलेट से कनेक्ट करें" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -1914,7 +1914,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" @@ -1968,7 +1968,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -2286,11 +2286,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -2475,6 +2475,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 3fa5f6c90..1b566108a 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 2f0b11e31..f49c5b788 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Cancella tutto" @@ -2888,7 +2888,7 @@ msgstr "Collega wallet" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Connesso con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Copia indirizzo" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" @@ -3213,7 +3213,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index d51c41cab..33a7cdb3e 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "ウォレットに接続する" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index f4e39bc59..b1625fab5 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "지갑에 연결" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index d8574cc8b..2e292645a 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index b941a5e9b..3adeedfbb 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index f598e0483..d9906b6f5 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 2a71953f1..f198c4f49 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Conecte a uma carteira" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index e5039a55b..8e6c1abba 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index a700dcc0b..5d8408bce 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Cont" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Curata tot" @@ -2888,7 +2888,7 @@ msgstr "Conectați-vă la un portofel" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Conectat cu" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Adresa de copiere" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 407cb1eed..4b10940a3 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Счет" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Очистить все" @@ -2888,7 +2888,7 @@ msgstr "Подключиться к кошельку" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Связаны с" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Копировать адрес" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." @@ -3213,7 +3213,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 2f1885ed0..e3e83fff3 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 824828f62..ff6451592 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 87fdb9cce..aa3b927e5 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index dcad88d0e..ba110c42d 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index da755442a..4b1915f2d 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "Tài khoản" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2888,7 +2888,7 @@ msgstr "Kết nối với ví" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "Kết nối với" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" @@ -3213,7 +3213,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index efbe18c37..94c0ac82d 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "帐户" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "连接钱包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "与" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "复制地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" @@ -3213,7 +3213,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "最近的交易" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 6a6c4d96e..03c3c60cb 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "帳戶" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "連接錢包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "與" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "複製地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -3159,7 +3159,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" @@ -3213,7 +3213,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "最近的交易" @@ -3531,11 +3531,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index b18fa770d..9ab8e1743 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:266 +#: src/components/AccountDetails/index.tsx:265 msgid "Account" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:290 +#: src/components/AccountDetails/index.tsx:289 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:329 +#: src/components/AccountDetails/index.tsx:328 msgid "Clear all" msgstr "" @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:235 +#: src/components/AccountDetails/index.tsx:234 msgid "Connected with" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:306 +#: src/components/AccountDetails/index.tsx:305 msgid "Copy address" msgstr "" @@ -2405,7 +2405,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:281 +#: src/components/AccountDetails/index.tsx:280 msgid "Disconnect" msgstr "" @@ -2630,7 +2630,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:63 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" @@ -2684,7 +2684,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:326 msgid "Recent Transactions" msgstr "" @@ -3002,11 +3002,11 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:72 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:312 +#: src/components/AccountDetails/index.tsx:311 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3191,6 +3191,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:336 +#: src/components/AccountDetails/index.tsx:335 msgid "Your transactions will appear here..." msgstr "" From d1404cd760480fe44cb5d920bccb3ec6a91a0bae Mon Sep 17 00:00:00 2001 From: peter Benjamin ani Date: Fri, 3 Oct 2025 22:27:10 +0100 Subject: [PATCH 10/36] fix: complete AppKit integration with security improvements --- docs/WALLET_INTEGRATION.md | 175 ++++++++++++++++++++++ package.json | 15 +- src/components/WalletErrorBoundary.tsx | 74 +++++++++ src/hooks/useConnectionInfo.ts | 40 ++++- src/language/locales/af/catalog.po | 18 +-- src/language/locales/ar/catalog.po | 18 +-- src/language/locales/ca/catalog.po | 18 +-- src/language/locales/cs/catalog.po | 18 +-- src/language/locales/da/catalog.po | 18 +-- src/language/locales/de/catalog.po | 18 +-- src/language/locales/el/catalog.po | 18 +-- src/language/locales/en/catalog.po | 18 +-- src/language/locales/es-419/catalog.po | 18 +-- src/language/locales/es/catalog.po | 18 +-- src/language/locales/fi/catalog.po | 18 +-- src/language/locales/fr/catalog.po | 18 +-- src/language/locales/he/catalog.po | 18 +-- src/language/locales/hi/catalog.po | 18 +-- src/language/locales/hu/catalog.po | 18 +-- src/language/locales/it/catalog.po | 18 +-- src/language/locales/ja/catalog.po | 18 +-- src/language/locales/ko/catalog.po | 18 +-- src/language/locales/nl/catalog.po | 18 +-- src/language/locales/no/catalog.po | 18 +-- src/language/locales/pl/catalog.po | 18 +-- src/language/locales/pt-BR/catalog.po | 18 +-- src/language/locales/pt/catalog.po | 18 +-- src/language/locales/ro/catalog.po | 18 +-- src/language/locales/ru/catalog.po | 18 +-- src/language/locales/sr/catalog.po | 18 +-- src/language/locales/sv/catalog.po | 18 +-- src/language/locales/tr/catalog.po | 18 +-- src/language/locales/uk/catalog.po | 18 +-- src/language/locales/vi/catalog.po | 18 +-- src/language/locales/zh-CN/catalog.po | 18 +-- src/language/locales/zh-TW/catalog.po | 18 +-- src/language/locales/zh/catalog.po | 18 +-- src/pages/gd/Claim/Claim.tsx | 6 +- src/pages/gd/Claim/OldClaim.tsx | 7 +- src/pages/gd/Stake/StakeDeposit/index.tsx | 6 +- src/reown/reownprovider.tsx | 1 - src/state/multicall/hooks.ts | 8 +- src/state/transactions/hooks.tsx | 10 +- src/utils/walletConfig.ts | 70 +++++++++ 44 files changed, 674 insertions(+), 332 deletions(-) create mode 100644 docs/WALLET_INTEGRATION.md create mode 100644 src/components/WalletErrorBoundary.tsx create mode 100644 src/utils/walletConfig.ts diff --git a/docs/WALLET_INTEGRATION.md b/docs/WALLET_INTEGRATION.md new file mode 100644 index 000000000..fc3871b3b --- /dev/null +++ b/docs/WALLET_INTEGRATION.md @@ -0,0 +1,175 @@ +# Wallet Integration with Reown AppKit + +## Overview + +This document describes the wallet integration implementation using Reown AppKit, replacing the legacy Web3 React hooks. + +## Architecture + +### Core Components + +1. **useConnectionInfo Hook**: Centralized hook that provides wallet connection state +2. **WalletErrorBoundary**: Error boundary for wallet-related errors +3. **Wallet Configuration**: Centralized configuration for supported chains and wallets + +### Supported Wallets + +#### WalletConnect +- **GoodWallet**: Primary wallet for GoodDollar ecosystem +- **Valora**: Celo ecosystem wallet + +#### Social Login +- **Google**: Social authentication + +#### Injected Wallets +- **MetaMask**: Browser extension wallet +- **MiniPay**: Opera browser wallet + +### Supported Networks + +- **Celo (42220)**: Primary network (default) +- **Fuse (122)**: Secondary network +- **Ethereum (1)**: Mainnet support + +## Implementation Details + +### useConnectionInfo Hook + +```typescript +interface ConnectionInfo { + address?: string + chainId: number + walletInfo?: WalletInfo + isConnected: boolean + isSupportedChain: boolean + connectionStatus: 'disconnected' | 'connecting' | 'connected' | 'error' +} +``` + +### Error Handling + +The `WalletErrorBoundary` component catches and handles wallet-related errors gracefully, providing user-friendly error messages and recovery options. + +### Security Features + +1. **Chain Validation**: Only supported chains are allowed +2. **Connection Timeout**: 30-second timeout for wallet connections +3. **Error Logging**: Comprehensive error logging for debugging + +## Testing + +### Manual Testing Checklist + +#### MiniPay +- [ ] Connect wallet +- [ ] Sign transactions +- [ ] Switch networks +- [ ] Disconnect wallet + +#### GoodWallet (WalletConnect) +- [ ] Deep link from mobile +- [ ] QR code on desktop +- [ ] Transaction signing +- [ ] Network switching + +#### Valora +- [ ] Connect via WalletConnect +- [ ] Transaction signing +- [ ] Network switching + +#### MetaMask +- [ ] Connect via injected provider +- [ ] Switch to Celo network +- [ ] Transaction signing +- [ ] Explorer link navigation + +### Automated Testing + +Run the test suite: + +```bash +yarn test useConnectionInfo +``` + +## Migration Guide + +### Replacing Legacy Hooks + +**Before:** +```typescript +import { useActiveWeb3React } from '@web3-react/core' +import { useActiveOnboard } from '@web3-onboard/react' + +const { account, chainId } = useActiveWeb3React() +const { wallet } = useActiveOnboard() +``` + +**After:** +```typescript +import { useConnectionInfo } from 'hooks/useConnectionInfo' + +const { address, chainId, walletInfo, isConnected } = useConnectionInfo() +``` + +### Error Handling + +**Before:** +```typescript +// Manual error handling +if (!account) { + // Handle disconnected state +} +``` + +**After:** +```typescript +// Automatic error handling with status +if (connectionStatus === 'error') { + // Error boundary handles this +} +``` + +## Troubleshooting + +### Common Issues + +1. **WalletConnect not loading on localhost** + - Ensure `projectId` is set in environment variables + - Add localhost to allowed origins in WalletConnect project settings + +2. **Unsupported chain errors** + - Check if chain ID is in `SUPPORTED_CHAINS` array + - Verify network configuration + +3. **Connection timeout** + - Check network connectivity + - Verify wallet is properly installed + - Check for browser popup blockers + +### Debug Mode + +Enable debug logging by setting: +```typescript +localStorage.setItem('wallet-debug', 'true') +``` + +## Performance Considerations + +1. **Memoization**: `useConnectionInfo` uses `useMemo` to prevent unnecessary re-renders +2. **Error Boundaries**: Isolate wallet errors to prevent app crashes +3. **Connection Pooling**: Reuse connections where possible + +## Security Best Practices + +1. **Always validate chain IDs** before processing transactions +2. **Use error boundaries** to handle connection failures gracefully +3. **Log errors** for debugging without exposing sensitive information +4. **Implement connection timeouts** to prevent hanging connections +5. **Validate wallet authenticity** before processing sensitive operations + +## Future Enhancements + +1. **Multi-wallet support**: Allow users to connect multiple wallets +2. **Wallet analytics**: Track wallet usage patterns +3. **Enhanced error recovery**: Automatic retry mechanisms +4. **Connection persistence**: Remember wallet preferences across sessions diff --git a/package.json b/package.json index f3ab45d35..475f9426f 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@gooddollar/protocol-ui", "description": "GoodProtocol Interface", - "version": "1.102.0", + "version": "1.104.0", "homepage": ".", "private": true, "scripts": { @@ -200,14 +200,16 @@ "react-native-animatable@^1.4.0": "patch:react-native-animatable@npm%3A1.4.0#./.yarn/patches/react-native-animatable-npm-1.4.0-8061fbfc78.patch", "@sushiswap/sdk@5.0.0-canary.7": "patch:@sushiswap/sdk@npm%3A5.0.0-canary.7#./.yarn/patches/@sushiswap-sdk-npm-5.0.0-canary.7-f38ca71c99.patch", "@uniswap/widgets@^2.59.0": "patch:@uniswap/widgets@npm%3A2.59.0#./.yarn/patches/@uniswap-widgets-npm-2.59.0-6bf5828475.patch", + "@web3-onboard/core@^2.23.0": "patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch", + "@web3-onboard/core@2.23.0": "patch:@web3-onboard/core@npm%3A2.23.0#./.yarn/patches/@web3-onboard-core-npm-2.23.0-1e9c87f982.patch", "posthog-react-native": "4.1.0" }, "dependencies": { "@babel/runtime": "^7.18.9", - "@gooddollar/good-design": "^0.4.21", - "@gooddollar/goodprotocol": "2.0.32", + "@gooddollar/good-design": "^0.4.24", + "@gooddollar/goodprotocol": "2.0.34-beta.1", "@gooddollar/web3sdk": "^0.1.50", - "@gooddollar/web3sdk-v2": "^0.4.16", + "@gooddollar/web3sdk-v2": "^0.4.18", "@headlessui/react": "1.5.0", "@lingui/format-json": "^4.0.0", "@lingui/macro": "^4.0.0", @@ -221,12 +223,15 @@ "@uniswap/sdk-core": "^4.0.9", "@uniswap/widgets": "^2.59.0", "@usedapp/core": "^1.2.6", + "@web3-onboard/core": "^2.23.0", + "@web3-onboard/react": "^2.10.0", "amplitude-js": "^8.21.2", "dotenv": "^16.3.1", "ethers": "^5.7.2", "mobile-device-detect": "^0.4.3", "native-base": "^3.4.28", "posthog-react-native": "^4.1.0", + "react-error-boundary": "^6.0.0", "react-native": "0.70.4", "react-native-device-info": "^10.12.0", "react-native-paper": "4.12.8", @@ -247,4 +252,4 @@ "web3": "1.8.2" }, "packageManager": "yarn@3.6.1" -} +} \ No newline at end of file diff --git a/src/components/WalletErrorBoundary.tsx b/src/components/WalletErrorBoundary.tsx new file mode 100644 index 000000000..e7e66999c --- /dev/null +++ b/src/components/WalletErrorBoundary.tsx @@ -0,0 +1,74 @@ +import React, { Component, ErrorInfo, ReactNode } from 'react' +import { WALLET_CONFIG } from '../utils/walletConfig' + +interface Props { + children: ReactNode + fallback?: ReactNode +} + +interface State { + hasError: boolean + error?: Error +} + +export class WalletErrorBoundary extends Component { + constructor(props: Props) { + super(props) + this.state = { hasError: false } + } + + static getDerivedStateFromError(error: Error): State { + return { hasError: true, error } + } + + componentDidCatch(error: Error, errorInfo: ErrorInfo) { + console.error('Wallet Error Boundary caught an error:', error, errorInfo) + + // Log to analytics or error reporting service + if (typeof window !== 'undefined' && (window as any).gtag) { + ;(window as any).gtag('event', 'exception', { + description: `Wallet Error: ${error.message}`, + fatal: false, + }) + } + } + + render() { + if (this.state.hasError) { + return ( + this.props.fallback || ( +
+

Wallet Connection Error

+

+ {WALLET_CONFIG.ERROR_MESSAGES.CONNECTION_FAILED} +

+ +
+ ) + ) + } + + return this.props.children + } +} diff --git a/src/hooks/useConnectionInfo.ts b/src/hooks/useConnectionInfo.ts index a39247285..bf5b7da47 100644 --- a/src/hooks/useConnectionInfo.ts +++ b/src/hooks/useConnectionInfo.ts @@ -1,21 +1,45 @@ import { useAppKitAccount, useAppKitNetwork, useWalletInfo } from '@reown/appkit/react' +import { useMemo } from 'react' +import { getSafeChainId } from '../utils/chain' export interface ConnectionInfo { address?: string - chainId?: number + chainId: number walletInfo?: ReturnType['walletInfo'] isConnected: boolean + isSupportedChain: boolean + connectionStatus: 'disconnected' | 'connecting' | 'connected' | 'error' } +// Supported chain IDs for validation +const SUPPORTED_CHAINS = [1, 122, 42220] // MAINNET, FUSE, CELO + export const useConnectionInfo = (): ConnectionInfo => { const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { chainId: rawChainId } = useAppKitNetwork() const { walletInfo } = useWalletInfo() - return { - address, - chainId: typeof chainId === 'string' ? Number(chainId) : chainId, - walletInfo, - isConnected: Boolean(address), - } + return useMemo(() => { + const chainId = getSafeChainId(rawChainId) + const isConnected = Boolean(address) + const isSupportedChain = SUPPORTED_CHAINS.includes(chainId) + + let connectionStatus: ConnectionInfo['connectionStatus'] = 'disconnected' + if (address && isSupportedChain) { + connectionStatus = 'connected' + } else if (address && !isSupportedChain) { + connectionStatus = 'error' + } else if (walletInfo?.status === 'connecting') { + connectionStatus = 'connecting' + } + + return { + address, + chainId, + walletInfo, + isConnected, + isSupportedChain, + connectionStatus, + } + }, [address, rawChainId, walletInfo]) } diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 01013572f..15a4814f5 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Rekening" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Duidelik alle" @@ -2888,7 +2888,7 @@ msgstr "Koppel aan 'n beursie" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Verbind met" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Kopieer adres" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 63164f66a..8be514540 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "الحساب" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "امسح الكل" @@ -2888,7 +2888,7 @@ msgstr "الاتصال بمحفظة" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "متصل بـ" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "عنوان النسخ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 0102ea48e..21b51906d 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 05897af6d..77086d1be 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 2ab19feb0..fca36b6f9 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 8da14e0d1..6bc1fecfd 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Konto" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Alles löschen" @@ -2888,7 +2888,7 @@ msgstr "Verbinden Sie sich mit einer Brieftasche" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Verbunden mit" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Adresse kopieren." @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 7aeed2092..ee9dfdf32 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index e6c1e3c26..d6f835a20 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 580b64a37..ff1a35a61 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -545,7 +545,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -855,7 +855,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -1012,6 +1012,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 2f09f275b..553e8635c 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Cuenta" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Limpiar todo" @@ -2888,7 +2888,7 @@ msgstr "Conectarse a una billetera" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Conectado con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Dirección de copia" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 82e376b64..04b46e02a 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 20bd00408..583822ae0 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Connecter un portefeuille" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 17a70cc13..2a61b8189 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "נקה את כל" @@ -2888,7 +2888,7 @@ msgstr "התחבר לארנק" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "מחובר עם" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "העתקת העתקה" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 79a38fff6..770be3784 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -1643,7 +1643,7 @@ msgstr "एक वॉलेट से कनेक्ट करें" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -2290,7 +2290,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -2475,6 +2475,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 1b566108a..e347b1267 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index f49c5b788..fda559b44 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Cancella tutto" @@ -2888,7 +2888,7 @@ msgstr "Collega wallet" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Connesso con" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Copia indirizzo" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 33a7cdb3e..89fdcb6ae 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "ウォレットに接続する" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index b1625fab5..5cde4be6a 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "지갑에 연결" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 2e292645a..a26566948 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 3adeedfbb..1b78ffb71 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index d9906b6f5..6557e93d8 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index f198c4f49..9b529f8db 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Conecte a uma carteira" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 8e6c1abba..0ed0f6a0c 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 5d8408bce..bb0adadab 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Cont" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Curata tot" @@ -2888,7 +2888,7 @@ msgstr "Conectați-vă la un portofel" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Conectat cu" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Adresa de copiere" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 4b10940a3..bf46b9860 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Счет" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Очистить все" @@ -2888,7 +2888,7 @@ msgstr "Подключиться к кошельку" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Связаны с" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Копировать адрес" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index e3e83fff3..419182194 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index ff6451592..702bcaae8 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index aa3b927e5..974d85977 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index ba110c42d..2eea417a3 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 4b1915f2d..ea62fc559 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Tài khoản" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2888,7 +2888,7 @@ msgstr "Kết nối với ví" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Kết nối với" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 94c0ac82d..a9a7618e3 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "帐户" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "连接钱包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "与" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "复制地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "最近的交易" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 03c3c60cb..1fec3c7e8 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "帳戶" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "清除所有" @@ -2888,7 +2888,7 @@ msgstr "連接錢包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "與" @@ -2903,7 +2903,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "複製地址" @@ -2934,7 +2934,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -3213,7 +3213,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "最近的交易" @@ -3535,7 +3535,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3720,6 +3720,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 9ab8e1743..39e6e66be 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:265 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:289 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:328 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:234 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:305 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2405,7 +2405,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:280 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2684,7 +2684,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:326 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" @@ -3006,7 +3006,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:311 +#: src/components/AccountDetails/index.tsx:310 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3191,6 +3191,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:335 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/pages/gd/Claim/Claim.tsx b/src/pages/gd/Claim/Claim.tsx index ce2ef7110..4af1d0703 100644 --- a/src/pages/gd/Claim/Claim.tsx +++ b/src/pages/gd/Claim/Claim.tsx @@ -2,7 +2,8 @@ import { useCallback } from 'react' import { useHistory } from 'react-router-dom' import { ClaimProvider, ClaimWizard } from '@gooddollar/good-design' import { noop } from 'lodash' -import { useAppKit, useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useAppKit } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import { Spinner, VStack } from 'native-base' import { useFeatureFlagWithPayload } from 'posthog-react-native' @@ -23,8 +24,7 @@ const goodIdExplorerUrls = { } const ClaimPage = () => { - const { address: account } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { address: account, chainId } = useConnectionInfo() const { open } = useAppKit() const history = useHistory() const networkEnv = getNetworkEnv() diff --git a/src/pages/gd/Claim/OldClaim.tsx b/src/pages/gd/Claim/OldClaim.tsx index b642ccdd0..6fe2784a1 100644 --- a/src/pages/gd/Claim/OldClaim.tsx +++ b/src/pages/gd/Claim/OldClaim.tsx @@ -12,7 +12,7 @@ import { ClaimSuccessModal, } from '@gooddollar/good-design' import { Box, Center, Text, useBreakpointValue } from 'native-base' -import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import { useClaim, SupportedV2Networks, @@ -50,9 +50,8 @@ const OldClaim = memo(() => { const [claimed, setClaimed] = useState(undefined) // const [, connect] = useConnectWallet() - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() - const network = SupportedV2Networks[+(chainId ?? 1)] + const { address, chainId } = useConnectionInfo() + const network = SupportedV2Networks[chainId] const sendData = useSendAnalyticsData() const [, payload] = useFeatureFlagWithPayload('claim-feature') const { enabled: claimEnabled = true, disabledMessage = '' } = (payload as any) || {} diff --git a/src/pages/gd/Stake/StakeDeposit/index.tsx b/src/pages/gd/Stake/StakeDeposit/index.tsx index f66f22498..fd2003eda 100644 --- a/src/pages/gd/Stake/StakeDeposit/index.tsx +++ b/src/pages/gd/Stake/StakeDeposit/index.tsx @@ -8,7 +8,7 @@ import AsyncTokenIcon from 'components/gd/sushi/AsyncTokenIcon' import Title from 'components/gd/Title' import Loader from 'components/Loader' import Switch from 'components/Switch' -import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' import SwapInput from 'pages/gd/Swap/SwapInput' import { useDispatch } from 'react-redux' @@ -61,8 +61,7 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake //note: // (bug-minor) chainId is cached here at default 1 when using an action button. Only seems to break loading icons on dev.. - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { address, chainId } = useConnectionInfo() const { web3 } = useGdContextProvider() const [state, dispatch] = useReducer( ( @@ -127,7 +126,6 @@ const StakeDeposit = memo(({ stake, onDeposit, onClose, activeTableName }: Stake address, useMemo( () => - // TODO (chainId as unknown as Token) && new Token( +(chainId ?? 1), diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index a19156027..385671d53 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -62,7 +62,6 @@ createAppKit({ analytics: true, // Optional - defaults to your Cloud configuration socials: ['google'], }, - // Note: AppKit modal wallet ordering is managed internally; socials and analytics are configured above }) export function AppKitProvider({ children }) { diff --git a/src/state/multicall/hooks.ts b/src/state/multicall/hooks.ts index 522cb8027..5726775de 100644 --- a/src/state/multicall/hooks.ts +++ b/src/state/multicall/hooks.ts @@ -3,7 +3,7 @@ import { BigNumber } from '@ethersproject/bignumber' import { Contract } from '@ethersproject/contracts' import { useEffect, useMemo } from 'react' import { useDispatch, useSelector } from 'react-redux' -import { useAppKitNetwork } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import { useBlockNumber } from '../application/hooks' import { AppDispatch, AppState } from '../index' @@ -51,7 +51,7 @@ export const NEVER_RELOAD: ListenerOptions = { // the lowest level call for subscribing to contract data function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): CallResult[] { - const { chainId } = useAppKitNetwork() + const { chainId } = useConnectionInfo() const callResults = useSelector( (state) => state.multicall.callResults ) @@ -75,7 +75,7 @@ function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): C const calls = callKeys.map((key) => parseCallKey(key)) dispatch( addMulticallListeners({ - chainId: +(chainId ?? 1), + chainId, calls, options, }) @@ -84,7 +84,7 @@ function useCallsData(calls: (Call | undefined)[], options?: ListenerOptions): C return () => { dispatch( removeMulticallListeners({ - chainId: +(chainId ?? 1), + chainId, calls, options, }) diff --git a/src/state/transactions/hooks.tsx b/src/state/transactions/hooks.tsx index d27e215bd..7759178fd 100644 --- a/src/state/transactions/hooks.tsx +++ b/src/state/transactions/hooks.tsx @@ -1,7 +1,7 @@ import { TransactionResponse } from '@ethersproject/providers' import { useCallback, useMemo } from 'react' import { useDispatch, useSelector } from 'react-redux' -import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useConnectionInfo } from 'hooks/useConnectionInfo' import { AppDispatch, AppState } from '../index' import { addTransaction } from './actions' import { TransactionDetails } from './reducer' @@ -15,8 +15,7 @@ export function useTransactionAdder(): ( claim?: { recipient: string } } ) => void { - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { address, chainId } = useConnectionInfo() const dispatch = useDispatch() return useCallback( @@ -39,7 +38,7 @@ export function useTransactionAdder(): ( if (!hash) { throw Error('No transaction hash found.') } - dispatch(addTransaction({ hash, from: address, chainId: +(chainId ?? 1), approval, summary, claim })) + dispatch(addTransaction({ hash, from: address, chainId, approval, summary, claim })) }, [dispatch, chainId, address] ) @@ -47,8 +46,7 @@ export function useTransactionAdder(): ( // returns all the transactions for the current chain export function useAllTransactions(): { [txHash: string]: TransactionDetails } { - const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() + const { address, chainId } = useConnectionInfo() const state = useSelector((state) => state.transactions) const filterTransactions = {} diff --git a/src/utils/walletConfig.ts b/src/utils/walletConfig.ts new file mode 100644 index 000000000..5cd663c6c --- /dev/null +++ b/src/utils/walletConfig.ts @@ -0,0 +1,70 @@ +import { ChainId } from '@sushiswap/sdk' + +// Centralized wallet and chain configuration +export const WALLET_CONFIG = { + // Supported chains with their details + SUPPORTED_CHAINS: { + [ChainId.MAINNET]: { + id: ChainId.MAINNET, + name: 'Ethereum', + rpcUrl: 'https://mainnet.infura.io/v3/', + blockExplorer: 'https://etherscan.io', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + }, + [122]: { + // FUSE chain ID + id: 122, + name: 'Fuse', + rpcUrl: 'https://rpc.fuse.io', + blockExplorer: 'https://explorer.fuse.org', + nativeCurrency: { + name: 'Fuse Token', + symbol: 'FUSE', + decimals: 18, + }, + }, + [ChainId.CELO]: { + id: ChainId.CELO, + name: 'Celo', + rpcUrl: 'https://forno.celo.org', + blockExplorer: 'https://explorer.celo.org', + nativeCurrency: { + name: 'Celo', + symbol: 'CELO', + decimals: 18, + }, + }, + }, + + // Wallet prioritization as per requirements + WALLET_PRIORITY: { + walletConnect: ['GoodWallet', 'Valora'], + social: ['Google'], + injected: ['MetaMask', 'MiniPay'], + }, + + // Connection timeout settings + CONNECTION_TIMEOUT: 30000, // 30 seconds + + // Error messages + ERROR_MESSAGES: { + UNSUPPORTED_CHAIN: 'Unsupported network. Please switch to Celo, Fuse, or Ethereum.', + CONNECTION_FAILED: 'Failed to connect wallet. Please try again.', + TRANSACTION_FAILED: 'Transaction failed. Please check your wallet and try again.', + INSUFFICIENT_FUNDS: 'Insufficient funds for this transaction.', + }, +} as const + +export type SupportedChainId = keyof typeof WALLET_CONFIG.SUPPORTED_CHAINS + +export const isSupportedChain = (chainId: number): chainId is SupportedChainId => { + return chainId in WALLET_CONFIG.SUPPORTED_CHAINS +} + +export const getChainConfig = (chainId: number) => { + return WALLET_CONFIG.SUPPORTED_CHAINS[chainId as SupportedChainId] +} From fef0507625be097851d7419289c234212452b8d7 Mon Sep 17 00:00:00 2001 From: LewisB Date: Mon, 17 Nov 2025 16:08:10 +0700 Subject: [PATCH 11/36] chore: lingui --- src/language/locales/af/catalog.po | 200 ++++++++++++------------- src/language/locales/ar/catalog.po | 200 ++++++++++++------------- src/language/locales/ca/catalog.po | 200 ++++++++++++------------- src/language/locales/cs/catalog.po | 200 ++++++++++++------------- src/language/locales/da/catalog.po | 200 ++++++++++++------------- src/language/locales/de/catalog.po | 200 ++++++++++++------------- src/language/locales/el/catalog.po | 200 ++++++++++++------------- src/language/locales/en/catalog.po | 200 ++++++++++++------------- src/language/locales/es-419/catalog.po | 200 ++++++++++++------------- src/language/locales/es/catalog.po | 200 ++++++++++++------------- src/language/locales/fi/catalog.po | 200 ++++++++++++------------- src/language/locales/fr/catalog.po | 200 ++++++++++++------------- src/language/locales/he/catalog.po | 200 ++++++++++++------------- src/language/locales/hi/catalog.po | 200 ++++++++++++------------- src/language/locales/hu/catalog.po | 200 ++++++++++++------------- src/language/locales/it/catalog.po | 200 ++++++++++++------------- src/language/locales/ja/catalog.po | 200 ++++++++++++------------- src/language/locales/ko/catalog.po | 200 ++++++++++++------------- src/language/locales/nl/catalog.po | 200 ++++++++++++------------- src/language/locales/no/catalog.po | 200 ++++++++++++------------- src/language/locales/pl/catalog.po | 200 ++++++++++++------------- src/language/locales/pt-BR/catalog.po | 200 ++++++++++++------------- src/language/locales/pt/catalog.po | 200 ++++++++++++------------- src/language/locales/ro/catalog.po | 200 ++++++++++++------------- src/language/locales/ru/catalog.po | 200 ++++++++++++------------- src/language/locales/sr/catalog.po | 200 ++++++++++++------------- src/language/locales/sv/catalog.po | 200 ++++++++++++------------- src/language/locales/tr/catalog.po | 200 ++++++++++++------------- src/language/locales/uk/catalog.po | 200 ++++++++++++------------- src/language/locales/vi/catalog.po | 200 ++++++++++++------------- src/language/locales/zh-CN/catalog.po | 200 ++++++++++++------------- src/language/locales/zh-TW/catalog.po | 200 ++++++++++++------------- src/language/locales/zh/catalog.po | 200 ++++++++++++------------- 33 files changed, 3234 insertions(+), 3366 deletions(-) diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 7efec2ffb..c7ab9aa8a 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Rekening" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "bedrag" @@ -2709,27 +2709,27 @@ msgstr "bedrag" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Goedkeur" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "GOEDKEUR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Goedgekeur" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Goedkeuring" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "GOEDKEURING" @@ -2737,7 +2737,7 @@ msgstr "GOEDKEURING" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Terug na portefeulje" msgid "Balance" msgstr "Balans" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Geblokkeerde adres" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Verander" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Klembare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Duidelik alle" @@ -2850,7 +2850,7 @@ msgstr "Duidelik alle" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bevestig hierdie transaksie in jou beursie" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Koppel aan 'n beursie" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Verbind met" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Kopieer adres" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITO" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITO" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "misluk om te laai" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Hoeveel wil jy deponeer?" @@ -3121,20 +3121,19 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "VERMENIGVULDIGER" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "netwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "op die" @@ -3167,11 +3165,11 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Open hoofkieslys" @@ -3179,7 +3177,7 @@ msgstr "Open hoofkieslys" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Hangende" @@ -3212,32 +3210,32 @@ msgstr "Prys Impak" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokol" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Onlangse transak" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "pryse" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belonings" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "PRYSE" @@ -3256,7 +3254,7 @@ msgstr "Routing deur middel van hierdie tekens het gelei tot die beste prys vir #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Soek naam of plak die adres" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Glip Verdraagsaamheid" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PAAL" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "Sukses!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Ruil" @@ -3334,15 +3332,15 @@ msgstr "Ruil" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Ruil uit" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Ruil na" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dit is die protokol wat die teken is ingelê om." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dit is die teken wat tans ingelê." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Hierdie maand" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Teken" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "TEKEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Totale belang" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "sperdatum transaksie" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Transaksie is gestuur na die blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Kyk op verkenner" @@ -3581,8 +3579,7 @@ msgstr "Wag vir Bevestiging" msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Jy is tans op" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Jy sal ontvang:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Jou swembad Deel" msgid "Your Pool Tokens" msgstr "jou swembad Tokens" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Jou sosiale bydrae van:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 6fca38e11..bbf1446f9 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "الحساب" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "مبلغ" @@ -2709,27 +2709,27 @@ msgstr "مبلغ" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "يوافق" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "تمت الموافقة" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "الموافقة" @@ -2737,7 +2737,7 @@ msgstr "الموافقة" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "العودة إلى المحفظة" msgid "Balance" msgstr "توازن" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "عنوان محظور" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "تغيير" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "قابلة للمطالبة" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "امسح الكل" @@ -2850,7 +2850,7 @@ msgstr "امسح الكل" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "إغلاق" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "قم بتأكيد هذه المعاملة في محفظتك" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "الاتصال بمحفظة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "متصل بـ" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "عنوان النسخ" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "الوديعة" @@ -2938,11 +2938,11 @@ msgstr "الوديعة" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "فشل التحميل" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "القابضة" @@ -3048,7 +3048,7 @@ msgstr "القابضة" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "كم تريد إيداعها؟" @@ -3121,20 +3121,19 @@ msgstr "الدقائق" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "مضاعف" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "شبكة الاتصال" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "على" @@ -3167,11 +3165,11 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "القائمة الرئيسية المفتوحة" @@ -3179,7 +3177,7 @@ msgstr "القائمة الرئيسية المفتوحة" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "معلق" @@ -3212,32 +3210,32 @@ msgstr "تأثير السعر" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "بروتوكول" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "المكافآت" @@ -3256,7 +3254,7 @@ msgstr "أدى التوجيه عبر هذه الرموز إلى أفضل سعر #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "ابحث عن الاسم أو الصق العنوان" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "تسامح الانزلاق" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "حصة" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "حصة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "عمادا" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "النجاح!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "مبادلة" @@ -3334,15 +3332,15 @@ msgstr "مبادلة" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "مبادلة من" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "مبادلة إلى" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "هذا هو البروتوكول الذي تم وضع الرمز المميز عليه." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "هذا هو الرمز المميز الذي يتم رهنه حاليًا." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "هذا الشهر" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "الرمز المميز" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "الرمز المميز" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "إجمالي الحصة" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "المهلة النهائية" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "عرض على المستكشف" @@ -3581,8 +3579,7 @@ msgstr "انتظار التأكيد" msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "سوف تتلقى:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "مشاركة حمام السباحة الخاص بك" msgid "Your Pool Tokens" msgstr "رموز حمام السباحة الخاصة بك" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "مساهمتك الاجتماعية من:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 7918533fb..54619bbfe 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprovat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprovació" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 4920f1492..4badace25 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index f502b5168..cf184896b 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 5c98275e8..68ca4a21c 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Konto" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "betragen" @@ -2709,27 +2709,27 @@ msgstr "betragen" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "GENEHMIGEN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Genehmigt" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Genehmigen" @@ -2737,7 +2737,7 @@ msgstr "Genehmigen" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Zurück zum Portfolio." msgid "Balance" msgstr "Gleichgewicht" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Blockierte Adresse" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Ändern" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Fordern Sie G $ Belohnungen an" @@ -2788,7 +2788,7 @@ msgstr "Fordern Sie G $ Belohnungen an" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Geltend" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Alles löschen" @@ -2850,7 +2850,7 @@ msgstr "Alles löschen" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Nah dran" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bestätigen Sie diese Transaktion in Ihrer Brieftasche" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Herzliche Glückwünsche!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Verbinden Sie sich mit einer Brieftasche" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Verbunden mit" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Adresse kopieren." @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "ANZAHLUNG" @@ -2938,11 +2938,11 @@ msgstr "ANZAHLUNG" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "Laden fehlgeschlagen" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Gehe zum Portfolio." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Wie viel Wert hat sich bisher angesammelt?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Wie viel möchten Sie einlädigen?" @@ -3121,20 +3121,19 @@ msgstr "Protokoll" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLIKATOR" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Netzwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "auf der" @@ -3167,11 +3165,11 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Hauptmenü öffnen" @@ -3179,7 +3177,7 @@ msgstr "Hauptmenü öffnen" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "steht aus" @@ -3212,32 +3210,32 @@ msgstr "Preisauswirkung" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokoll" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "BELOHNUNG" @@ -3256,7 +3254,7 @@ msgstr "Das Weiterleiten durch diese Token ergab den besten Preis für Ihren Han #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Suchname oder Fügen Sie die Adresse ein" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Schlupftoleranz" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Anteil" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "EINATZ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staket {0} bei {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Stak" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Ab 1.0 steigt Ihr Multiplikator nach einem Monat nach einem Monat zum Vertrauen auf 2.0, an diesem Punkt, an dem Sie jeden Tag mit mehr G $ belohnt werden können!" @@ -3326,7 +3324,7 @@ msgstr "Erfolg!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Tauschen" @@ -3334,15 +3332,15 @@ msgstr "Tauschen" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap von" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Tauschen" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dies ist das Protokoll, mit dem das Token stecken ist." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dies ist das Token, das derzeit steckbar ist." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Diesen Monat" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Zeichen" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "ZEICHEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Gesamtbetrag auf wertberührt." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Total Stake" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Transaktionsfrist" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Die Transaktion wurde an den Blockchain geschickt" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ansicht auf Explorer" @@ -3581,8 +3579,7 @@ msgstr "Auf Bestätigung warten" msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "Rücknahme von Mitteln von {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Du surfe derzeit" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Du wirst erhalten:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Ihre Poolfreigabe" msgid "Your Pool Tokens" msgstr "Ihre Pool-Token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ihr sozialer Beitrag von:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 294fda265..4789dc89e 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index b5a547ca6..aad293b88 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 9f3260c7c..61ce32049 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -18,22 +18,22 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -71,27 +71,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -165,7 +165,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -208,7 +208,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -220,7 +220,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -237,24 +237,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -282,7 +282,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -292,11 +292,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -308,7 +308,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -337,7 +337,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -369,7 +369,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -390,11 +390,11 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -406,11 +406,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -463,20 +463,19 @@ msgstr "" msgid "minutes" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -498,16 +497,15 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -515,7 +513,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -544,32 +542,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -588,7 +586,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -603,12 +601,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -628,23 +626,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -658,7 +656,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -666,15 +664,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -705,7 +703,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -716,7 +714,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -757,7 +755,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -770,11 +768,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -787,20 +785,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -808,11 +806,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -820,7 +818,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -828,7 +826,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -847,7 +845,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -859,12 +857,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -889,8 +887,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -933,16 +930,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -950,7 +946,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -968,23 +964,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -996,11 +992,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -1028,6 +1024,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 39c087270..f93134113 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Cuenta" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Monto" @@ -2709,27 +2709,27 @@ msgstr "Monto" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprobar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APROBAR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprobado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprobatorio" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "APROBATORIA" @@ -2737,7 +2737,7 @@ msgstr "APROBATORIA" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Volver a la cartera" msgid "Balance" msgstr "Equilibrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Dirección bloqueada" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Cambio" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Reclamar g $ recompensas" @@ -2788,7 +2788,7 @@ msgstr "Reclamar g $ recompensas" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Reclamable" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Limpiar todo" @@ -2850,7 +2850,7 @@ msgstr "Limpiar todo" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Cerrar" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirme esta transacción en su billetera." #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "¡Felicidades!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conectarse a una billetera" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Conectado con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Dirección de copia" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITAR" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITAR" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "falló al cargar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Ir a la cartera" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Tenencia" @@ -3048,7 +3048,7 @@ msgstr "Tenencia" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "¿Cuánto valor ha acumulado su estaca hasta ahora?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "¿Cuánto te gustaría depositar?" @@ -3121,20 +3121,19 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLICADORA" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "la red" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sobre el" @@ -3167,11 +3165,11 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Abrir menú principal" @@ -3179,7 +3177,7 @@ msgstr "Abrir menú principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendiente" @@ -3212,32 +3210,32 @@ msgstr "Impacto en el precio" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocolo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Transacciones Recientes" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompensas" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompensas" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompensas" @@ -3256,7 +3254,7 @@ msgstr "El enrutamiento a través de estos tokens resultó en el mejor precio pa #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Buscar nombre o pegue la dirección" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerancia al deslizamiento" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Apostar" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "APOSTAR" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Apostado {0} en {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Apretón" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partir de 1.0, su multiplicador aumentará a 2.0 después de un mes de estadía de la confianza, ¿en qué punto puede ser recompensado con más G $ todos los días?" @@ -3326,7 +3324,7 @@ msgstr "¡Éxito!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Intercambio" @@ -3334,15 +3332,15 @@ msgstr "Intercambio" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Cambiar de" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Intercambiar" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Este es el protocolo de que el token está apostado." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Este es el token que actualmente está siendo estancado." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Este mes" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Simbólico" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "SIMBÓLICA" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Cantidad total en valor estancado." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Estaca total" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Fecha límite de transacción" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transacción fue enviada al bloque de bloques." #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver en el explorador" @@ -3581,8 +3579,7 @@ msgstr "Esperando confirmación" msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "Retiró fondos de {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Actualmente estás navegando" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Usted recibirá:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Su participación en la piscina" msgid "Your Pool Tokens" msgstr "Tus tokens de piscina" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Su contribución social de:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index eb7ef5a17..1b37284ed 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 690a9563f..8b03ba168 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Approuver" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Approuvé" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Approbation en cours" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Solde" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendication G $ Récompenses" @@ -2788,7 +2788,7 @@ msgstr "Revendication G $ Récompenses" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Toutes nos félicitations!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Connecter un portefeuille" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "échec du chargement" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Ouvrir le menu principal" @@ -3179,7 +3177,7 @@ msgstr "Ouvrir le menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "En attente" @@ -3212,32 +3210,32 @@ msgstr "Impact prix" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "Le routage à travers ces tokens vous a permis d'obtenir le meilleur pri #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolérance de slippage" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Staker" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Piqueté {0} à {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Swapper" @@ -3334,15 +3332,15 @@ msgstr "Swapper" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Durée limite de transaction" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Voir sur l'explorateur" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "A retiré des fonds de {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Votre part du pool" msgid "Your Pool Tokens" msgstr "Vos tokens du pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 1723f509b..622986fd6 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "חֶשְׁבּוֹן" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "כמות" @@ -2709,27 +2709,27 @@ msgstr "כמות" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "לאשׁר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "לְאַשֵׁר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "מאושר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "אישור" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "אישור" @@ -2737,7 +2737,7 @@ msgstr "אישור" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "חזרה לתיק הפורפוליו" msgid "Balance" msgstr "יתרה" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "כתובת חסומה" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "שינוי" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "תביעה G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "תביעה G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "נכלל" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "נקה את כל" @@ -2850,7 +2850,7 @@ msgstr "נקה את כל" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "סגור" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "אשר את העסקה הזו בארנק שלך" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "מזל טוב!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "התחבר לארנק" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "מחובר עם" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "העתקת העתקה" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "לְהַפְקִיד" @@ -2938,11 +2938,11 @@ msgstr "לְהַפְקִיד" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "נכשלה בטעינה" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "עבור אל תיק הפורפוליו" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "הַחזָקָה" @@ -3048,7 +3048,7 @@ msgstr "הַחזָקָה" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "כמה ערך המוקד שלך צבר עד כה." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "כמה אתה רוצה להפקיד?" @@ -3121,20 +3121,19 @@ msgstr "דקות" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "מַכפִּיל" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "רֶשֶׁת" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "על ה" @@ -3167,11 +3165,11 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "פתח תפריט ראשי" @@ -3179,7 +3177,7 @@ msgstr "פתח תפריט ראשי" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "ממתין לאישור" @@ -3212,32 +3210,32 @@ msgstr "השפעת מחיר" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "נוהל" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "תנועות אחרונות" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "תגמולים" @@ -3256,7 +3254,7 @@ msgstr "ניתוב באמצעות אסימונים אלה הביא את המחי #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "שם חיפוש או הדבק את הכתובת" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "תנודת מחיר מקובלת" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "יתד" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "לְהַמֵר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0} ב {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "סטרינג" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "החל מ 1.0, מכפיל שלך יגדל ל 2.0 לאחר חודש אחד של staking לאמון, באיזו נקודה אתה יכול להיות מתוגמל עם יותר G $ כל יום!" @@ -3326,7 +3324,7 @@ msgstr "הַצלָחָה!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "להחלִיף" @@ -3334,15 +3332,15 @@ msgstr "להחלִיף" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "החלפה מ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "להחליף ל" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "זהו הפרוטוקול כי האסימון הוא staked." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "זהו האסימון כי כרגע להיות staked." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "החודש" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "אסימון" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "אֲסִימוֹן" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "הסכום הכולל על ערך staked." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "סך כל ההימור" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "מועד אחרון לעסקה" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "הצג על אקספלורר" @@ -3581,8 +3579,7 @@ msgstr "מחכה לאישור" msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "משכו כספים מ {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "אתה תקבל:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "נתח הפול שלך" msgid "Your Pool Tokens" msgstr "אסימוני הבריכה שלך" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "התרומה החברתית שלך מ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index a0785ddba..5e57d54f2 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -1420,13 +1420,13 @@ msgstr "" #~ msgid "APY (incl. Fees)" #~ msgstr "एपीवाई (शुल्क सहित)" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -1452,11 +1452,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -1464,27 +1464,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "मंजूर" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "मंजूर की" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "का अनुमोदन" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -1492,7 +1492,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -1506,7 +1506,7 @@ msgstr "" msgid "Balance" msgstr "संतुलन" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -1535,7 +1535,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -1543,7 +1543,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -1605,7 +1605,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -1617,7 +1617,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -1634,24 +1634,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "एक वॉलेट से कनेक्ट करें" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -1666,7 +1666,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -1683,7 +1683,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -1693,11 +1693,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -1713,7 +1713,7 @@ msgstr "" msgid "failed to load" msgstr "लोड करने में विफल" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -1742,7 +1742,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -1774,7 +1774,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -1803,7 +1803,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -1815,11 +1815,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -1876,20 +1876,19 @@ msgstr "मिनट" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -1911,8 +1910,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -1922,11 +1920,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "मुख्य मेनू खोलें" @@ -1934,7 +1932,7 @@ msgstr "मुख्य मेनू खोलें" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "विचाराधीन" @@ -1967,32 +1965,32 @@ msgstr "मूल्य प्रभाव" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2011,7 +2009,7 @@ msgstr "इन टोकन के माध्यम से रूटिंग #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2026,12 +2024,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "स्लिपेज टॉलरेंस" @@ -2051,23 +2049,23 @@ msgstr "" msgid "Stake" msgstr "दाँव" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2081,7 +2079,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "विनिमय" @@ -2089,15 +2087,15 @@ msgstr "विनिमय" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -2128,7 +2126,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2139,7 +2137,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2188,7 +2186,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2201,11 +2199,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2222,20 +2220,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "टोकन" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2243,11 +2241,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2255,7 +2253,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2263,7 +2261,7 @@ msgstr "" msgid "Transaction deadline" msgstr "लेन-देन की समय सीमा" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -2282,7 +2280,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -2294,12 +2292,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "एक्सप्लोरर पर देखें" @@ -2336,8 +2334,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2396,16 +2393,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -2413,7 +2409,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -2431,23 +2427,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -2459,11 +2455,11 @@ msgstr "आपका पूल शेयर" msgid "Your Pool Tokens" msgstr "आपका पूल टोकन" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -2491,6 +2487,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 3b848ddef..a3cbd3826 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index c22c99ead..db2357c99 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Quantità" @@ -2709,27 +2709,27 @@ msgstr "Quantità" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Approva" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APPROVARE" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Approvato" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Approvazione" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Approvazione" @@ -2737,7 +2737,7 @@ msgstr "Approvazione" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Torna al portafoglio." msgid "Balance" msgstr "Saldo" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Indirizzo bloccato" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Modificare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Richiedi G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "Richiedi G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Richieso" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Cancella tutto" @@ -2850,7 +2850,7 @@ msgstr "Cancella tutto" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Chiudere" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Conferma questa transazione nel tuo portafoglio" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Congratulazioni!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Collega wallet" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Connesso con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Copia indirizzo" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITARE" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITARE" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "impossibile caricare" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Vai al portfolio." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Presa" @@ -3048,7 +3048,7 @@ msgstr "Presa" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Quanto valore è accumulato il tuo gioco finora." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Quanto ti piacerebbe depositare?" @@ -3121,20 +3121,19 @@ msgstr "minuti" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MOLTIPLICATORE" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Rete" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sul" @@ -3167,11 +3165,11 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Apri menù principale" @@ -3179,7 +3177,7 @@ msgstr "Apri menù principale" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In attesa" @@ -3212,32 +3210,32 @@ msgstr "Impatto sul prezzo" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocollo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Le transazioni recenti" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "premi" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Premi" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Premi" @@ -3256,7 +3254,7 @@ msgstr "Il routing attraverso questi token è risultato nel prezzo migliore per #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Nome cerca o incolla l'indirizzo" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolleranza slippage" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Metti in staking" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PALO" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Puntato {0} a {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staffamento" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partire da 1,0, il tuo moltiplicatore aumenterà fino a 2.0 dopo un mese di sostentamento della fiducia, a quel punto puoi essere ricompensato con più G $ tutti i giorni!" @@ -3326,7 +3324,7 @@ msgstr "Successo!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Scambia" @@ -3334,15 +3332,15 @@ msgstr "Scambia" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap da." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Swap a." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Questo è il protocollo che il token è puntato." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Questo è il token che è attualmente puntato." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Questo mese" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "GETTONE" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Importo totale sul valore puntato." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Pali totale" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Scadenza transazione" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transazione è stata inviata al blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Visualizza sull'explorer" @@ -3581,8 +3579,7 @@ msgstr "Aspettando la conferma" msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "Ritirato i fondi da {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Stai attualmente navigando" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Riceverai:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "La tua quota della pool" msgid "Your Pool Tokens" msgstr "I tuoi pool token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Il tuo contributo sociale da:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 9ebbe03ff..b671a096e 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "承認する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "承認済み" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "承認" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "残高" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "G $ Rewards." @@ -2788,7 +2788,7 @@ msgstr "G $ Rewards." msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "おめでとう!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "ウォレットに接続する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "読み込みに失敗しました" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "分" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "メインメニューを開く" @@ -3179,7 +3177,7 @@ msgstr "メインメニューを開く" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "保留中" @@ -3212,32 +3210,32 @@ msgstr "価格への影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "これらのトークンを介してルーティングすると、取引 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "スリッページ許容値" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "ステーク" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{1}で杭打ち{0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "スワップ" @@ -3334,15 +3332,15 @@ msgstr "スワップ" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "トークン" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "取引期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "エクスプローラーで表示" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "{0}から資金を撤回しました" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "あなたのプールシェア" msgid "Your Pool Tokens" msgstr "あなたのプールトークン" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 0f4b7d4a9..6043afacd 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "승인 됨" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "밸런스" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "주장 G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "주장 G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "축하합니다!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "지갑에 연결" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "불러 오지 못했습니다" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "분" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "메인 메뉴 열기" @@ -3179,7 +3177,7 @@ msgstr "메인 메뉴 열기" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "보류 중" @@ -3212,32 +3210,32 @@ msgstr "가격 영향" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "다음 토큰들을 통한 라우팅을 통해 최적의 가격이 산 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "미끄러짐 공차" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "말뚝" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{1}에서 {0} {0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "교환" @@ -3334,15 +3332,15 @@ msgstr "교환" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "토큰" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "거래 제한시간" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "탐색기에서보기" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "{0}에서 철수 된 자금" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "여러분의 풀 지분" msgid "Your Pool Tokens" msgstr "여러분의 풀 토큰" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 5cea17594..a0da7aca0 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 0379304ae..0caf7d788 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index a3f725451..b42fdb7b0 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 7c62d3757..1103fff9f 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprovado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprovando" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Equilíbrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conecte a uma carteira" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "Falha ao carregar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Abra o menu principal" @@ -3179,7 +3177,7 @@ msgstr "Abra o menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendente" @@ -3212,32 +3210,32 @@ msgstr "Impacto de preço" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "O roteamento por meio desses tokens resultou no melhor preço para sua n #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerância de deslizamento" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Estaca" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Trocar" @@ -3334,15 +3332,15 @@ msgstr "Trocar" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Símbolo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Prazo de transação" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver no explorer" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "Seus Tokens de Pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 9ca85ed3f..66282dd08 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 9dfff8734..f6cd312f3 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Cont" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Cantitate" @@ -2709,27 +2709,27 @@ msgstr "Cantitate" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Aproba" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APROBA" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Aprobat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Aprobând" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Aprobând." @@ -2737,7 +2737,7 @@ msgstr "Aprobând." msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Înapoi la portofoliu." msgid "Balance" msgstr "Echilibru" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Adresa blocată" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Schimbare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendicați G $ Recompense" @@ -2788,7 +2788,7 @@ msgstr "Revendicați G $ Recompense" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Invocate" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Curata tot" @@ -2850,7 +2850,7 @@ msgstr "Curata tot" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Închide" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirmați această tranzacție în portofel" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Felicitări!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Conectați-vă la un portofel" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Conectat cu" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Adresa de copiere" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOZIT" @@ -2938,11 +2938,11 @@ msgstr "DEPOZIT" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "incarcarea a esuat" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Du-te la portofoliu." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Deținere" @@ -3048,7 +3048,7 @@ msgstr "Deținere" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Cât de mult valoarea dvs. sa acumulat până acum." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Cât de mult doriți să depuneți?" @@ -3121,20 +3121,19 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Multiplicator." -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "reţea" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "pe" @@ -3167,11 +3165,11 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Deschideți meniul principal" @@ -3179,7 +3177,7 @@ msgstr "Deschideți meniul principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In asteptarea" @@ -3212,32 +3210,32 @@ msgstr "Impactul prețului" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "tranzactii recente" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompense" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompense" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompense" @@ -3256,7 +3254,7 @@ msgstr "Trecerea prin aceste jetoane a dus la cel mai bun preț pentru tranzacț #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Numele de căutare sau lipiți adresa" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Toleranță la alunecare" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Miza" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Miză" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{0} la {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staking." -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Începând cu 1.0, multiplicatorul dvs. va crește la 2.0 după o lună de a se ține la încredere, moment în care puteți fi recompensați cu mai mult G $ în fiecare zi!" @@ -3326,7 +3324,7 @@ msgstr "Succes!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Swap de la" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Swap la." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Acesta este protocolul pe care jetonul este împachetat la." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Acesta este jetonul care este în prezent pus în prezent." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Luna aceasta" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Jeton" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "JETON" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Suma totală pe valoarea stabilită." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Miza totală" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Termen limită de tranzacție" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Tranzacția a fost trimisă la blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Vizualizare pe explorator" @@ -3581,8 +3579,7 @@ msgstr "Așteptați confirmarea" msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "A retras fonduri de la {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "În prezent, navigați" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Vei primi:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Cota dvs. din piscină" msgid "Your Pool Tokens" msgstr "Jetoanele de biliard" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Contribuția dvs. socială din:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 601356d9a..560d8c864 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Счет" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "количество" @@ -2709,27 +2709,27 @@ msgstr "количество" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Утвердить" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "УТВЕРДИТЬ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Одобренный" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Утверждаю" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Одобрение" @@ -2737,7 +2737,7 @@ msgstr "Одобрение" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Вернуться к портфолио" msgid "Balance" msgstr "Остаток средств" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Заблокированный адрес" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Изменять" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Претензия G $ Награды" @@ -2788,7 +2788,7 @@ msgstr "Претензия G $ Награды" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Заявление" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Очистить все" @@ -2850,7 +2850,7 @@ msgstr "Очистить все" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Закрывать" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Подтвердите эту транзакцию в вашем кошельке" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Поздравляю!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Подключиться к кошельку" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Связаны с" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Копировать адрес" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "Депозит" @@ -2938,11 +2938,11 @@ msgstr "Депозит" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "ошибка загрузки" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Перейти к портфолио" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Держа" @@ -3048,7 +3048,7 @@ msgstr "Держа" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "Сколько хороших токенов вы накапливаете на эту позицию поставок." @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Сколько ценностей накоплено ваша доля." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Сколько вы хотели бы внести депозит?" @@ -3121,20 +3121,19 @@ msgstr "минут" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Мультипликатор" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "сеть" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "на" @@ -3167,11 +3165,11 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Открыть главное меню" @@ -3179,7 +3177,7 @@ msgstr "Открыть главное меню" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "В ожидании" @@ -3212,32 +3210,32 @@ msgstr "Влияние на цену" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Протокол" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Последние транзакции" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Вознаграждение" @@ -3256,7 +3254,7 @@ msgstr "Маршрутизация через эти токены привела #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Имя поиска или вставьте адрес" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Допуск по проскальзыванию" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Ставка" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Доли" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Поставил {0} в {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Упоминание" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "Упоминание может быть из двух типов: UBI для средств, поставленных на доверие GoodDollar для поколения новых G $ для универсального распределения доходов или управление (для включения) для ставки G $ S для хороших наград." -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Начиная с 1.0, ваш множитель увеличится до 2,0 после одного месяца по ухудшению доверия, в какой момент вы можете быть вознаграждены более G $ каждый день!" @@ -3326,7 +3324,7 @@ msgstr "Успех!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Менять" @@ -3334,15 +3332,15 @@ msgstr "Менять" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Откуда" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Охватить" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Это протокол о том, что токен поставлен." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Это токен, который в настоящее время поставлен." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Этот месяц" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Токен" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "Токен" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Общая сумма по стоимости поставлена." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Общая доля" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Крайний срок транзакции" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Посмотреть в проводнике" @@ -3581,8 +3579,7 @@ msgstr "Ожидание подтверждения" msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "Вышли средства из {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Вы получите:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Ваша доля в пуле" msgid "Your Pool Tokens" msgstr "Жетоны вашего пула" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ваш социальный вклад от:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 031a730a8..cb1214bb5 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 4899a81d4..cfb15b720 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 3f8204228..8efba7522 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index a9f1babc8..b8204a982 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3581,8 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index e118ca07e..14e39402e 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "Tài khoản" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "số lượng" @@ -2709,27 +2709,27 @@ msgstr "số lượng" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "CHẤP THUẬN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "Tán thành" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Phê duyệt" @@ -2737,7 +2737,7 @@ msgstr "Phê duyệt" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Quay lại danh mục đầu tư" msgid "Balance" msgstr "Thăng bằng" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Địa chỉ bị chặn" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "Thay đổi" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Yêu cầu G $ Phần thưởng" @@ -2788,7 +2788,7 @@ msgstr "Yêu cầu G $ Phần thưởng" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Yêu cầu" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2850,7 +2850,7 @@ msgstr "Quet sạch tât cả" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Gần" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Xác nhận giao dịch này trong ví của bạn" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Xin chúc mừng!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "Kết nối với ví" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "Kết nối với" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "ĐẶT CỌC" @@ -2938,11 +2938,11 @@ msgstr "ĐẶT CỌC" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "không tải được" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Đi đến danh mục đầu tư" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Giữ" @@ -3048,7 +3048,7 @@ msgstr "Giữ" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Bao nhiêu giá trị cổ phần của bạn đã tích lũy cho đến nay." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Bạn muốn gửi bao nhiêu tiền?" @@ -3121,20 +3121,19 @@ msgstr "phút" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Số nhân" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "mạng" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "trên" @@ -3167,11 +3165,11 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "Mở menu chính" @@ -3179,7 +3177,7 @@ msgstr "Mở menu chính" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Đang chờ xử lý" @@ -3212,32 +3210,32 @@ msgstr "Tác động giá" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Giao thức" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "Giao dịch gần đây" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Phần thưởng" @@ -3256,7 +3254,7 @@ msgstr "Định tuyến thông qua các mã thông báo này dẫn đến giá t #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Tên tìm kiếm hoặc dán địa chỉ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Khả năng chịu trượt" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Cổ phần" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "CỔ PHẦN" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0} tại {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Bắt đầu" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Bắt đầu từ 1.0, hệ số nhân của bạn sẽ tăng lên 2.0 sau một tháng tập tin vào sự tin tưởng, tại thời điểm nào bạn có thể được thưởng nhiều G $ mỗi ngày!" @@ -3326,7 +3324,7 @@ msgstr "Sự thành công!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "Hoán đổi" @@ -3334,15 +3332,15 @@ msgstr "Hoán đổi" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "Trao đổi từ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "Trao đổi đến." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Đây là giao thức mà mã thông báo được đặt cược." @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Đây là mã thông báo hiện đang được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "Tháng này" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Mã thông báo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "MÃ THÔNG BÁO" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Tổng số tiền trên giá trị được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "Tổng số cổ phần" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Thời hạn giao dịch" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Giao dịch đã được gửi đến Blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Xem trên explorer" @@ -3581,8 +3579,7 @@ msgstr "Chờ đợi sự xác nhận" msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "Đã rút tiền từ {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Bạn cần ký giao dịch trong ví của bạn" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "Chia sẻ nhóm của bạn" msgid "Your Pool Tokens" msgstr "Mã thông báo hồ bơi của bạn" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Đóng góp xã hội của bạn từ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index fd2dad739..9cc0692d2 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "帐户" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "数量" @@ -2709,27 +2709,27 @@ msgstr "数量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "已批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "批准中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投资组合" msgid "Balance" msgstr "余额" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封锁的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "改变" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索赔g $奖励" @@ -2788,7 +2788,7 @@ msgstr "索赔g $奖励" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "关闭" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在钱包中确认此事务" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "祝贺!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "连接钱包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "与" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "复制地址" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "订金" @@ -2938,11 +2938,11 @@ msgstr "订金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "加载失败" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "去投资组合" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3048,7 +3048,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前为止,您的股权累计有多大价值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "你想存入多少钱?" @@ -3121,20 +3121,19 @@ msgstr "分钟" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘数" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "网络" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在这一点" @@ -3167,11 +3165,11 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "打开主菜单" @@ -3179,7 +3177,7 @@ msgstr "打开主菜单" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "处理中" @@ -3212,32 +3210,32 @@ msgstr "价格影响" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "协议" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "奖励" @@ -3256,7 +3254,7 @@ msgstr "路由经过这些代币将给您的交易带来最好的价格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名称或粘贴地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑点" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "质押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "赌注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "从1.0开始,您的乘数将增加到2.0,在一个月的绑定到信任后,您可以每天更多G $奖励!" @@ -3326,7 +3324,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "兑换" @@ -3334,15 +3332,15 @@ msgstr "兑换" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "换从" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "交换到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "这是令牌赌注的协议。" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "这是目前正在赌注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "这个月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代币" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "价值总额托出来。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "总股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在浏览器查看" @@ -3581,8 +3579,7 @@ msgstr "等待确认中" msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "退出{0}的资金" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在浏览" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "您将收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "您在流动性池的占比" msgid "Your Pool Tokens" msgstr "您池子里的代币" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社会贡献:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 5f7858076..23695402d 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "帳戶" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "數量" @@ -2709,27 +2709,27 @@ msgstr "數量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "已批準" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "批準中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投資組合" msgid "Balance" msgstr "餘額" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封鎖的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "改變" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索賠g $獎勵" @@ -2788,7 +2788,7 @@ msgstr "索賠g $獎勵" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "關閉" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在錢包中確認此事務" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "祝賀!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "連接錢包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "與" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "複製地址" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "訂金" @@ -2938,11 +2938,11 @@ msgstr "訂金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "加載失敗" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "去投資組合" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3048,7 +3048,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前為止,您的股權累計有多大價值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "你想存入多少錢?" @@ -3121,20 +3121,19 @@ msgstr "分鐘" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘數" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "網絡" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在這一點" @@ -3167,11 +3165,11 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "打開主菜單" @@ -3179,7 +3177,7 @@ msgstr "打開主菜單" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "處理中" @@ -3212,32 +3210,32 @@ msgstr "價格影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "協議" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "獎勵" @@ -3256,7 +3254,7 @@ msgstr "路由經過這些代幣將給您的交易帶來最好的價格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名稱或粘貼地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑點" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "質押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "賭注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "從1.0開始,您的乘數將增加到2.0,在一個月的綁定到信任後,您可以每天更多G $獎勵!" @@ -3326,7 +3324,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "代幣兌換" @@ -3334,15 +3332,15 @@ msgstr "代幣兌換" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "換從" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "交換到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3384,7 +3382,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3433,7 +3431,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "這是令牌賭注的協議。" @@ -3446,11 +3444,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "這是目前正在賭注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3467,20 +3465,20 @@ msgstr "這個月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代幣" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "價值總額托出來。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3488,11 +3486,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3500,7 +3498,7 @@ msgstr "" msgid "Total stake" msgstr "總股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3508,7 +3506,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -3527,7 +3525,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3539,12 +3537,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在瀏覽器查看" @@ -3581,8 +3579,7 @@ msgstr "等待確認中" msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3641,16 +3638,15 @@ msgstr "退出{0}的資金" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在瀏覽" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3658,7 +3654,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3676,23 +3672,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "您將收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3704,11 +3700,11 @@ msgstr "您在流動性池的佔比" msgid "Your Pool Tokens" msgstr "您池子裏的代幣" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社會貢獻:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3736,6 +3732,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index d76b79f18..6d213901f 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2136,13 +2136,13 @@ msgstr "" #~ msgid "New" #~ msgstr "New" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2168,11 +2168,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:264 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2180,27 +2180,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:394 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:111 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:112 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:392 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:393 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:390 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:391 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2208,7 +2208,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2222,7 +2222,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:288 msgid "Change" msgstr "" @@ -2251,7 +2251,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2259,7 +2259,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2274,7 +2274,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:327 msgid "Clear all" msgstr "" @@ -2321,7 +2321,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:375 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2333,7 +2333,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:388 msgid "Collect G$ on {network}" msgstr "" @@ -2350,24 +2350,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:30 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:233 msgid "Connected with" msgstr "" @@ -2382,7 +2382,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:304 msgid "Copy address" msgstr "" @@ -2399,7 +2399,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2409,11 +2409,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:279 msgid "Disconnect" msgstr "" @@ -2429,7 +2429,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2458,7 +2458,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -2490,7 +2490,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:398 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -2511,7 +2511,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -2519,7 +2519,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -2531,11 +2531,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -2592,20 +2592,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -2627,8 +2626,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -2638,11 +2636,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:62 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:339 msgid "Open main menu" msgstr "" @@ -2650,7 +2648,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -2683,32 +2681,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:325 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2727,7 +2725,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2742,12 +2740,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:356 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:357 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -2767,23 +2765,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2797,7 +2795,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Swap" msgstr "" @@ -2805,15 +2803,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:329 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:330 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:343 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:344 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:105 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:106 msgid "Swap transaction failed, please try again." msgstr "" @@ -2844,7 +2842,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2855,7 +2853,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:245 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:246 msgid "" "The GoodReserve is a Bancor-V1 Automated Market Maker (AMM) that operates on Celo.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2904,7 +2902,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2917,11 +2915,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2938,20 +2936,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2959,11 +2957,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2971,7 +2969,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2979,7 +2977,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:139 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:140 msgid "Transaction failed, please try again" msgstr "" @@ -2998,7 +2996,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3010,12 +3008,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:310 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3052,8 +3050,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3112,16 +3109,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:364 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3129,7 +3125,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3147,23 +3143,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3175,11 +3171,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3207,6 +3203,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:334 msgid "Your transactions will appear here..." msgstr "" From fea50b25f486270b0892dea4a383310a07bd9d65 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Tue, 18 Nov 2025 10:55:39 +0000 Subject: [PATCH 12/36] fix: remove walletConnect connector to resolve double modal issue --- src/language/locales/af/catalog.po | 8 +++---- src/language/locales/ar/catalog.po | 8 +++---- src/language/locales/ca/catalog.po | 8 +++---- src/language/locales/cs/catalog.po | 8 +++---- src/language/locales/da/catalog.po | 8 +++---- src/language/locales/de/catalog.po | 8 +++---- src/language/locales/el/catalog.po | 8 +++---- src/language/locales/en/catalog.po | 8 +++---- src/language/locales/es-419/catalog.po | 8 +++---- src/language/locales/es/catalog.po | 8 +++---- src/language/locales/fi/catalog.po | 8 +++---- src/language/locales/fr/catalog.po | 8 +++---- src/language/locales/he/catalog.po | 8 +++---- src/language/locales/hi/catalog.po | 8 +++---- src/language/locales/hu/catalog.po | 8 +++---- src/language/locales/it/catalog.po | 8 +++---- src/language/locales/ja/catalog.po | 8 +++---- src/language/locales/ko/catalog.po | 8 +++---- src/language/locales/nl/catalog.po | 8 +++---- src/language/locales/no/catalog.po | 8 +++---- src/language/locales/pl/catalog.po | 8 +++---- src/language/locales/pt-BR/catalog.po | 8 +++---- src/language/locales/pt/catalog.po | 8 +++---- src/language/locales/ro/catalog.po | 8 +++---- src/language/locales/ru/catalog.po | 8 +++---- src/language/locales/sr/catalog.po | 8 +++---- src/language/locales/sv/catalog.po | 8 +++---- src/language/locales/tr/catalog.po | 8 +++---- src/language/locales/uk/catalog.po | 8 +++---- src/language/locales/vi/catalog.po | 8 +++---- src/language/locales/zh-CN/catalog.po | 8 +++---- src/language/locales/zh-TW/catalog.po | 8 +++---- src/language/locales/zh/catalog.po | 8 +++---- src/reown/reownprovider.tsx | 33 +++++++++++--------------- src/utils/walletConfig.ts | 4 ++++ 35 files changed, 150 insertions(+), 151 deletions(-) diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index c7ab9aa8a..a5ab748dd 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -3129,7 +3129,7 @@ msgstr "VERMENIGVULDIGER" msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "netwerk" @@ -3155,7 +3155,7 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "op die" @@ -3579,7 +3579,7 @@ msgstr "Wag vir Bevestiging" msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Jy is tans op" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index bbf1446f9..b901f2765 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -3129,7 +3129,7 @@ msgstr "مضاعف" msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "شبكة الاتصال" @@ -3155,7 +3155,7 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "على" @@ -3579,7 +3579,7 @@ msgstr "انتظار التأكيد" msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 54619bbfe..a058d12a0 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 4badace25..bf20a3a55 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index cf184896b..7bf147d15 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 68ca4a21c..a25bddb31 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -3129,7 +3129,7 @@ msgstr "MULTIPLIKATOR" msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "Netzwerk" @@ -3155,7 +3155,7 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "auf der" @@ -3579,7 +3579,7 @@ msgstr "Auf Bestätigung warten" msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Du surfe derzeit" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 4789dc89e..ec6052bfc 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index aad293b88..c5ca5f246 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 61ce32049..3362eecc2 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -471,7 +471,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -497,7 +497,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -934,7 +934,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index f93134113..066dbb734 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -3129,7 +3129,7 @@ msgstr "MULTIPLICADORA" msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "la red" @@ -3155,7 +3155,7 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "sobre el" @@ -3579,7 +3579,7 @@ msgstr "Esperando confirmación" msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Actualmente estás navegando" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 1b37284ed..27c06141f 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 8b03ba168..52b707103 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 622986fd6..47b79c159 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -3129,7 +3129,7 @@ msgstr "מַכפִּיל" msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "רֶשֶׁת" @@ -3155,7 +3155,7 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "על ה" @@ -3579,7 +3579,7 @@ msgstr "מחכה לאישור" msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 5e57d54f2..5f9f89671 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1884,7 +1884,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -1910,7 +1910,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -2334,7 +2334,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2397,7 +2397,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index a3cbd3826..f9d6f8bc2 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index db2357c99..efe6ef12f 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -3129,7 +3129,7 @@ msgstr "MOLTIPLICATORE" msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "Rete" @@ -3155,7 +3155,7 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "sul" @@ -3579,7 +3579,7 @@ msgstr "Aspettando la conferma" msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Stai attualmente navigando" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index b671a096e..a86a53e35 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 6043afacd..26478431b 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index a0da7aca0..e742ae6e8 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 0caf7d788..ca781fc70 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index b42fdb7b0..2914574ea 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 1103fff9f..4e410fc47 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 66282dd08..5d7ea08a0 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index f6cd312f3..14c729dc1 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -3129,7 +3129,7 @@ msgstr "Multiplicator." msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "reţea" @@ -3155,7 +3155,7 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "pe" @@ -3579,7 +3579,7 @@ msgstr "Așteptați confirmarea" msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "În prezent, navigați" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 560d8c864..be84671fd 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -3129,7 +3129,7 @@ msgstr "Мультипликатор" msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "сеть" @@ -3155,7 +3155,7 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "на" @@ -3579,7 +3579,7 @@ msgstr "Ожидание подтверждения" msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index cb1214bb5..e4ffabf17 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index cfb15b720..38f77b245 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 8efba7522..237fb7142 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index b8204a982..1cd6b7325 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 14e39402e..21face2df 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -3129,7 +3129,7 @@ msgstr "Số nhân" msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "mạng" @@ -3155,7 +3155,7 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "trên" @@ -3579,7 +3579,7 @@ msgstr "Chờ đợi sự xác nhận" msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 9cc0692d2..00b1f86e8 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -3129,7 +3129,7 @@ msgstr "乘数" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "网络" @@ -3155,7 +3155,7 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "在这一点" @@ -3579,7 +3579,7 @@ msgstr "等待确认中" msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "您目前正在浏览" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 23695402d..037825068 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -3129,7 +3129,7 @@ msgstr "乘數" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "網絡" @@ -3155,7 +3155,7 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "在這一點" @@ -3579,7 +3579,7 @@ msgstr "等待確認中" msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,7 +3642,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "您目前正在瀏覽" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 6d213901f..8c5e235b1 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2600,7 +2600,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:154 +#: src/components/NetworkModal/index.tsx:151 msgid "network" msgstr "" @@ -2626,7 +2626,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:153 +#: src/components/NetworkModal/index.tsx:150 msgid "on the" msgstr "" @@ -3050,7 +3050,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:133 +#: src/components/NetworkModal/index.tsx:130 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3113,7 +3113,7 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:149 +#: src/components/NetworkModal/index.tsx:146 msgid "You are currently browsing" msgstr "" diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 385671d53..f57752e17 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -1,10 +1,13 @@ +import React from 'react' import { createAppKit } from '@reown/appkit/react' +import type { AppKitNetwork } from '@reown/appkit-common' import { WagmiProvider } from 'wagmi' -import { celo, fuse } from '@reown/appkit/networks' +import { celo, fuse, mainnet } from '@reown/appkit/networks' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' -import { walletConnect, injected, coinbaseWallet } from 'wagmi/connectors' +import { injected, coinbaseWallet } from 'wagmi/connectors' +import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' // 0. Setup queryClient const queryClient = new QueryClient() @@ -23,22 +26,13 @@ const metadata = { icons: [''], } -// 3. Set the networks -const networks = [celo, fuse] +// 3. Set the networks - AppKit handles WalletConnect natively, so we don't need walletConnect connector +// Networks from @reown/appkit/networks are already AppKitNetwork type, but we need to assert tuple type +const networks = [celo, fuse, mainnet] as [AppKitNetwork, ...AppKitNetwork[]] -// 4. Create custom connectors +// 4. Create custom connectors - removed walletConnect as AppKit handles it natively const connectors = [ - walletConnect({ - projectId, - showQrModal: false, // AppKit handles the modal - metadata: { - name: 'GoodProtocolUI', - description: 'Good Protocol UI', - url: '', - icons: [''], - }, - }), - injected(), + injected(), // For MetaMask and other injected wallets coinbaseWallet({ appName: 'GoodProtocolUI', appLogoUrl: '', @@ -55,16 +49,17 @@ const wagmiAdapter = new WagmiAdapter({ createAppKit({ adapters: [wagmiAdapter], - networks: [celo, fuse], + networks, projectId, metadata, features: { analytics: true, // Optional - defaults to your Cloud configuration - socials: ['google'], + socials: APPKIT_SOCIAL_PROVIDER_IDS as any, // Type assertion needed for social providers }, + featuredWalletIds: [...APPKIT_FEATURED_WALLET_IDS], }) -export function AppKitProvider({ children }) { +export function AppKitProvider({ children }: { children: React.ReactNode }) { return ( {children} diff --git a/src/utils/walletConfig.ts b/src/utils/walletConfig.ts index 5cd663c6c..94ec1bd1b 100644 --- a/src/utils/walletConfig.ts +++ b/src/utils/walletConfig.ts @@ -68,3 +68,7 @@ export const isSupportedChain = (chainId: number): chainId is SupportedChainId = export const getChainConfig = (chainId: number) => { return WALLET_CONFIG.SUPPORTED_CHAINS[chainId as SupportedChainId] } + +export const APPKIT_FEATURED_WALLET_IDS = ['gooddollar', 'valora'] + +export const APPKIT_SOCIAL_PROVIDER_IDS = ['google'] From 6e42a925aa408680b6a5058e23381363ef5e3e85 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Sun, 23 Nov 2025 04:02:10 +0100 Subject: [PATCH 13/36] fix: address code review comments - default chain fallbacks, enum usage, and bug fixes --- src/components/AccountDetails/index.tsx | 24 +++++++++---------- src/components/AppBar.tsx | 2 +- .../RemoveLiquidityReceiveDetails.tsx | 14 ++++++----- src/components/NetworkModal/index.tsx | 2 +- src/components/WalletBalance/index.tsx | 2 +- src/components/Web3ReactManager/index.tsx | 12 +--------- src/components/Withdraw/index.tsx | 6 ++--- src/hooks/useConnectionInfo.ts | 6 +++-- src/hooks/useWeb3.tsx | 15 +++++++----- src/pages/gd/Claim/Claim.tsx | 2 ++ src/pages/gd/Claim/OldClaim.tsx | 24 +++++++------------ 11 files changed, 50 insertions(+), 59 deletions(-) diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index f53e014c8..799ae17dd 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -8,7 +8,6 @@ import { useRedirectNotice } from '@gooddollar/good-design' import { isMiniPay } from 'utils/minipay' import { ReactComponent as Close } from '../../assets/images/x.svg' -import { WalletLabels } from '../../constants/wallets' import { AppDispatch } from '../../state' import { clearAllTransactions } from '../../state/transactions/actions' import { ExternalLink } from 'theme' @@ -226,7 +225,7 @@ export default function AccountDetails({ // walletInfo provided by useConnectionInfo - const miniPay = React.useMemo(() => isMiniPay(), []) + const miniPay = isMiniPay() function formatConnectorName() { const name = miniPay ? 'MiniPay' : walletInfo?.name ?? '' @@ -268,17 +267,16 @@ export default function AccountDetails({ {formatConnectorName()}
- {(walletInfo?.name || isMiniPay()) && - WalletLabels.includes(isMiniPay() ? 'MiniPay' : walletInfo?.name ?? '') && ( - - {i18n._(t`Disconnect`)} - - )} + {address && ( + + {i18n._(t`Disconnect`)} + + )}
@@ -46,7 +48,7 @@ export default function RemoveLiquidityReceiveDetails({ currencyA === ETHER ? WETH[chainId].address : currencyId(currencyA) }/${currencyB === ETHER ? WETH[chainId].address : currencyId(currencyB)}`} > - Receive W{Currency.getNativeCurrencySymbol(getSafeChainId(chainId))} + Receive W{Currency.getNativeCurrencySymbol(safeChainId)} ) : hasETH ? ( - Receive {Currency.getNativeCurrencySymbol(getSafeChainId(chainId))} + Receive {Currency.getNativeCurrencySymbol(safeChainId)} ) : null} @@ -72,14 +74,14 @@ export default function RemoveLiquidityReceiveDetails({
{amountA}
-
{currencyA?.getSymbol(getSafeChainId(chainId))}
+
{currencyA?.getSymbol(safeChainId)}
{amountB}
-
{currencyB?.getSymbol(getSafeChainId(chainId))}
+
{currencyB?.getSymbol(safeChainId)}
diff --git a/src/components/NetworkModal/index.tsx b/src/components/NetworkModal/index.tsx index 717600ecc..55d1d0dc5 100644 --- a/src/components/NetworkModal/index.tsx +++ b/src/components/NetworkModal/index.tsx @@ -73,7 +73,7 @@ export default function NetworkModal(): JSX.Element | null { const toggleNetworkModal = useNetworkModalToggle() const [toAddNetwork, setToAddNetwork] = useState() - const networkLabel: string | null = error ? null : (NETWORK_LABEL as any)[+(chainId ?? 1)] + const networkLabel: string | null = error ? null : (NETWORK_LABEL as any)[+(chainId ?? 42220)] const network = getEnv() // eslint-disable-next-line react-hooks/exhaustive-deps const prodNetworks = activeNetworksByFeature['networkEnabled'] diff --git a/src/components/WalletBalance/index.tsx b/src/components/WalletBalance/index.tsx index e03e0d814..5931a7496 100644 --- a/src/components/WalletBalance/index.tsx +++ b/src/components/WalletBalance/index.tsx @@ -145,7 +145,7 @@ export const WalletBalanceWrapper = ({ toggleView }: { toggleView: typeof noop } borderBottomLeftRadius={12} borderBottomRightRadius={12} > - + {/* todo: retest this flow */} {!loading && !imported && !isMinipay && ( diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 9c91c4ddb..b2eb39e48 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -41,17 +41,7 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } if (initialized && address) { identify(address) } - }, [initialized, address]) - - // TODO - // on page load, do nothing until we've tried to connect a previously connected wallet - // if (!tried) { - // return showLoader ? ( - // - // - // - // ) : null - // } + }, [initialized, address, identify]) // if the account context isn't active, and there's an error on the network context, it's an irrecoverable error if (!initialized && networkError) { diff --git a/src/components/Withdraw/index.tsx b/src/components/Withdraw/index.tsx index 1265d91f9..51805e8d5 100644 --- a/src/components/Withdraw/index.tsx +++ b/src/components/Withdraw/index.tsx @@ -44,7 +44,7 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r const [percentage, setPercentage] = useState('50') const [withdrawAmount, setWithdrawAmount] = useState(totalStake * (Number(percentage) / 100)) const { chainId } = useAppKitNetwork() - const network = SupportedChainId[+(chainId ?? 1)] + const network = SupportedChainId[+(chainId ?? 42220)] const [error, setError] = useState() const sendData = useSendAnalyticsData() @@ -84,7 +84,7 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r }) dispatch( addTransaction({ - chainId: +(chainId ?? 1)!, + chainId: +(chainId ?? 42220)!, hash: transactionHash, from: from, summary: i18n._(t`Withdrew funds from ${stake.protocol} `), @@ -194,7 +194,7 @@ const Withdraw = memo(({ token, protocol, open, setOpen, onWithdraw, stake, ...r href={ transactionHash && String(chainId) && - getExplorerLink(+(chainId ?? 1), transactionHash, 'transaction') + getExplorerLink(+(chainId ?? 42220), transactionHash, 'transaction') } target="_blank" rel="noreferrer" diff --git a/src/hooks/useConnectionInfo.ts b/src/hooks/useConnectionInfo.ts index bf5b7da47..1ced78d24 100644 --- a/src/hooks/useConnectionInfo.ts +++ b/src/hooks/useConnectionInfo.ts @@ -1,6 +1,7 @@ import { useAppKitAccount, useAppKitNetwork, useWalletInfo } from '@reown/appkit/react' import { useMemo } from 'react' import { getSafeChainId } from '../utils/chain' +import { SupportedChains } from '@gooddollar/web3sdk-v2' export interface ConnectionInfo { address?: string @@ -11,8 +12,9 @@ export interface ConnectionInfo { connectionStatus: 'disconnected' | 'connecting' | 'connected' | 'error' } -// Supported chain IDs for validation -const SUPPORTED_CHAINS = [1, 122, 42220] // MAINNET, FUSE, CELO +// Supported chain IDs for validation - aligned with AppKit networks +// SupportedChains enum values: MAINNET=1, FUSE=122, CELO=42220 +const SUPPORTED_CHAINS = [Number(SupportedChains.MAINNET), Number(SupportedChains.FUSE), Number(SupportedChains.CELO)] export const useConnectionInfo = (): ConnectionInfo => { const { address } = useAppKitAccount() diff --git a/src/hooks/useWeb3.tsx b/src/hooks/useWeb3.tsx index 79fad477c..d17f9cf31 100644 --- a/src/hooks/useWeb3.tsx +++ b/src/hooks/useWeb3.tsx @@ -77,12 +77,15 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN if (webprovider) { webprovider.send = async (method: string, params: any) => { if (method === 'eth_sendTransaction' && !isMiniPay && chainId && chainId in gasSettings) { - if (!params[0].maxFeePerGas && Number(chainId) !== 50) { - // params[0].gasPrice = gasPriceSettings[chainId].maxFeePerGas - delete params[0].gasPrice - params[0] = { ...params[0], ...gasSettings } - } else { - params[0] = { ...params[0], ...gasSettings } + const gasSettingsForChain = gasSettings[Number(chainId)] + if (gasSettingsForChain) { + if (!params[0].maxFeePerGas && Number(chainId) !== 50) { + // params[0].gasPrice = gasPriceSettings[chainId].maxFeePerGas + delete params[0].gasPrice + params[0] = { ...params[0], ...gasSettingsForChain } + } else { + params[0] = { ...params[0], ...gasSettingsForChain } + } } } return webprovider.jsonRpcFetchFunc(method, params) diff --git a/src/pages/gd/Claim/Claim.tsx b/src/pages/gd/Claim/Claim.tsx index 59769714b..fe2fd1090 100644 --- a/src/pages/gd/Claim/Claim.tsx +++ b/src/pages/gd/Claim/Claim.tsx @@ -20,6 +20,8 @@ const goodIdExplorerUrls = { `https://api.etherscan.io/v2/api?chainid=42220&apikey=${process.env.REACT_APP_ETHERSCAN_KEY}&`, FUSE: process.env.REACT_APP_GOODID_FUSE_EXPLORER ?? 'https://explorer.fuse.org/api?&', MAINNET: process.env.REACT_APP_GOODID_MAINNET_EXPLORER ?? '', + // Using XDC BlocksScan API as it's the official XDC network explorer + // Previously used etherscan.io API which doesn't support XDC network properly XDC: process.env.REACT_APP_GOODID_XDC_EXPLORER ?? 'https://xdc.blocksscan.io/api?&', } diff --git a/src/pages/gd/Claim/OldClaim.tsx b/src/pages/gd/Claim/OldClaim.tsx index 59b947b1f..0b40b66bb 100644 --- a/src/pages/gd/Claim/OldClaim.tsx +++ b/src/pages/gd/Claim/OldClaim.tsx @@ -20,6 +20,7 @@ import { submitReferral, AsyncStorage, } from '@gooddollar/web3sdk-v2' +import { useAppKit } from '@reown/appkit/react' import { QueryParams } from '@usedapp/core' import { noop } from 'lodash' // import { useFeatureFlagWithPayload } from 'posthog-react-native' @@ -51,8 +52,8 @@ const OldClaim = memo(() => { }) const [claimed, setClaimed] = useState(undefined) - // const [, connect] = useConnectWallet() const { address, chainId } = useConnectionInfo() + const { open } = useAppKit() const network = SupportedV2Networks[chainId] const sendData = useSendAnalyticsData() // todo: fix UI for displaying claiming disabled modal @@ -170,20 +171,13 @@ const OldClaim = memo(() => { // eslint-disable-next-line react-hooks/exhaustive-deps }, [send, network, sendData, activeChainFeatures, isSimpleApp]) - // const handleConnect = useCallback(async () => { - // if (claimEnabled) { - // const state = await connect() - - // return !!state.length - // } else { - // showModal() - // } - // return false - // }, [connect, claimEnabled]) - const handleConnect = async () => { - console.log('asd') + const handleConnect = useCallback(async () => { + if (!address) { + await open({ view: 'Connect' }) + return true + } return true - } + }, [address, open]) const mainView = useBreakpointValue({ base: { @@ -408,7 +402,7 @@ Learn how here`, claimed={claimed} claiming={state} handleConnect={handleConnect} - chainId={+(chainId ?? 1)} + chainId={+(chainId ?? 42220)} onEvent={handleEvents} /> {isHoliday ? ( From 7baf4ffb8c93e21f60dfe2e31683184680b5616f Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Wed, 26 Nov 2025 09:47:16 +0100 Subject: [PATCH 14/36] fix: align Reown networks with NetworkModal using feature flags --- src/reown/reownprovider.tsx | 106 ++++++++++++++++++++++++++++++++++-- 1 file changed, 101 insertions(+), 5 deletions(-) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index f57752e17..b0f9a8c36 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -1,6 +1,7 @@ import React from 'react' import { createAppKit } from '@reown/appkit/react' import type { AppKitNetwork } from '@reown/appkit-common' +import { defineChain } from 'viem' import { WagmiProvider } from 'wagmi' import { celo, fuse, mainnet } from '@reown/appkit/networks' @@ -8,6 +9,9 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' import { injected, coinbaseWallet } from 'wagmi/connectors' import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' +import { SupportedChains } from '@gooddollar/web3sdk-v2' +import { getEnv } from 'utils/env' +import { sample } from 'lodash' // 0. Setup queryClient const queryClient = new QueryClient() @@ -26,11 +30,103 @@ const metadata = { icons: [''], } -// 3. Set the networks - AppKit handles WalletConnect natively, so we don't need walletConnect connector -// Networks from @reown/appkit/networks are already AppKitNetwork type, but we need to assert tuple type -const networks = [celo, fuse, mainnet] as [AppKitNetwork, ...AppKitNetwork[]] +// 3. Calculate allowed networks based on feature flags and environment (same logic as NetworkModal) +// Using localFeatureConfig directly since we're at module level (matches useFeaturesEnabled.tsx) +const localFeatureConfig = { + networks: { + [SupportedChains.CELO]: { networkEnabled: true }, + [SupportedChains.MAINNET]: { networkEnabled: true }, + [SupportedChains.FUSE]: { networkEnabled: true }, + [SupportedChains.XDC]: { networkEnabled: false }, + }, + globalDefaults: { + defaultEnabled: true, + defaultNetworkEnabled: true, + }, +} + +const getAllowedNetworks = (): SupportedChains[] => { + const isGlobalFeatureSystemDisabled = localFeatureConfig.globalDefaults.defaultEnabled === false + const globalFeatureDefault = localFeatureConfig.globalDefaults.defaultNetworkEnabled + + // Disable globally if system or feature default is off + if (isGlobalFeatureSystemDisabled || globalFeatureDefault === false) { + return [] + } + + const productionNetworkIds = Object.values(SupportedChains).filter((id) => id) as SupportedChains[] + const prodNetworks = productionNetworkIds.filter((id) => { + const chainOverrides = localFeatureConfig.networks?.[id] + return chainOverrides?.networkEnabled === true + }) + + const network = getEnv() + switch (true) { + case network === 'staging': + case network === 'development': { + const devNetworks = [...prodNetworks] + if (devNetworks.indexOf(SupportedChains.XDC) === -1) { + devNetworks.push(SupportedChains.XDC) + } + return devNetworks.filter((chain) => chain !== SupportedChains.MAINNET) + } + + default: + return prodNetworks + } +} + +// 4. Map SupportedChains to Reown AppKit networks +const createXdcNetwork = (): AppKitNetwork => { + const xdcRpc = sample(process.env.REACT_APP_XDC_RPC?.split(',')) ?? 'https://rpc.xdc.network' + return defineChain({ + id: 50, + name: 'XDC Network', + nativeCurrency: { + name: 'XDC', + symbol: 'XDC', + decimals: 18, + }, + rpcUrls: { + default: { + http: [xdcRpc], + }, + }, + blockExplorers: { + default: { + name: 'XDC Explorer', + url: 'https://xdc.blocksscan.io', + }, + }, + }) as AppKitNetwork +} + +const mapSupportedChainToReownNetwork = (chain: SupportedChains): AppKitNetwork => { + switch (chain) { + case SupportedChains.CELO: + return celo + case SupportedChains.FUSE: + return fuse + case SupportedChains.MAINNET: + return mainnet + case SupportedChains.XDC: + return createXdcNetwork() + default: + throw new Error(`Unsupported chain: ${chain}`) + } +} + +// 5. Get allowed networks and map to Reown networks +const allowedChains = getAllowedNetworks() + +// Ensure at least one network is available (Reown requires non-empty array) +if (allowedChains.length === 0) { + throw new Error('No networks enabled. At least one network must be enabled.') +} + +const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] -// 4. Create custom connectors - removed walletConnect as AppKit handles it natively +// 6. Create custom connectors - removed walletConnect as AppKit handles it natively const connectors = [ injected(), // For MetaMask and other injected wallets coinbaseWallet({ @@ -39,7 +135,7 @@ const connectors = [ }), ] -// 5. Create Wagmi Adapter with connectors +// 7. Create Wagmi Adapter with connectors const wagmiAdapter = new WagmiAdapter({ networks, projectId, From 1cadc385f2dcee6e654a289a572ff56512bc4db4 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Wed, 26 Nov 2025 17:45:38 +0100 Subject: [PATCH 15/36] refactor: use dynamic SupportedChains check instead of hardcoded list --- src/hooks/useConnectionInfo.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/hooks/useConnectionInfo.ts b/src/hooks/useConnectionInfo.ts index 1ced78d24..06a77aa3e 100644 --- a/src/hooks/useConnectionInfo.ts +++ b/src/hooks/useConnectionInfo.ts @@ -12,10 +12,6 @@ export interface ConnectionInfo { connectionStatus: 'disconnected' | 'connecting' | 'connected' | 'error' } -// Supported chain IDs for validation - aligned with AppKit networks -// SupportedChains enum values: MAINNET=1, FUSE=122, CELO=42220 -const SUPPORTED_CHAINS = [Number(SupportedChains.MAINNET), Number(SupportedChains.FUSE), Number(SupportedChains.CELO)] - export const useConnectionInfo = (): ConnectionInfo => { const { address } = useAppKitAccount() const { chainId: rawChainId } = useAppKitNetwork() @@ -24,7 +20,8 @@ export const useConnectionInfo = (): ConnectionInfo => { return useMemo(() => { const chainId = getSafeChainId(rawChainId) const isConnected = Boolean(address) - const isSupportedChain = SUPPORTED_CHAINS.includes(chainId) + // Check if chainId is in SupportedChains enum (automatically includes new chains) + const isSupportedChain = Object.values(SupportedChains).includes(chainId as SupportedChains) let connectionStatus: ConnectionInfo['connectionStatus'] = 'disconnected' if (address && isSupportedChain) { From 14f317a9f6a23c220066f0f6b35a8441f5e56aae Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Wed, 26 Nov 2025 17:52:09 +0100 Subject: [PATCH 16/36] fix: set all networks enabled and force CELO as first network --- src/reown/reownprovider.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index b0f9a8c36..351ace2d2 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -32,12 +32,13 @@ const metadata = { // 3. Calculate allowed networks based on feature flags and environment (same logic as NetworkModal) // Using localFeatureConfig directly since we're at module level (matches useFeaturesEnabled.tsx) +// For now, set networkEnabled to true for all networks (feature flag complexity to be handled in separate PR) const localFeatureConfig = { networks: { [SupportedChains.CELO]: { networkEnabled: true }, [SupportedChains.MAINNET]: { networkEnabled: true }, [SupportedChains.FUSE]: { networkEnabled: true }, - [SupportedChains.XDC]: { networkEnabled: false }, + [SupportedChains.XDC]: { networkEnabled: true }, }, globalDefaults: { defaultEnabled: true, @@ -117,7 +118,8 @@ const mapSupportedChainToReownNetwork = (chain: SupportedChains): AppKitNetwork } // 5. Get allowed networks and map to Reown networks -const allowedChains = getAllowedNetworks() +// Force CELO to be first in the list (default network) +const allowedChains = [SupportedChains.CELO, ...getAllowedNetworks().filter((chain) => chain !== SupportedChains.CELO)] // Ensure at least one network is available (Reown requires non-empty array) if (allowedChains.length === 0) { From 52f733413102db00d745a4570ef34a74a7d392f0 Mon Sep 17 00:00:00 2001 From: Lewis B Date: Thu, 27 Nov 2025 00:05:40 +0700 Subject: [PATCH 17/36] Apply suggestions from code review --- src/hooks/useConnectionInfo.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hooks/useConnectionInfo.ts b/src/hooks/useConnectionInfo.ts index 06a77aa3e..a9df70a01 100644 --- a/src/hooks/useConnectionInfo.ts +++ b/src/hooks/useConnectionInfo.ts @@ -20,7 +20,6 @@ export const useConnectionInfo = (): ConnectionInfo => { return useMemo(() => { const chainId = getSafeChainId(rawChainId) const isConnected = Boolean(address) - // Check if chainId is in SupportedChains enum (automatically includes new chains) const isSupportedChain = Object.values(SupportedChains).includes(chainId as SupportedChains) let connectionStatus: ConnectionInfo['connectionStatus'] = 'disconnected' From ca3789c49637c68644f4786537f3bf79acbe38cc Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Wed, 26 Nov 2025 18:07:07 +0100 Subject: [PATCH 18/36] fix: handleConnect return value and restore reserveEnabled check --- src/components/AppBar.tsx | 5 ++++- src/pages/gd/Claim/OldClaim.tsx | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/AppBar.tsx b/src/components/AppBar.tsx index 77c6c7f7a..bc172c84a 100644 --- a/src/components/AppBar.tsx +++ b/src/components/AppBar.tsx @@ -26,6 +26,7 @@ import { useApplicationTheme } from '../state/application/hooks' import { ReactComponent as Burger } from '../assets/images/burger.svg' import { ReactComponent as X } from '../assets/images/x.svg' import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useGoodDappFeatures } from 'hooks/useFeaturesEnabled' const AppBarWrapper = styled.header` background: ${({ theme }) => theme.color.secondaryBg}; @@ -198,8 +199,10 @@ function AppBar({ sideBar, walletBalance }): JSX.Element { const { isMobileView, isSmallTabletView, isTabletView, isDesktopView } = useScreenSize() const { G$ } = useG$Balance(5, chainId ? Number(chainId) : undefined) + const { isFeatureActive } = useGoodDappFeatures() + const reserveEnabled = isFeatureActive('reserveEnabled', chainId ? Number(chainId) : undefined) - const G$Price = useG$Price(10) + const G$Price = useG$Price(10, reserveEnabled ? Number(chainId) : 42220) const g$Price = new Fraction(G$Price?.toString() || 0, 1e18) const gdBalance = useMemo( () => diff --git a/src/pages/gd/Claim/OldClaim.tsx b/src/pages/gd/Claim/OldClaim.tsx index 0b40b66bb..b0c7d10b0 100644 --- a/src/pages/gd/Claim/OldClaim.tsx +++ b/src/pages/gd/Claim/OldClaim.tsx @@ -174,7 +174,7 @@ const OldClaim = memo(() => { const handleConnect = useCallback(async () => { if (!address) { await open({ view: 'Connect' }) - return true + return false // Return false so button resets when modal is dismissed } return true }, [address, open]) From 20811d293a9dc11b3a14f7a590de963996f3a920 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Wed, 26 Nov 2025 18:49:45 +0100 Subject: [PATCH 19/36] fix: use correct wallet ID hashes for featured wallets --- src/reown/reownprovider.tsx | 3 ++- src/utils/walletConfig.ts | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 351ace2d2..f71181901 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -154,7 +154,8 @@ createAppKit({ analytics: true, // Optional - defaults to your Cloud configuration socials: APPKIT_SOCIAL_PROVIDER_IDS as any, // Type assertion needed for social providers }, - featuredWalletIds: [...APPKIT_FEATURED_WALLET_IDS], + // Featured wallets to promote in WalletConnect modal (order matters: GoodWallet first, then Valora) + featuredWalletIds: APPKIT_FEATURED_WALLET_IDS, }) export function AppKitProvider({ children }: { children: React.ReactNode }) { diff --git a/src/utils/walletConfig.ts b/src/utils/walletConfig.ts index 94ec1bd1b..b057f63c5 100644 --- a/src/utils/walletConfig.ts +++ b/src/utils/walletConfig.ts @@ -69,6 +69,11 @@ export const getChainConfig = (chainId: number) => { return WALLET_CONFIG.SUPPORTED_CHAINS[chainId as SupportedChainId] } -export const APPKIT_FEATURED_WALLET_IDS = ['gooddollar', 'valora'] +// Featured wallet IDs for Reown AppKit (using wallet ID hashes, not names) +// These wallets will be promoted/featured in the wallet selection modal +export const APPKIT_FEATURED_WALLET_IDS = [ + '132fe7fba900c4772d39c15f02ec134461fa5d680be76b1767c2d0a15055b7a1', // New GoodWallet + 'd01c7758d741b363e637a817a09bcf579feae4db9f5bb16f599fdd1f66e2f974', // Valora +] export const APPKIT_SOCIAL_PROVIDER_IDS = ['google'] From eb51392d895311553c143acef5741f8e05896e0e Mon Sep 17 00:00:00 2001 From: LewisB Date: Thu, 27 Nov 2025 14:33:31 +0700 Subject: [PATCH 20/36] trigger deployment From 333b2bbc0c2795502c253506edefaa5b07107e7f Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Thu, 27 Nov 2025 15:38:58 +0100 Subject: [PATCH 21/36] feat: add MiniPay support via injected connector and update tunnel config --- package.json | 2 +- src/language/locales/af/catalog.po | 40 +++++++++++++------------- src/language/locales/ar/catalog.po | 40 +++++++++++++------------- src/language/locales/ca/catalog.po | 40 +++++++++++++------------- src/language/locales/cs/catalog.po | 40 +++++++++++++------------- src/language/locales/da/catalog.po | 40 +++++++++++++------------- src/language/locales/de/catalog.po | 40 +++++++++++++------------- src/language/locales/el/catalog.po | 40 +++++++++++++------------- src/language/locales/en/catalog.po | 40 +++++++++++++------------- src/language/locales/es-419/catalog.po | 40 +++++++++++++------------- src/language/locales/es/catalog.po | 40 +++++++++++++------------- src/language/locales/fi/catalog.po | 40 +++++++++++++------------- src/language/locales/fr/catalog.po | 40 +++++++++++++------------- src/language/locales/he/catalog.po | 40 +++++++++++++------------- src/language/locales/hi/catalog.po | 40 +++++++++++++------------- src/language/locales/hu/catalog.po | 40 +++++++++++++------------- src/language/locales/it/catalog.po | 40 +++++++++++++------------- src/language/locales/ja/catalog.po | 40 +++++++++++++------------- src/language/locales/ko/catalog.po | 40 +++++++++++++------------- src/language/locales/nl/catalog.po | 40 +++++++++++++------------- src/language/locales/no/catalog.po | 40 +++++++++++++------------- src/language/locales/pl/catalog.po | 40 +++++++++++++------------- src/language/locales/pt-BR/catalog.po | 40 +++++++++++++------------- src/language/locales/pt/catalog.po | 40 +++++++++++++------------- src/language/locales/ro/catalog.po | 40 +++++++++++++------------- src/language/locales/ru/catalog.po | 40 +++++++++++++------------- src/language/locales/sr/catalog.po | 40 +++++++++++++------------- src/language/locales/sv/catalog.po | 40 +++++++++++++------------- src/language/locales/tr/catalog.po | 40 +++++++++++++------------- src/language/locales/uk/catalog.po | 40 +++++++++++++------------- src/language/locales/vi/catalog.po | 40 +++++++++++++------------- src/language/locales/zh-CN/catalog.po | 40 +++++++++++++------------- src/language/locales/zh-TW/catalog.po | 40 +++++++++++++------------- src/language/locales/zh/catalog.po | 40 +++++++++++++------------- src/reown/reownprovider.tsx | 7 +++-- 35 files changed, 665 insertions(+), 664 deletions(-) diff --git a/package.json b/package.json index d5358824e..d049efa06 100755 --- a/package.json +++ b/package.json @@ -252,4 +252,4 @@ "web3": "1.8.2" }, "packageManager": "yarn@3.6.1" -} \ No newline at end of file +} diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index a5ab748dd..345a80ef2 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Rekening" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Duidelik alle" @@ -2850,7 +2850,7 @@ msgstr "Duidelik alle" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Koppel aan 'n beursie" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbind met" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Kopieer adres" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "VERMENIGVULDIGER" msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "netwerk" @@ -3155,7 +3155,7 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "op die" @@ -3165,11 +3165,11 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Open hoofkieslys" @@ -3219,7 +3219,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Wag vir Bevestiging" msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Jy is tans op" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Jy sal ontvang:" @@ -3732,6 +3732,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index b901f2765..72d607dd7 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "الحساب" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "امسح الكل" @@ -2850,7 +2850,7 @@ msgstr "امسح الكل" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "إغلاق" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "الاتصال بمحفظة" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "متصل بـ" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "عنوان النسخ" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "مضاعف" msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "شبكة الاتصال" @@ -3155,7 +3155,7 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "على" @@ -3165,11 +3165,11 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "القائمة الرئيسية المفتوحة" @@ -3219,7 +3219,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "انتظار التأكيد" msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "سوف تتلقى:" @@ -3732,6 +3732,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index a058d12a0..15a442367 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index bf20a3a55..c9ecfa66a 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 7bf147d15..6a9f89e12 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index a25bddb31..6af3dc205 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Konto" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Alles löschen" @@ -2850,7 +2850,7 @@ msgstr "Alles löschen" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Nah dran" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Verbinden Sie sich mit einer Brieftasche" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbunden mit" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Adresse kopieren." @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "MULTIPLIKATOR" msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Netzwerk" @@ -3155,7 +3155,7 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "auf der" @@ -3165,11 +3165,11 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Hauptmenü öffnen" @@ -3219,7 +3219,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Auf Bestätigung warten" msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Du surfe derzeit" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Du wirst erhalten:" @@ -3732,6 +3732,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index ec6052bfc..c00399a53 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index c5ca5f246..64949ab52 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 3362eecc2..4656ece0b 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -208,7 +208,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -220,7 +220,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -254,7 +254,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -296,7 +296,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -369,7 +369,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -471,7 +471,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -497,15 +497,15 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -551,7 +551,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -861,7 +861,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -887,7 +887,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -934,11 +934,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -968,7 +968,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -1024,6 +1024,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 066dbb734..9bab76778 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cuenta" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Limpiar todo" @@ -2850,7 +2850,7 @@ msgstr "Limpiar todo" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Cerrar" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Conectarse a una billetera" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectado con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Dirección de copia" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "MULTIPLICADORA" msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "la red" @@ -3155,7 +3155,7 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sobre el" @@ -3165,11 +3165,11 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abrir menú principal" @@ -3219,7 +3219,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Esperando confirmación" msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Actualmente estás navegando" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Usted recibirá:" @@ -3732,6 +3732,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 27c06141f..47d859a4d 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 52b707103..a579aa931 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Connecter un portefeuille" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Ouvrir le menu principal" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 47b79c159..6bb700d22 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "נקה את כל" @@ -2850,7 +2850,7 @@ msgstr "נקה את כל" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "סגור" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "התחבר לארנק" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "מחובר עם" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "העתקת העתקה" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "מַכפִּיל" msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "רֶשֶׁת" @@ -3155,7 +3155,7 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "על ה" @@ -3165,11 +3165,11 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "פתח תפריט ראשי" @@ -3219,7 +3219,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "מחכה לאישור" msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "אתה תקבל:" @@ -3732,6 +3732,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 5f9f89671..5226644b9 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -1605,7 +1605,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -1617,7 +1617,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -1651,7 +1651,7 @@ msgstr "एक वॉलेट से कनेक्ट करें" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -1666,7 +1666,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -1697,7 +1697,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -1774,7 +1774,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -1884,7 +1884,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -1910,7 +1910,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -1920,11 +1920,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "मुख्य मेनू खोलें" @@ -1974,7 +1974,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -2296,7 +2296,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -2334,7 +2334,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2397,11 +2397,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -2431,7 +2431,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -2487,6 +2487,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index f9d6f8bc2..f1358d2b7 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index efe6ef12f..1d5ef5c1d 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Cancella tutto" @@ -2850,7 +2850,7 @@ msgstr "Cancella tutto" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Chiudere" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Collega wallet" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Connesso con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Copia indirizzo" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "MOLTIPLICATORE" msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Rete" @@ -3155,7 +3155,7 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sul" @@ -3165,11 +3165,11 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Apri menù principale" @@ -3219,7 +3219,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Aspettando la conferma" msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Stai attualmente navigando" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Riceverai:" @@ -3732,6 +3732,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index a86a53e35..b4837f590 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "ウォレットに接続する" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "メインメニューを開く" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 26478431b..8c10d5f84 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "지갑에 연결" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "메인 메뉴 열기" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index e742ae6e8..a6b336cd3 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index ca781fc70..594711275 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 2914574ea..680fdc351 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 4e410fc47..9f40de563 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Conecte a uma carteira" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abra o menu principal" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 5d7ea08a0..b88e2e777 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 14c729dc1..9ab2009db 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cont" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Curata tot" @@ -2850,7 +2850,7 @@ msgstr "Curata tot" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Închide" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Conectați-vă la un portofel" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectat cu" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Adresa de copiere" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "Multiplicator." msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "reţea" @@ -3155,7 +3155,7 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "pe" @@ -3165,11 +3165,11 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Deschideți meniul principal" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Așteptați confirmarea" msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "În prezent, navigați" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Vei primi:" @@ -3732,6 +3732,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index be84671fd..d8727c9dc 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Счет" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Очистить все" @@ -2850,7 +2850,7 @@ msgstr "Очистить все" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Закрывать" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Подключиться к кошельку" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Связаны с" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Копировать адрес" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "Мультипликатор" msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "сеть" @@ -3155,7 +3155,7 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "на" @@ -3165,11 +3165,11 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Открыть главное меню" @@ -3219,7 +3219,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Ожидание подтверждения" msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Вы получите:" @@ -3732,6 +3732,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index e4ffabf17..957ab7560 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 38f77b245..fcbd83f5a 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 237fb7142..5d37d8b74 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 1cd6b7325..258a1b1dd 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -3155,7 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3165,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3732,6 +3732,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 21face2df..b672603fe 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Tài khoản" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2850,7 +2850,7 @@ msgstr "Quet sạch tât cả" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Gần" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "Kết nối với ví" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Kết nối với" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "Số nhân" msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "mạng" @@ -3155,7 +3155,7 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "trên" @@ -3165,11 +3165,11 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Mở menu chính" @@ -3219,7 +3219,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "Chờ đợi sự xác nhận" msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Bạn cần ký giao dịch trong ví của bạn" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" @@ -3732,6 +3732,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 00b1f86e8..ece7e8a64 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帐户" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "关闭" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "连接钱包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "与" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "复制地址" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "乘数" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "网络" @@ -3155,7 +3155,7 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在这一点" @@ -3165,11 +3165,11 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打开主菜单" @@ -3219,7 +3219,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "最近的交易" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "等待确认中" msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在浏览" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您将收到:" @@ -3732,6 +3732,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 037825068..81d4ad8c0 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帳戶" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "關閉" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "連接錢包" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "與" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "複製地址" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3129,7 +3129,7 @@ msgstr "乘數" msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "網絡" @@ -3155,7 +3155,7 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在這一點" @@ -3165,11 +3165,11 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打開主菜單" @@ -3219,7 +3219,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "最近的交易" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3579,7 +3579,7 @@ msgstr "等待確認中" msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3642,11 +3642,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在瀏覽" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3676,7 +3676,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您將收到:" @@ -3732,6 +3732,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 8c5e235b1..399d3a864 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:264 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:288 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:327 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2321,7 +2321,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:375 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2333,7 +2333,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:388 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:233 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2382,7 +2382,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:304 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2413,7 +2413,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:279 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2490,7 +2490,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:398 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -2600,7 +2600,7 @@ msgstr "" msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:151 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" @@ -2626,7 +2626,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:150 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -2636,11 +2636,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:62 +#: src/components/Web3ReactManager/index.tsx:52 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:339 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -2690,7 +2690,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" @@ -3012,7 +3012,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:310 +#: src/components/AccountDetails/index.tsx:308 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3050,7 +3050,7 @@ msgstr "" msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:130 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3113,11 +3113,11 @@ msgstr "" msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:146 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:364 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3147,7 +3147,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:41 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" @@ -3203,6 +3203,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:334 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index f71181901..6835ec38d 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -129,8 +129,10 @@ if (allowedChains.length === 0) { const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] // 6. Create custom connectors - removed walletConnect as AppKit handles it natively +// Note: injected() connector automatically detects MiniPay (via window.ethereum.isMiniPay) +// and other injected wallets (MetaMask, Brave, Opera, etc.) const connectors = [ - injected(), // For MetaMask and other injected wallets + injected(), // For MetaMask, MiniPay, and other injected wallets (EIP-1193 compatible) coinbaseWallet({ appName: 'GoodProtocolUI', appLogoUrl: '', @@ -154,8 +156,7 @@ createAppKit({ analytics: true, // Optional - defaults to your Cloud configuration socials: APPKIT_SOCIAL_PROVIDER_IDS as any, // Type assertion needed for social providers }, - // Featured wallets to promote in WalletConnect modal (order matters: GoodWallet first, then Valora) - featuredWalletIds: APPKIT_FEATURED_WALLET_IDS, + featuredWalletIds: [...APPKIT_FEATURED_WALLET_IDS], }) export function AppKitProvider({ children }: { children: React.ReactNode }) { From b7d027e73434793fae927f758e107f1e4ec1ad8b Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Thu, 27 Nov 2025 16:55:03 +0100 Subject: [PATCH 22/36] feat: add custom MiniPay connector with auto-connect support --- src/components/Web3ReactManager/index.tsx | 31 ++++++- src/language/locales/af/catalog.po | 2 +- src/language/locales/ar/catalog.po | 2 +- src/language/locales/ca/catalog.po | 2 +- src/language/locales/cs/catalog.po | 2 +- src/language/locales/da/catalog.po | 2 +- src/language/locales/de/catalog.po | 2 +- src/language/locales/el/catalog.po | 2 +- src/language/locales/en/catalog.po | 2 +- src/language/locales/es-419/catalog.po | 2 +- src/language/locales/es/catalog.po | 2 +- src/language/locales/fi/catalog.po | 2 +- src/language/locales/fr/catalog.po | 2 +- src/language/locales/he/catalog.po | 2 +- src/language/locales/hi/catalog.po | 2 +- src/language/locales/hu/catalog.po | 2 +- src/language/locales/it/catalog.po | 2 +- src/language/locales/ja/catalog.po | 2 +- src/language/locales/ko/catalog.po | 2 +- src/language/locales/nl/catalog.po | 2 +- src/language/locales/no/catalog.po | 2 +- src/language/locales/pl/catalog.po | 2 +- src/language/locales/pt-BR/catalog.po | 2 +- src/language/locales/pt/catalog.po | 2 +- src/language/locales/ro/catalog.po | 2 +- src/language/locales/ru/catalog.po | 2 +- src/language/locales/sr/catalog.po | 2 +- src/language/locales/sv/catalog.po | 2 +- src/language/locales/tr/catalog.po | 2 +- src/language/locales/uk/catalog.po | 2 +- src/language/locales/vi/catalog.po | 2 +- src/language/locales/zh-CN/catalog.po | 2 +- src/language/locales/zh-TW/catalog.po | 2 +- src/language/locales/zh/catalog.po | 2 +- src/reown/minipayConnector.ts | 98 +++++++++++++++++++++++ src/reown/reownprovider.tsx | 7 +- 36 files changed, 165 insertions(+), 37 deletions(-) create mode 100644 src/reown/minipayConnector.ts diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index b2eb39e48..534e0fcf3 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -1,10 +1,12 @@ -import React, { useEffect, useState } from 'react' +import React, { useEffect, useState, useRef } from 'react' import { useAnalytics } from '@gooddollar/web3sdk-v2' import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import styled from 'styled-components' import { useAppKitState } from '@reown/appkit/react' import { useConnectionInfo } from 'hooks/useConnectionInfo' +import { useConnect } from 'wagmi' +import { isMiniPay } from 'utils/minipay' const MessageWrapper = styled.div` display: flex; @@ -25,6 +27,9 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } const { address } = useConnectionInfo() const networkError = false const { identify } = useAnalytics() + const { connect, connectors } = useConnect() + const miniPayDetected = isMiniPay() + const autoConnectAttempted = useRef(false) useEffect(() => { const timeout = setTimeout(() => { @@ -36,6 +41,30 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } } }, []) + // Auto-connect when MiniPay is detected (per MiniPay documentation recommendations) + useEffect(() => { + if (miniPayDetected && initialized && !address && !autoConnectAttempted.current) { + // Find MiniPay connector + const miniPayConn = connectors.find((conn) => conn.id === 'minipay') + + if (miniPayConn) { + autoConnectAttempted.current = true + // Auto-connect to MiniPay when detected + // Using a small delay to ensure AppKit is fully initialized + const timer = setTimeout(() => { + try { + connect({ connector: miniPayConn }) + } catch (error) { + console.warn('Auto-connect to MiniPay failed:', error) + autoConnectAttempted.current = false // Allow retry on error + } + }, 500) + + return () => clearTimeout(timer) + } + } + }, [miniPayDetected, initialized, address, connect, connectors]) + useEffect(() => { // re-identify analytics when connected wallet changes if (initialized && address) { diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 345a80ef2..b8a7ed334 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 72d607dd7..a17ab11b7 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 15a442367..b6791ce67 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index c9ecfa66a..0dd4597e9 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 6a9f89e12..be257297f 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 6af3dc205..cf0146e79 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index c00399a53..d1766756b 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 64949ab52..fa701e162 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 4656ece0b..841e534e7 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 9bab76778..b5633e39c 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 47d859a4d..19bd1e747 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index a579aa931..46e661618 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 6bb700d22..b96c8fee8 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 5226644b9..2ecabf5e5 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index f1358d2b7..4c3824e3f 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 1d5ef5c1d..6e3bb2a08 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index b4837f590..46686836c 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 8c10d5f84..916c0697b 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index a6b336cd3..776e61bce 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 594711275..4ed730f47 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 680fdc351..ef64403e0 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 9f40de563..de41a5603 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index b88e2e777..5b01f6f8c 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 9ab2009db..f2a77f642 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index d8727c9dc..903756117 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 957ab7560..a45b3319d 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index fcbd83f5a..de9edcaf6 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 5d37d8b74..685e10e60 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 258a1b1dd..62b851af3 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index b672603fe..74ff64906 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index ece7e8a64..0fdad522f 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 81d4ad8c0..3a4781d4b 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 399d3a864..3cc2b5c1e 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:52 +#: src/components/Web3ReactManager/index.tsx:81 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts new file mode 100644 index 000000000..ef1b61874 --- /dev/null +++ b/src/reown/minipayConnector.ts @@ -0,0 +1,98 @@ +import { createConnector } from 'wagmi' +import { isMiniPay } from '../utils/minipay' + +/** + * Custom MiniPay connector for Wagmi + * Explicitly detects and connects to MiniPay wallet + * Based on MiniPay documentation: https://docs.minipay.xyz + */ +export function miniPayConnector() { + return createConnector((config) => ({ + id: 'minipay', + name: 'MiniPay', + type: 'injected', + async connect() { + const provider = this.getProvider() + if (!provider) { + throw new Error('MiniPay provider not found') + } + + // Request account access + const accounts = await (provider as any).request({ + method: 'eth_requestAccounts', + }) + + const account = accounts[0] + if (!account) { + throw new Error('No account found') + } + + // Get chain ID + const chainId = await (provider as any).request({ method: 'eth_chainId' }) + + return { + accounts: [account as `0x${string}`], + chainId: Number(chainId), + } + }, + async disconnect() { + const provider = this.getProvider() + if (provider && typeof provider.disconnect === 'function') { + await provider.disconnect() + } + }, + async getAccounts() { + const provider = this.getProvider() + if (!provider) return [] + const accounts = await (provider as any).request({ method: 'eth_accounts' }) + return accounts.map((account: string) => account as `0x${string}`) + }, + async getChainId() { + const provider = this.getProvider() + if (!provider) return config.chains[0].id + const chainId = await (provider as any).request({ method: 'eth_chainId' }) + return Number(chainId) + }, + async isAuthorized() { + const provider = this.getProvider() + if (!provider) return false + const accounts = await (provider as any).request({ method: 'eth_accounts' }) + return accounts.length > 0 + }, + onAccountsChanged(accounts) { + if (accounts.length === 0) { + config.emitter.emit('disconnect') + } else { + config.emitter.emit('change', { accounts: accounts.map((account: string) => account as `0x${string}`) }) + } + }, + onChainChanged(chainId) { + const id = Number(chainId) + config.emitter.emit('change', { chainId: id }) + }, + onDisconnect() { + config.emitter.emit('disconnect') + }, + async switchChain({ chainId }) { + const provider = this.getProvider() + if (!provider) { + throw new Error('MiniPay provider not found') + } + + const id = `0x${chainId.toString(16)}` + await (provider as any).request({ + method: 'wallet_switchEthereumChain', + params: [{ chainId: id }], + }) + + return config.chains.find((chain) => chain.id === chainId) || config.chains[0] + }, + getProvider() { + // Only return provider if MiniPay is detected + if (typeof window !== 'undefined' && isMiniPay() && (window as any).ethereum) { + return (window as any).ethereum + } + return undefined + }, + })) +} diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 6835ec38d..7a6ef1f56 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -9,6 +9,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' import { injected, coinbaseWallet } from 'wagmi/connectors' import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' +import { miniPayConnector } from './minipayConnector' import { SupportedChains } from '@gooddollar/web3sdk-v2' import { getEnv } from 'utils/env' import { sample } from 'lodash' @@ -129,10 +130,10 @@ if (allowedChains.length === 0) { const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] // 6. Create custom connectors - removed walletConnect as AppKit handles it natively -// Note: injected() connector automatically detects MiniPay (via window.ethereum.isMiniPay) -// and other injected wallets (MetaMask, Brave, Opera, etc.) +// MiniPay connector is prioritized first to ensure proper detection and auto-connect const connectors = [ - injected(), // For MetaMask, MiniPay, and other injected wallets (EIP-1193 compatible) + miniPayConnector(), // Custom MiniPay connector (only active when MiniPay is detected) + injected(), // For MetaMask and other injected wallets (EIP-1193 compatible) coinbaseWallet({ appName: 'GoodProtocolUI', appLogoUrl: '', From 04d3b4ba20c9c696648ebb1cb89c4f3084ea6322 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Fri, 28 Nov 2025 10:52:31 +0100 Subject: [PATCH 23/36] fix: conditionally include MiniPay connector only when detected - Only add MiniPay connector to array when MiniPay is actually detected - Prevents 'connector not found' errors when MiniPay is not available - Fallback to injected() connector for other wallets --- src/components/Web3ReactManager/index.tsx | 2 +- src/reown/reownprovider.tsx | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 534e0fcf3..59950f26d 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -58,7 +58,7 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } console.warn('Auto-connect to MiniPay failed:', error) autoConnectAttempted.current = false // Allow retry on error } - }, 500) + }, 1000) // Increased delay to ensure connectors are fully registered return () => clearTimeout(timer) } diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 7a6ef1f56..37dcfee29 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -10,6 +10,7 @@ import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' import { injected, coinbaseWallet } from 'wagmi/connectors' import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' import { miniPayConnector } from './minipayConnector' +import { isMiniPay } from 'utils/minipay' import { SupportedChains } from '@gooddollar/web3sdk-v2' import { getEnv } from 'utils/env' import { sample } from 'lodash' @@ -130,9 +131,8 @@ if (allowedChains.length === 0) { const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] // 6. Create custom connectors - removed walletConnect as AppKit handles it natively -// MiniPay connector is prioritized first to ensure proper detection and auto-connect -const connectors = [ - miniPayConnector(), // Custom MiniPay connector (only active when MiniPay is detected) +// Conditionally include MiniPay connector only when MiniPay is detected to avoid "connector not found" errors +const baseConnectors = [ injected(), // For MetaMask and other injected wallets (EIP-1193 compatible) coinbaseWallet({ appName: 'GoodProtocolUI', @@ -140,6 +140,11 @@ const connectors = [ }), ] +// Only include MiniPay connector if MiniPay is actually detected +// This prevents AppKit from trying to use a connector that doesn't have a provider +const connectors = + typeof window !== 'undefined' && isMiniPay() ? [miniPayConnector(), ...baseConnectors] : baseConnectors + // 7. Create Wagmi Adapter with connectors const wagmiAdapter = new WagmiAdapter({ networks, From 48613ccc041bfe61425dafbceadfdca37e38ea14 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Thu, 11 Dec 2025 14:44:00 +0100 Subject: [PATCH 24/36] fix: MiniPay connector improvements and code cleanup --- src/components/AppBar.tsx | 4 +- src/components/BlockNativeOnboard/index.tsx | 10 - src/components/SideBar.tsx | 4 +- src/components/WalletBalance/index.tsx | 3 +- src/components/Web3ReactManager/index.tsx | 43 +-- src/connectors/index.ts | 4 - src/hooks/useReserveToken.ts | 24 +- src/hooks/useWeb3.tsx | 7 +- src/language/locales/af/catalog.po | 202 +++++++------ src/language/locales/ar/catalog.po | 202 +++++++------ src/language/locales/ca/catalog.po | 202 +++++++------ src/language/locales/cs/catalog.po | 202 +++++++------ src/language/locales/da/catalog.po | 202 +++++++------ src/language/locales/de/catalog.po | 202 +++++++------ src/language/locales/el/catalog.po | 202 +++++++------ src/language/locales/en/catalog.po | 202 +++++++------ src/language/locales/es-419/catalog.po | 202 +++++++------ src/language/locales/es/catalog.po | 202 +++++++------ src/language/locales/fi/catalog.po | 202 +++++++------ src/language/locales/fr/catalog.po | 202 +++++++------ src/language/locales/he/catalog.po | 202 +++++++------ src/language/locales/hi/catalog.po | 202 +++++++------ src/language/locales/hu/catalog.po | 202 +++++++------ src/language/locales/it/catalog.po | 202 +++++++------ src/language/locales/ja/catalog.po | 202 +++++++------ src/language/locales/ko/catalog.po | 202 +++++++------ src/language/locales/nl/catalog.po | 202 +++++++------ src/language/locales/no/catalog.po | 202 +++++++------ src/language/locales/pl/catalog.po | 202 +++++++------ src/language/locales/pt-BR/catalog.po | 202 +++++++------ src/language/locales/pt/catalog.po | 202 +++++++------ src/language/locales/ro/catalog.po | 202 +++++++------ src/language/locales/ru/catalog.po | 202 +++++++------ src/language/locales/sr/catalog.po | 202 +++++++------ src/language/locales/sv/catalog.po | 202 +++++++------ src/language/locales/tr/catalog.po | 202 +++++++------ src/language/locales/uk/catalog.po | 202 +++++++------ src/language/locales/vi/catalog.po | 202 +++++++------ src/language/locales/zh-CN/catalog.po | 202 +++++++------ src/language/locales/zh-TW/catalog.po | 202 +++++++------ src/language/locales/zh/catalog.po | 202 +++++++------ src/pages/App.tsx | 3 +- src/pages/gd/Claim/ClaimBalance.tsx | 4 +- src/pages/gd/Claim/OldClaim.tsx | 4 +- src/pages/gd/Claim/index.tsx | 10 +- src/pages/gd/GoodId/index.tsx | 8 +- src/pages/gd/Swap/SwapCelo/UniSwap.tsx | 5 +- src/pages/gd/Swap/SwapCore/mentoReserve.tsx | 11 +- src/reown/minipayConnector.ts | 296 ++++++++++++++------ src/reown/reownprovider.tsx | 30 +- src/utils/walletConfig.ts | 11 +- 51 files changed, 3556 insertions(+), 3591 deletions(-) diff --git a/src/components/AppBar.tsx b/src/components/AppBar.tsx index bc172c84a..aaa78da4d 100644 --- a/src/components/AppBar.tsx +++ b/src/components/AppBar.tsx @@ -27,6 +27,7 @@ import { ReactComponent as Burger } from '../assets/images/burger.svg' import { ReactComponent as X } from '../assets/images/x.svg' import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' import { useGoodDappFeatures } from 'hooks/useFeaturesEnabled' +import { isMiniPay } from 'utils/minipay' const AppBarWrapper = styled.header` background: ${({ theme }) => theme.color.secondaryBg}; @@ -189,8 +190,7 @@ function AppBar({ sideBar, walletBalance }): JSX.Element { const showPrice = true // useFeatureFlag('show-gd-price') const { isConnected } = useAppKitAccount() - const { ethereum } = window - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() const [, payload] = useFeatureFlagWithPayload('app-notice') const { enabled: appNoticeEnabled, message, color, link } = (payload as any) || {} diff --git a/src/components/BlockNativeOnboard/index.tsx b/src/components/BlockNativeOnboard/index.tsx index 5dca94b58..1c74faaa9 100644 --- a/src/components/BlockNativeOnboard/index.tsx +++ b/src/components/BlockNativeOnboard/index.tsx @@ -8,15 +8,8 @@ import { noop } from 'lodash' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' -/** - * Just a button to trigger the onboard connect modal. - * any state updates after succesfully connecting are handled by useOnboardConnect (src/hooks/useActiveOnboard) - * @returns Connect Button or Empty - */ - export const clearDeeplink = () => { const osName = getDevice().os.name - // temp solution for where it tries and open a deeplink for desktop app if (['Linux', 'Windows', 'macOS', 'iOS'].includes(osName)) { AsyncStorage.safeRemove('WALLETCONNECT_DEEPLINK_CHOICE') } @@ -28,7 +21,6 @@ export const OnboardConnectButton: FC = () => { const sendData = useSendAnalyticsData() const { i18n } = useLingui() const buttonText = i18n._(t`Connect to a wallet`) - // flag to detect for wallet connected only after we pressed a button const connectionStartedRef = useRef(false) const onWalletConnect = async () => { @@ -71,5 +63,3 @@ export const OnboardConnectButton: FC = () => { /> ) } - -// diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx index 6fc237200..1a68825b2 100644 --- a/src/components/SideBar.tsx +++ b/src/components/SideBar.tsx @@ -13,6 +13,7 @@ import { ExternalLink } from 'theme' import { SubMenuItems } from './StyledMenu/SubMenu' import { socials } from 'constants/socials' import classNames from 'classnames' +import { isMiniPay } from 'utils/minipay' const SocialsLink: React.FC<{ network: string; logo: string; url: string; onPress: (e: any, url: string) => void }> = ({ network, @@ -98,8 +99,7 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl 'w-full': !isTabletView, }) - const { ethereum } = window - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() const { bridgeEnabled = false, swapEnabled = false } = payload || {} const externalLinks = useMemo( diff --git a/src/components/WalletBalance/index.tsx b/src/components/WalletBalance/index.tsx index 5931a7496..a32dc4068 100644 --- a/src/components/WalletBalance/index.tsx +++ b/src/components/WalletBalance/index.tsx @@ -15,6 +15,7 @@ import usePromise from 'hooks/usePromise' import { getScreenWidth } from 'utils/screenSizes' import { AdditionalChainId } from '../../constants' import useMetaMask from 'hooks/useMetaMask' +import { isMiniPay } from 'utils/minipay' //assets import { ReactComponent as WalletBalanceIcon } from '../../assets/images/walletBalanceIcon.svg' @@ -39,7 +40,7 @@ export const WalletBalanceWrapper = ({ toggleView }: { toggleView: typeof noop } const [imported, setImported] = useState(false) const { i18n } = useLingui() const scrWidth = getScreenWidth() - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() const importToMetamask = async () => { const allTokens: any[] = [ diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 59950f26d..b29bc26ff 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -19,10 +19,12 @@ const Message = styled.h2` color: ${({ theme }) => theme.secondary1}; ` +const LOADER_DELAY_MS = 600 +const AUTO_CONNECT_DELAY_MS = 1000 + export default function Web3ReactManager({ children }: { children: JSX.Element }) { const { i18n } = useLingui() - // const { tried } = useOnboardConnect() - const [, setShowLoader] = useState(false) // handle delayed loader state + const [, setShowLoader] = useState(false) const { initialized } = useAppKitState() const { address } = useConnectionInfo() const networkError = false @@ -34,34 +36,35 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } useEffect(() => { const timeout = setTimeout(() => { setShowLoader(true) - }, 600) + }, LOADER_DELAY_MS) return () => { clearTimeout(timeout) } }, []) - // Auto-connect when MiniPay is detected (per MiniPay documentation recommendations) useEffect(() => { - if (miniPayDetected && initialized && !address && !autoConnectAttempted.current) { - // Find MiniPay connector - const miniPayConn = connectors.find((conn) => conn.id === 'minipay') + if (!miniPayDetected || !initialized || address || autoConnectAttempted.current) { + return + } - if (miniPayConn) { - autoConnectAttempted.current = true - // Auto-connect to MiniPay when detected - // Using a small delay to ensure AppKit is fully initialized - const timer = setTimeout(() => { - try { - connect({ connector: miniPayConn }) - } catch (error) { - console.warn('Auto-connect to MiniPay failed:', error) - autoConnectAttempted.current = false // Allow retry on error - } - }, 1000) // Increased delay to ensure connectors are fully registered + const miniPayConnector = connectors.find((conn) => conn.id === 'minipay') + if (!miniPayConnector) { + return + } - return () => clearTimeout(timer) + autoConnectAttempted.current = true + const timer = setTimeout(() => { + try { + connect({ connector: miniPayConnector }) + } catch (error) { + console.warn('Auto-connect to MiniPay failed:', error) + autoConnectAttempted.current = false } + }, AUTO_CONNECT_DELAY_MS) + + return () => { + clearTimeout(timer) } }, [miniPayDetected, initialized, address, connect, connectors]) diff --git a/src/connectors/index.ts b/src/connectors/index.ts index cd2f8cece..2acb89d42 100644 --- a/src/connectors/index.ts +++ b/src/connectors/index.ts @@ -194,7 +194,3 @@ export const connectOptions = { }, } -export const Fortmatic = {} -export const fortmatic = {} -export const Portis = {} -export const portis = {} diff --git a/src/hooks/useReserveToken.ts b/src/hooks/useReserveToken.ts index 68aadea1a..5629de360 100644 --- a/src/hooks/useReserveToken.ts +++ b/src/hooks/useReserveToken.ts @@ -1,20 +1,18 @@ -import { useReserveToken as useMentoReserveToken } from '@gooddollar/web3sdk-v2' import { Token } from '@sushiswap/sdk' import { ethers } from 'ethers' import { useMemo } from 'react' +import { useAppKitNetwork } from '@reown/appkit/react' export const useReserveToken = () => { - const { chainId, address, decimals, symbol, name } = useMentoReserveToken() - const result = useMemo( - () => - new Token( - chainId || 42220, - address || ethers.constants.AddressZero, - decimals || 18, - symbol || 'USD', - name || 'USD' - ), - [chainId, address, decimals, symbol, name] - ) + const { chainId } = useAppKitNetwork() + const result = useMemo(() => { + const cusdAddresses: Record = { + 42220: '0x765DE816845861e75A25fCA122bb6898B8B1282a', + 122: '0x28ea52f3ee46CaC5a72f72e8B3A387C0291d586d', + 50: '0x5eE1b0F7FbAd2D10E00a0E0773D45840f73C5A1C', + } + const address = cusdAddresses[chainId || 42220] || ethers.constants.AddressZero + return new Token(chainId || 42220, address, 18, 'cUSD', 'Celo Dollar') + }, [chainId]) return result } diff --git a/src/hooks/useWeb3.tsx b/src/hooks/useWeb3.tsx index ef26f9992..4b7a34b6d 100644 --- a/src/hooks/useWeb3.tsx +++ b/src/hooks/useWeb3.tsx @@ -10,6 +10,7 @@ import { useAppKitNetwork, useAppKitProvider } from '@reown/appkit/react' import type { Provider } from '@reown/appkit/react' import { getEnv } from 'utils/env' +import { isMiniPay } from 'utils/minipay' type NetworkSettings = { currentNetwork: string @@ -52,7 +53,7 @@ export function useNetwork(): NetworkSettings { ) useEffect(() => { - AsyncStorage.safeSet('GD_RPCS', rpcs) //this is required for sdk v1 + AsyncStorage.safeSet('GD_RPCS', rpcs) }, []) return { currentNetwork, rpcs } @@ -62,7 +63,7 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN const { rpcs } = useNetwork() const { chainId } = useAppKitNetwork() const { walletProvider } = useAppKitProvider('eip155') - const isMiniPay = window?.ethereum?.isMiniPay + const isMiniPayWallet = isMiniPay() const [mainnetWeb3] = useEnvWeb3(DAO_NETWORK.MAINNET) const web3 = useMemo( @@ -76,7 +77,7 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN if (webprovider) { webprovider.send = async (method: string, params: any) => { - if (method === 'eth_sendTransaction' && !isMiniPay && chainId && chainId in gasSettings) { + if (method === 'eth_sendTransaction' && !isMiniPayWallet && chainId && chainId in gasSettings) { const gasSettingsForChain = gasSettings[Number(chainId)] if (gasSettingsForChain) { if (!params[0].maxFeePerGas && Number(chainId) !== 50) { diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 9a9dfbce7..844e221e9 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Rekening" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "bedrag" @@ -2709,27 +2709,27 @@ msgstr "bedrag" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Goedkeur" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "GOEDKEUR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Goedgekeur" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Goedkeuring" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "GOEDKEURING" @@ -2737,7 +2737,7 @@ msgstr "GOEDKEURING" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Terug na portefeulje" msgid "Balance" msgstr "Balans" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Geblokkeerde adres" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Verander" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Klembare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Duidelik alle" @@ -2850,7 +2850,7 @@ msgstr "Duidelik alle" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bevestig hierdie transaksie in jou beursie" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Koppel aan 'n beursie" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbind met" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Kopieer adres" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITO" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITO" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "misluk om te laai" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Hoeveel wil jy deponeer?" @@ -3121,20 +3121,19 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "VERMENIGVULDIGER" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "my spel" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "netwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Volgende maand:" msgid "No data." msgstr "Geen data." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "op die" @@ -3167,11 +3165,11 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Open hoofkieslys" @@ -3179,7 +3177,7 @@ msgstr "Open hoofkieslys" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Hangende" @@ -3212,32 +3210,32 @@ msgstr "Prys Impak" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokol" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Onlangse transak" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "pryse" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belonings" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "PRYSE" @@ -3256,7 +3254,7 @@ msgstr "Routing deur middel van hierdie tekens het gelei tot die beste prys vir #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Soek naam of plak die adres" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Glip Verdraagsaamheid" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PAAL" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "Sukses!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Ruil" @@ -3334,15 +3332,15 @@ msgstr "Ruil" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Ruil uit" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Ruil na" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dit is die protokol wat die teken is ingelê om." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dit is die teken wat tans ingelê." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Hierdie maand" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Teken" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "TEKEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Totale belang" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "sperdatum transaksie" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Transaksie is gestuur na die blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Kyk op verkenner" @@ -3584,12 +3582,11 @@ msgstr "Wag vir Bevestiging" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Beursie balans" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Jy is tans op" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Jy sal ontvang:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Jou swembad Deel" msgid "Your Pool Tokens" msgstr "jou swembad Tokens" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Jou sosiale bydrae van:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index af1ff60e7..7afe2aa18 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "الحساب" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "مبلغ" @@ -2709,27 +2709,27 @@ msgstr "مبلغ" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "يوافق" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "تمت الموافقة" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "الموافقة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "الموافقة" @@ -2737,7 +2737,7 @@ msgstr "الموافقة" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "العودة إلى المحفظة" msgid "Balance" msgstr "توازن" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "عنوان محظور" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "تغيير" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "قابلة للمطالبة" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "امسح الكل" @@ -2850,7 +2850,7 @@ msgstr "امسح الكل" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "إغلاق" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "قم بتأكيد هذه المعاملة في محفظتك" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "الاتصال بمحفظة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "متصل بـ" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "عنوان النسخ" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "الوديعة" @@ -2938,11 +2938,11 @@ msgstr "الوديعة" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "فشل التحميل" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "القابضة" @@ -3048,7 +3048,7 @@ msgstr "القابضة" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "كم تريد إيداعها؟" @@ -3121,20 +3121,19 @@ msgstr "الدقائق" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "مضاعف" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "ماي ستيك" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "شبكة الاتصال" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "الشهر المقبل:" msgid "No data." msgstr "لا توجد بيانات." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "على" @@ -3167,11 +3165,11 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "القائمة الرئيسية المفتوحة" @@ -3179,7 +3177,7 @@ msgstr "القائمة الرئيسية المفتوحة" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "معلق" @@ -3212,32 +3210,32 @@ msgstr "تأثير السعر" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "بروتوكول" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "المكافآت" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "المكافآت" @@ -3256,7 +3254,7 @@ msgstr "أدى التوجيه عبر هذه الرموز إلى أفضل سعر #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "ابحث عن الاسم أو الصق العنوان" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "تسامح الانزلاق" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "حصة" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "حصة" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "عمادا" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "النجاح!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "مبادلة" @@ -3334,15 +3332,15 @@ msgstr "مبادلة" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "مبادلة من" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "مبادلة إلى" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "هذا هو البروتوكول الذي تم وضع الرمز المميز عليه." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "هذا هو الرمز المميز الذي يتم رهنه حاليًا." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "هذا الشهر" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "الرمز المميز" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "الرمز المميز" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "إجمالي الحصة" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "المهلة النهائية" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "عرض على المستكشف" @@ -3584,12 +3582,11 @@ msgstr "انتظار التأكيد" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "رصيد المحفظة" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "أنت تتصفح حاليًا" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "سوف تتلقى:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "مشاركة حمام السباحة الخاص بك" msgid "Your Pool Tokens" msgstr "رموز حمام السباحة الخاصة بك" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "مساهمتك الاجتماعية من:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 1a1a12f8b..c271430c9 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Aprovat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Aprovació" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 21dcde1e1..3af3317f6 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 32febc24a..ae86a317c 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 9eb880c33..70277c325 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Konto" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "betragen" @@ -2709,27 +2709,27 @@ msgstr "betragen" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "GENEHMIGEN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Genehmigt" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Genehmigen" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Genehmigen" @@ -2737,7 +2737,7 @@ msgstr "Genehmigen" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Zurück zum Portfolio." msgid "Balance" msgstr "Gleichgewicht" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Blockierte Adresse" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Ändern" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Fordern Sie G $ Belohnungen an" @@ -2788,7 +2788,7 @@ msgstr "Fordern Sie G $ Belohnungen an" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Geltend" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Alles löschen" @@ -2850,7 +2850,7 @@ msgstr "Alles löschen" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Nah dran" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Bestätigen Sie diese Transaktion in Ihrer Brieftasche" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Herzliche Glückwünsche!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Verbinden Sie sich mit einer Brieftasche" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Verbunden mit" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Adresse kopieren." @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "ANZAHLUNG" @@ -2938,11 +2938,11 @@ msgstr "ANZAHLUNG" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "Laden fehlgeschlagen" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Gehe zum Portfolio." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Wie viel Wert hat sich bisher angesammelt?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Wie viel möchten Sie einlädigen?" @@ -3121,20 +3121,19 @@ msgstr "Protokoll" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLIKATOR" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mein Pfahl" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Netzwerk" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Nächsten Monat:" msgid "No data." msgstr "Keine Daten." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "auf der" @@ -3167,11 +3165,11 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Hauptmenü öffnen" @@ -3179,7 +3177,7 @@ msgstr "Hauptmenü öffnen" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "steht aus" @@ -3212,32 +3210,32 @@ msgstr "Preisauswirkung" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokoll" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Belohnung" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "BELOHNUNG" @@ -3256,7 +3254,7 @@ msgstr "Das Weiterleiten durch diese Token ergab den besten Preis für Ihren Han #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Suchname oder Fügen Sie die Adresse ein" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Schlupftoleranz" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Anteil" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "EINATZ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staket {0} bei {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Stak" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Ab 1.0 steigt Ihr Multiplikator nach einem Monat nach einem Monat zum Vertrauen auf 2.0, an diesem Punkt, an dem Sie jeden Tag mit mehr G $ belohnt werden können!" @@ -3326,7 +3324,7 @@ msgstr "Erfolg!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Tauschen" @@ -3334,15 +3332,15 @@ msgstr "Tauschen" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Swap von" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Tauschen" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Dies ist das Protokoll, mit dem das Token stecken ist." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Dies ist das Token, das derzeit steckbar ist." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Diesen Monat" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Zeichen" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "ZEICHEN" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Gesamtbetrag auf wertberührt." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Total Stake" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Transaktionsfrist" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Die Transaktion wurde an den Blockchain geschickt" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ansicht auf Explorer" @@ -3584,12 +3582,11 @@ msgstr "Auf Bestätigung warten" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Geldbörsenbetrag" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "Rücknahme von Mitteln von {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Sie schaffen UBI Tausende von Menschen auf der ganzen Welt." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Du surfe derzeit" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Du wirst erhalten:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Ihre Poolfreigabe" msgid "Your Pool Tokens" msgstr "Ihre Pool-Token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ihr sozialer Beitrag von:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 761445547..4c37d51e7 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index c07ef9c2f..863f0d9f1 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 6f69a54c0..a7c2952fb 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -18,22 +18,22 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -71,27 +71,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -165,7 +165,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -208,7 +208,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -220,7 +220,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -237,24 +237,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -282,7 +282,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -292,11 +292,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -308,7 +308,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -337,7 +337,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -369,7 +369,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -390,11 +390,11 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -406,11 +406,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -463,20 +463,19 @@ msgstr "" msgid "minutes" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -498,16 +497,15 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -515,7 +513,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -544,32 +542,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -588,7 +586,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -603,12 +601,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -628,23 +626,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -658,7 +656,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -666,15 +664,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -705,7 +703,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -730,7 +728,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -764,7 +762,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -777,11 +775,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -794,20 +792,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -815,11 +813,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -827,7 +825,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -835,7 +833,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -854,7 +852,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -866,12 +864,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -892,12 +890,11 @@ msgstr "" msgid "Waiting for Confirmation" msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -940,16 +937,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -957,7 +953,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -975,23 +971,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -1003,11 +999,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -1035,6 +1031,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 4862985ca..2c20bf222 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cuenta" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Monto" @@ -2709,27 +2709,27 @@ msgstr "Monto" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Aprobar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APROBAR" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Aprobado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Aprobatorio" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "APROBATORIA" @@ -2737,7 +2737,7 @@ msgstr "APROBATORIA" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Volver a la cartera" msgid "Balance" msgstr "Equilibrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Dirección bloqueada" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Cambio" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Reclamar g $ recompensas" @@ -2788,7 +2788,7 @@ msgstr "Reclamar g $ recompensas" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Reclamable" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Limpiar todo" @@ -2850,7 +2850,7 @@ msgstr "Limpiar todo" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Cerrar" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirme esta transacción en su billetera." #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "¡Felicidades!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conectarse a una billetera" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectado con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Dirección de copia" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITAR" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITAR" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "falló al cargar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Ir a la cartera" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Tenencia" @@ -3048,7 +3048,7 @@ msgstr "Tenencia" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "¿Cuánto valor ha acumulado su estaca hasta ahora?" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "¿Cuánto te gustaría depositar?" @@ -3121,20 +3121,19 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MULTIPLICADORA" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Mi estaca" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "la red" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Próximo mes:" msgid "No data." msgstr "Sin datos." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sobre el" @@ -3167,11 +3165,11 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abrir menú principal" @@ -3179,7 +3177,7 @@ msgstr "Abrir menú principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendiente" @@ -3212,32 +3210,32 @@ msgstr "Impacto en el precio" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocolo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Transacciones Recientes" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompensas" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompensas" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompensas" @@ -3256,7 +3254,7 @@ msgstr "El enrutamiento a través de estos tokens resultó en el mejor precio pa #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Buscar nombre o pegue la dirección" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerancia al deslizamiento" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Apostar" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "APOSTAR" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Apostado {0} en {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Apretón" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partir de 1.0, su multiplicador aumentará a 2.0 después de un mes de estadía de la confianza, ¿en qué punto puede ser recompensado con más G $ todos los días?" @@ -3326,7 +3324,7 @@ msgstr "¡Éxito!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Intercambio" @@ -3334,15 +3332,15 @@ msgstr "Intercambio" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Cambiar de" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Intercambiar" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Este es el protocolo de que el token está apostado." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Este es el token que actualmente está siendo estancado." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Este mes" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Simbólico" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "SIMBÓLICA" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Cantidad total en valor estancado." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Estaca total" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Fecha límite de transacción" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transacción fue enviada al bloque de bloques." #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver en el explorador" @@ -3584,12 +3582,11 @@ msgstr "Esperando confirmación" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Balance de billetera" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "Retiró fondos de {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Estás creando UBI a miles de personas de todo el mundo." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Actualmente estás navegando" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Usted recibirá:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Su participación en la piscina" msgid "Your Pool Tokens" msgstr "Tus tokens de piscina" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Su contribución social de:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 46c65dac3..a84288418 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index b09c70ec3..70c133418 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Approuver" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Approuvé" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Approbation en cours" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Solde" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendication G $ Récompenses" @@ -2788,7 +2788,7 @@ msgstr "Revendication G $ Récompenses" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Toutes nos félicitations!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Connecter un portefeuille" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "échec du chargement" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Ouvrir le menu principal" @@ -3179,7 +3177,7 @@ msgstr "Ouvrir le menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "En attente" @@ -3212,32 +3210,32 @@ msgstr "Impact prix" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "Le routage à travers ces tokens vous a permis d'obtenir le meilleur pri #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolérance de slippage" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Staker" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Piqueté {0} à {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Swapper" @@ -3334,15 +3332,15 @@ msgstr "Swapper" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Durée limite de transaction" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Voir sur l'explorateur" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "A retiré des fonds de {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Vous créez UBI à des milliers de personnes dans le monde entier." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Votre part du pool" msgid "Your Pool Tokens" msgstr "Vos tokens du pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 6195e6554..54a4606a6 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "חֶשְׁבּוֹן" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "כמות" @@ -2709,27 +2709,27 @@ msgstr "כמות" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "לאשׁר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "לְאַשֵׁר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "מאושר" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "אישור" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "אישור" @@ -2737,7 +2737,7 @@ msgstr "אישור" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "חזרה לתיק הפורפוליו" msgid "Balance" msgstr "יתרה" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "כתובת חסומה" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "שינוי" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "תביעה G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "תביעה G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "נכלל" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "נקה את כל" @@ -2850,7 +2850,7 @@ msgstr "נקה את כל" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "סגור" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "אשר את העסקה הזו בארנק שלך" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "מזל טוב!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "התחבר לארנק" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "מחובר עם" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "העתקת העתקה" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "לְהַפְקִיד" @@ -2938,11 +2938,11 @@ msgstr "לְהַפְקִיד" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "נכשלה בטעינה" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "עבור אל תיק הפורפוליו" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "הַחזָקָה" @@ -3048,7 +3048,7 @@ msgstr "הַחזָקָה" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "כמה ערך המוקד שלך צבר עד כה." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "כמה אתה רוצה להפקיד?" @@ -3121,20 +3121,19 @@ msgstr "דקות" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "מַכפִּיל" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "החלק שלי" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "רֶשֶׁת" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "חודש הבא:" msgid "No data." msgstr "אין מידע." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "על ה" @@ -3167,11 +3165,11 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "פתח תפריט ראשי" @@ -3179,7 +3177,7 @@ msgstr "פתח תפריט ראשי" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "ממתין לאישור" @@ -3212,32 +3210,32 @@ msgstr "השפעת מחיר" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "נוהל" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "תנועות אחרונות" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "תגמולים" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "תגמולים" @@ -3256,7 +3254,7 @@ msgstr "ניתוב באמצעות אסימונים אלה הביא את המחי #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "שם חיפוש או הדבק את הכתובת" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "תנודת מחיר מקובלת" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "יתד" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "לְהַמֵר" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0} ב {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "סטרינג" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "החל מ 1.0, מכפיל שלך יגדל ל 2.0 לאחר חודש אחד של staking לאמון, באיזו נקודה אתה יכול להיות מתוגמל עם יותר G $ כל יום!" @@ -3326,7 +3324,7 @@ msgstr "הַצלָחָה!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "להחלִיף" @@ -3334,15 +3332,15 @@ msgstr "להחלִיף" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "החלפה מ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "להחליף ל" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "זהו הפרוטוקול כי האסימון הוא staked." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "זהו האסימון כי כרגע להיות staked." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "החודש" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "אסימון" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "אֲסִימוֹן" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "הסכום הכולל על ערך staked." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "סך כל ההימור" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "מועד אחרון לעסקה" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "הצג על אקספלורר" @@ -3584,12 +3582,11 @@ msgstr "מחכה לאישור" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "מאזן ארנק" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "משכו כספים מ {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "אתה יוצר UBI לאלפי אנשים ברחבי העולם." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "אתה כרגע גלישה" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "אתה תקבל:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "נתח הפול שלך" msgid "Your Pool Tokens" msgstr "אסימוני הבריכה שלך" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "התרומה החברתית שלך מ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 5773d173d..efce9907f 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -1420,13 +1420,13 @@ msgstr "" #~ msgid "APY (incl. Fees)" #~ msgstr "एपीवाई (शुल्क सहित)" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -1452,11 +1452,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -1464,27 +1464,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "मंजूर" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "मंजूर की" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "का अनुमोदन" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -1492,7 +1492,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -1506,7 +1506,7 @@ msgstr "" msgid "Balance" msgstr "संतुलन" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -1535,7 +1535,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -1543,7 +1543,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -1605,7 +1605,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -1617,7 +1617,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -1634,24 +1634,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "एक वॉलेट से कनेक्ट करें" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -1666,7 +1666,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -1683,7 +1683,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -1693,11 +1693,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -1713,7 +1713,7 @@ msgstr "" msgid "failed to load" msgstr "लोड करने में विफल" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -1742,7 +1742,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -1774,7 +1774,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -1803,7 +1803,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -1815,11 +1815,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -1876,20 +1876,19 @@ msgstr "मिनट" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -1911,8 +1910,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -1922,11 +1920,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "मुख्य मेनू खोलें" @@ -1934,7 +1932,7 @@ msgstr "मुख्य मेनू खोलें" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "विचाराधीन" @@ -1967,32 +1965,32 @@ msgstr "मूल्य प्रभाव" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2011,7 +2009,7 @@ msgstr "इन टोकन के माध्यम से रूटिंग #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2026,12 +2024,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "स्लिपेज टॉलरेंस" @@ -2051,23 +2049,23 @@ msgstr "" msgid "Stake" msgstr "दाँव" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2081,7 +2079,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "विनिमय" @@ -2089,15 +2087,15 @@ msgstr "विनिमय" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -2128,7 +2126,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2153,7 +2151,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2195,7 +2193,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2208,11 +2206,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2229,20 +2227,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "टोकन" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2250,11 +2248,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2262,7 +2260,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2270,7 +2268,7 @@ msgstr "" msgid "Transaction deadline" msgstr "लेन-देन की समय सीमा" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -2289,7 +2287,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -2301,12 +2299,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "एक्सप्लोरर पर देखें" @@ -2339,12 +2337,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "बटुआ" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2403,16 +2400,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -2420,7 +2416,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -2438,23 +2434,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -2466,11 +2462,11 @@ msgstr "आपका पूल शेयर" msgid "Your Pool Tokens" msgstr "आपका पूल टोकन" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -2498,6 +2494,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 89abad97a..0dbdfb5de 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 023e0fe82..7d5f6df15 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Quantità" @@ -2709,27 +2709,27 @@ msgstr "Quantità" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Approva" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APPROVARE" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Approvato" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Approvazione" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Approvazione" @@ -2737,7 +2737,7 @@ msgstr "Approvazione" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Torna al portafoglio." msgid "Balance" msgstr "Saldo" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Indirizzo bloccato" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Modificare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Richiedi G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "Richiedi G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Richieso" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Cancella tutto" @@ -2850,7 +2850,7 @@ msgstr "Cancella tutto" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Chiudere" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Conferma questa transazione nel tuo portafoglio" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Congratulazioni!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Collega wallet" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Connesso con" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Copia indirizzo" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOSITARE" @@ -2938,11 +2938,11 @@ msgstr "DEPOSITARE" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "impossibile caricare" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Vai al portfolio." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Presa" @@ -3048,7 +3048,7 @@ msgstr "Presa" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Quanto valore è accumulato il tuo gioco finora." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Quanto ti piacerebbe depositare?" @@ -3121,20 +3121,19 @@ msgstr "minuti" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "MOLTIPLICATORE" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Il mio palo" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "Rete" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Il prossimo mese:" msgid "No data." msgstr "Nessun dato." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "sul" @@ -3167,11 +3165,11 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Apri menù principale" @@ -3179,7 +3177,7 @@ msgstr "Apri menù principale" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In attesa" @@ -3212,32 +3210,32 @@ msgstr "Impatto sul prezzo" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocollo" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Le transazioni recenti" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "premi" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Premi" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Premi" @@ -3256,7 +3254,7 @@ msgstr "Il routing attraverso questi token è risultato nel prezzo migliore per #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Nome cerca o incolla l'indirizzo" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolleranza slippage" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Metti in staking" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "PALO" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Puntato {0} a {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staffamento" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "A partire da 1,0, il tuo moltiplicatore aumenterà fino a 2.0 dopo un mese di sostentamento della fiducia, a quel punto puoi essere ricompensato con più G $ tutti i giorni!" @@ -3326,7 +3324,7 @@ msgstr "Successo!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Scambia" @@ -3334,15 +3332,15 @@ msgstr "Scambia" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Swap da." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Swap a." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Questo è il protocollo che il token è puntato." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Questo è il token che è attualmente puntato." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Questo mese" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "GETTONE" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Importo totale sul valore puntato." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Pali totale" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Scadenza transazione" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "La transazione è stata inviata al blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Visualizza sull'explorer" @@ -3584,12 +3582,11 @@ msgstr "Aspettando la conferma" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Bilancia del portafoglio." -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "Ritirato i fondi da {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Stai creando UBI a migliaia di persone in tutto il mondo." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Stai attualmente navigando" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Riceverai:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "La tua quota della pool" msgid "Your Pool Tokens" msgstr "I tuoi pool token" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Il tuo contributo sociale da:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 590730bc5..b26296f1a 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "承認する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "承認済み" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "承認" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "残高" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "G $ Rewards." @@ -2788,7 +2788,7 @@ msgstr "G $ Rewards." msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "おめでとう!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "ウォレットに接続する" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "読み込みに失敗しました" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "分" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "メインメニューを開く" @@ -3179,7 +3177,7 @@ msgstr "メインメニューを開く" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "保留中" @@ -3212,32 +3210,32 @@ msgstr "価格への影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "これらのトークンを介してルーティングすると、取引 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "スリッページ許容値" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "ステーク" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{1}で杭打ち{0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "スワップ" @@ -3334,15 +3332,15 @@ msgstr "スワップ" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "トークン" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "取引期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "エクスプローラーで表示" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "{0}から資金を撤回しました" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "あなたは世界中の何千人もの人々にUBIを作成しています。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "あなたのプールシェア" msgid "Your Pool Tokens" msgstr "あなたのプールトークン" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 3393d088b..8e3facc67 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "승인 됨" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "승인" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "밸런스" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "주장 G $ Rewards" @@ -2788,7 +2788,7 @@ msgstr "주장 G $ Rewards" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "축하합니다!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "지갑에 연결" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "불러 오지 못했습니다" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "분" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "메인 메뉴 열기" @@ -3179,7 +3177,7 @@ msgstr "메인 메뉴 열기" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "보류 중" @@ -3212,32 +3210,32 @@ msgstr "가격 영향" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "다음 토큰들을 통한 라우팅을 통해 최적의 가격이 산 #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "미끄러짐 공차" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "말뚝" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{1}에서 {0} {0}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "교환" @@ -3334,15 +3332,15 @@ msgstr "교환" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "토큰" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "거래 제한시간" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "탐색기에서보기" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "{0}에서 철수 된 자금" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "당신은 전 세계의 수천 명의 사람들에게 UBI를 만들고 있습니다." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "여러분의 풀 지분" msgid "Your Pool Tokens" msgstr "여러분의 풀 토큰" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index d51a54bf7..7a79e67cf 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 317d61d99..bda4708b9 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 8ec5d4665..1610bbf98 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index d35ac11e2..8ed7cb4bb 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Aprovar" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Aprovado" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Aprovando" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "Equilíbrio" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conecte a uma carteira" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "Falha ao carregar" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "minutos" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abra o menu principal" @@ -3179,7 +3177,7 @@ msgstr "Abra o menu principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Pendente" @@ -3212,32 +3210,32 @@ msgstr "Impacto de preço" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "O roteamento por meio desses tokens resultou no melhor preço para sua n #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Tolerância de deslizamento" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Estaca" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Trocar" @@ -3334,15 +3332,15 @@ msgstr "Trocar" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Símbolo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Prazo de transação" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Ver no explorer" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "Seus Tokens de Pool" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 67bdcc1eb..6726ea87f 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 4cee43b4d..712d42145 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Cont" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "Cantitate" @@ -2709,27 +2709,27 @@ msgstr "Cantitate" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Aproba" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "APROBA" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Aprobat" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Aprobând" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Aprobând." @@ -2737,7 +2737,7 @@ msgstr "Aprobând." msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Înapoi la portofoliu." msgid "Balance" msgstr "Echilibru" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Adresa blocată" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Schimbare" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Revendicați G $ Recompense" @@ -2788,7 +2788,7 @@ msgstr "Revendicați G $ Recompense" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Invocate" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Curata tot" @@ -2850,7 +2850,7 @@ msgstr "Curata tot" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Închide" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Confirmați această tranzacție în portofel" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Felicitări!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conectați-vă la un portofel" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Conectat cu" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Adresa de copiere" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "DEPOZIT" @@ -2938,11 +2938,11 @@ msgstr "DEPOZIT" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "incarcarea a esuat" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Du-te la portofoliu." @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Deținere" @@ -3048,7 +3048,7 @@ msgstr "Deținere" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Cât de mult valoarea dvs. sa acumulat până acum." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Cât de mult doriți să depuneți?" @@ -3121,20 +3121,19 @@ msgstr "minute" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Multiplicator." -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Miza mea" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "reţea" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Luna viitoare:" msgid "No data." msgstr "Nu există date." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "pe" @@ -3167,11 +3165,11 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Deschideți meniul principal" @@ -3179,7 +3177,7 @@ msgstr "Deschideți meniul principal" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "In asteptarea" @@ -3212,32 +3210,32 @@ msgstr "Impactul prețului" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "tranzactii recente" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "recompense" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Recompense" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Recompense" @@ -3256,7 +3254,7 @@ msgstr "Trecerea prin aceste jetoane a dus la cel mai bun preț pentru tranzacț #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Numele de căutare sau lipiți adresa" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Toleranță la alunecare" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Miza" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Miză" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "{0} la {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Staking." -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Începând cu 1.0, multiplicatorul dvs. va crește la 2.0 după o lună de a se ține la încredere, moment în care puteți fi recompensați cu mai mult G $ în fiecare zi!" @@ -3326,7 +3324,7 @@ msgstr "Succes!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Swap de la" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Swap la." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Acesta este protocolul pe care jetonul este împachetat la." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Acesta este jetonul care este în prezent pus în prezent." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Luna aceasta" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Jeton" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "JETON" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Suma totală pe valoarea stabilită." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Miza totală" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Termen limită de tranzacție" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Tranzacția a fost trimisă la blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Vizualizare pe explorator" @@ -3584,12 +3582,11 @@ msgstr "Așteptați confirmarea" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Balanța portofelului" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "A retras fonduri de la {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Creați UBI la mii de oameni din întreaga lume." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "În prezent, navigați" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Vei primi:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Cota dvs. din piscină" msgid "Your Pool Tokens" msgstr "Jetoanele de biliard" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Contribuția dvs. socială din:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 02ea3ff11..be6f245ed 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Счет" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "количество" @@ -2709,27 +2709,27 @@ msgstr "количество" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Утвердить" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "УТВЕРДИТЬ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Одобренный" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Утверждаю" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Одобрение" @@ -2737,7 +2737,7 @@ msgstr "Одобрение" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Вернуться к портфолио" msgid "Balance" msgstr "Остаток средств" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Заблокированный адрес" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Изменять" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Претензия G $ Награды" @@ -2788,7 +2788,7 @@ msgstr "Претензия G $ Награды" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Заявление" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Очистить все" @@ -2850,7 +2850,7 @@ msgstr "Очистить все" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Закрывать" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Подтвердите эту транзакцию в вашем кошельке" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Поздравляю!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Подключиться к кошельку" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Связаны с" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Копировать адрес" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "Депозит" @@ -2938,11 +2938,11 @@ msgstr "Депозит" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "ошибка загрузки" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Перейти к портфолио" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Держа" @@ -3048,7 +3048,7 @@ msgstr "Держа" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "Сколько хороших токенов вы накапливаете на эту позицию поставок." @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Сколько ценностей накоплено ваша доля." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Сколько вы хотели бы внести депозит?" @@ -3121,20 +3121,19 @@ msgstr "минут" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Мультипликатор" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Мою долю" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "сеть" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "В следующем месяце:" msgid "No data." msgstr "Нет данных." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "на" @@ -3167,11 +3165,11 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Открыть главное меню" @@ -3179,7 +3177,7 @@ msgstr "Открыть главное меню" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "В ожидании" @@ -3212,32 +3210,32 @@ msgstr "Влияние на цену" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Протокол" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Последние транзакции" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Вознаграждение" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Вознаграждение" @@ -3256,7 +3254,7 @@ msgstr "Маршрутизация через эти токены привела #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Имя поиска или вставьте адрес" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Допуск по проскальзыванию" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Ставка" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "Доли" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Поставил {0} в {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Упоминание" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "Упоминание может быть из двух типов: UBI для средств, поставленных на доверие GoodDollar для поколения новых G $ для универсального распределения доходов или управление (для включения) для ставки G $ S для хороших наград." -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Начиная с 1.0, ваш множитель увеличится до 2,0 после одного месяца по ухудшению доверия, в какой момент вы можете быть вознаграждены более G $ каждый день!" @@ -3326,7 +3324,7 @@ msgstr "Успех!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Менять" @@ -3334,15 +3332,15 @@ msgstr "Менять" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Откуда" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Охватить" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Это протокол о том, что токен поставлен." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Это токен, который в настоящее время поставлен." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Этот месяц" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Токен" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "Токен" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Общая сумма по стоимости поставлена." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Общая доля" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Крайний срок транзакции" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Посмотреть в проводнике" @@ -3584,12 +3582,11 @@ msgstr "Ожидание подтверждения" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Баланс кошелька" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "Вышли средства из {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Вы создаете UBI до тысяч людей по всему миру." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Вы просматриваете в настоящее время" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Вы получите:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Ваша доля в пуле" msgid "Your Pool Tokens" msgstr "Жетоны вашего пула" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Ваш социальный вклад от:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 807b73838..60c0ef6cd 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 27a241130..bd1713263 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 94ce7d578..831bd7c6c 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 9ceac2d20..5f2aa7bd0 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2709,27 +2709,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2737,7 +2737,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2788,7 +2788,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2850,7 +2850,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2938,11 +2938,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -3048,7 +3048,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -3121,20 +3121,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -3167,11 +3165,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -3212,32 +3210,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -3256,7 +3254,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -3326,7 +3324,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -3334,15 +3332,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3584,12 +3582,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 853461136..c7ea74e51 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "Tài khoản" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "số lượng" @@ -2709,27 +2709,27 @@ msgstr "số lượng" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "CHẤP THUẬN" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "Tán thành" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "Phê duyệt" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "Phê duyệt" @@ -2737,7 +2737,7 @@ msgstr "Phê duyệt" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "Quay lại danh mục đầu tư" msgid "Balance" msgstr "Thăng bằng" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "Địa chỉ bị chặn" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "Thay đổi" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "Yêu cầu G $ Phần thưởng" @@ -2788,7 +2788,7 @@ msgstr "Yêu cầu G $ Phần thưởng" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "Yêu cầu" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2850,7 +2850,7 @@ msgstr "Quet sạch tât cả" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "Gần" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "Xác nhận giao dịch này trong ví của bạn" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "Xin chúc mừng!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Kết nối với ví" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "Kết nối với" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "ĐẶT CỌC" @@ -2938,11 +2938,11 @@ msgstr "ĐẶT CỌC" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "không tải được" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "Đi đến danh mục đầu tư" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "Giữ" @@ -3048,7 +3048,7 @@ msgstr "Giữ" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "Bao nhiêu giá trị cổ phần của bạn đã tích lũy cho đến nay." -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "Bạn muốn gửi bao nhiêu tiền?" @@ -3121,20 +3121,19 @@ msgstr "phút" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "Số nhân" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "Cổ phần của tôi" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "mạng" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "Tháng tiếp theo:" msgid "No data." msgstr "Không có dữ liệu." -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "trên" @@ -3167,11 +3165,11 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Mở menu chính" @@ -3179,7 +3177,7 @@ msgstr "Mở menu chính" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "Đang chờ xử lý" @@ -3212,32 +3210,32 @@ msgstr "Tác động giá" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Giao thức" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "Giao dịch gần đây" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "Phần thưởng" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "Phần thưởng" @@ -3256,7 +3254,7 @@ msgstr "Định tuyến thông qua các mã thông báo này dẫn đến giá t #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "Tên tìm kiếm hoặc dán địa chỉ" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "Khả năng chịu trượt" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "Cổ phần" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "CỔ PHẦN" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0} tại {1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "Bắt đầu" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "Bắt đầu từ 1.0, hệ số nhân của bạn sẽ tăng lên 2.0 sau một tháng tập tin vào sự tin tưởng, tại thời điểm nào bạn có thể được thưởng nhiều G $ mỗi ngày!" @@ -3326,7 +3324,7 @@ msgstr "Sự thành công!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "Hoán đổi" @@ -3334,15 +3332,15 @@ msgstr "Hoán đổi" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "Trao đổi từ" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "Trao đổi đến." -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "Đây là giao thức mà mã thông báo được đặt cược." @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "Đây là mã thông báo hiện đang được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "Tháng này" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Mã thông báo" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "MÃ THÔNG BÁO" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "Tổng số tiền trên giá trị được đặt cược." -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "Tổng số cổ phần" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "Thời hạn giao dịch" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "Giao dịch đã được gửi đến Blockchain" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "Xem trên explorer" @@ -3584,12 +3582,11 @@ msgstr "Chờ đợi sự xác nhận" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "Ví thăng bằng" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "Đã rút tiền từ {0}" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "Bạn đang tạo UBI cho hàng ngàn người trên khắp thế giới." -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "Bạn đang đang duyệt" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "Bạn cần ký giao dịch trong ví của bạn" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "Chia sẻ nhóm của bạn" msgid "Your Pool Tokens" msgstr "Mã thông báo hồ bơi của bạn" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "Đóng góp xã hội của bạn từ:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 71620dd6f..d320525e3 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帐户" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "数量" @@ -2709,27 +2709,27 @@ msgstr "数量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "已批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "批准中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投资组合" msgid "Balance" msgstr "余额" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封锁的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "改变" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索赔g $奖励" @@ -2788,7 +2788,7 @@ msgstr "索赔g $奖励" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "关闭" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在钱包中确认此事务" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "祝贺!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "连接钱包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "与" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "复制地址" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "订金" @@ -2938,11 +2938,11 @@ msgstr "订金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "加载失败" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "去投资组合" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3048,7 +3048,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前为止,您的股权累计有多大价值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "你想存入多少钱?" @@ -3121,20 +3121,19 @@ msgstr "分钟" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘数" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "网络" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "下个月:" msgid "No data." msgstr "没有数据。" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在这一点" @@ -3167,11 +3165,11 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打开主菜单" @@ -3179,7 +3177,7 @@ msgstr "打开主菜单" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "处理中" @@ -3212,32 +3210,32 @@ msgstr "价格影响" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "协议" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "奖励" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "奖励" @@ -3256,7 +3254,7 @@ msgstr "路由经过这些代币将给您的交易带来最好的价格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名称或粘贴地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑点" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "质押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "赌注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "从1.0开始,您的乘数将增加到2.0,在一个月的绑定到信任后,您可以每天更多G $奖励!" @@ -3326,7 +3324,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "兑换" @@ -3334,15 +3332,15 @@ msgstr "兑换" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "换从" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "交换到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "这是令牌赌注的协议。" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "这是目前正在赌注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "这个月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代币" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "价值总额托出来。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "总股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在浏览器查看" @@ -3584,12 +3582,11 @@ msgstr "等待确认中" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "钱包平衡" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "退出{0}的资金" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在为世界各地的数千人创建UBI。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在浏览" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您将收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "您在流动性池的占比" msgid "Your Pool Tokens" msgstr "您池子里的代币" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社会贡献:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index c68bea360..57d6a6967 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -23,12 +23,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2665,13 +2665,13 @@ msgstr "" #~ msgid "• Added by user" #~ msgstr "• Added by user" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2697,11 +2697,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "帳戶" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "數量" @@ -2709,27 +2709,27 @@ msgstr "數量" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "批准" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "批准" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "已批準" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "批準中" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "批准" @@ -2737,7 +2737,7 @@ msgstr "批准" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2751,7 +2751,7 @@ msgstr "回到投資組合" msgid "Balance" msgstr "餘額" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "被封鎖的地址" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "改變" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "索賠g $獎勵" @@ -2788,7 +2788,7 @@ msgstr "索賠g $獎勵" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2803,7 +2803,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "4." @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "清除所有" @@ -2850,7 +2850,7 @@ msgstr "清除所有" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2862,7 +2862,7 @@ msgstr "關閉" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2879,24 +2879,24 @@ msgid "Confirm this transaction in your wallet" msgstr "在錢包中確認此事務" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "祝賀!" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "連接錢包" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "與" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "複製地址" @@ -2928,7 +2928,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "訂金" @@ -2938,11 +2938,11 @@ msgstr "訂金" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "failed to load" msgstr "加載失敗" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2987,7 +2987,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "去投資組合" @@ -3019,7 +3019,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -3040,7 +3040,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "保持" @@ -3048,7 +3048,7 @@ msgstr "保持" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -3060,11 +3060,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "到目前為止,您的股權累計有多大價值。" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "你想存入多少錢?" @@ -3121,20 +3121,19 @@ msgstr "分鐘" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "乘數" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "我的股份" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "網絡" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -3156,8 +3155,7 @@ msgstr "下個月:" msgid "No data." msgstr "沒有數據。" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "在這一點" @@ -3167,11 +3165,11 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打開主菜單" @@ -3179,7 +3177,7 @@ msgstr "打開主菜單" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "處理中" @@ -3212,32 +3210,32 @@ msgstr "價格影響" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "協議" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "最近的交易" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "獎勵" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "獎勵" @@ -3256,7 +3254,7 @@ msgstr "路由經過這些代幣將給您的交易帶來最好的價格。" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -3271,12 +3269,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "搜索名稱或粘貼地址" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "可容忍滑點" @@ -3296,23 +3294,23 @@ msgstr "" msgid "Stake" msgstr "質押" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "賭注" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "Staked {0}在{1}" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "st" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "從1.0開始,您的乘數將增加到2.0,在一個月的綁定到信任後,您可以每天更多G $獎勵!" @@ -3326,7 +3324,7 @@ msgstr "成功!" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "代幣兌換" @@ -3334,15 +3332,15 @@ msgstr "代幣兌換" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "換從" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "交換到" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -3373,7 +3371,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -3398,7 +3396,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -3440,7 +3438,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "這是令牌賭注的協議。" @@ -3453,11 +3451,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "這是目前正在賭注的令牌。" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -3474,20 +3472,20 @@ msgstr "這個月" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代幣" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "令牌" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "價值總額托出來。" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -3495,11 +3493,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -3507,7 +3505,7 @@ msgstr "" msgid "Total stake" msgstr "總股份" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -3515,7 +3513,7 @@ msgstr "" msgid "Transaction deadline" msgstr "交易期限" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3534,7 +3532,7 @@ msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3546,12 +3544,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "在瀏覽器查看" @@ -3584,12 +3582,11 @@ msgstr "等待確認中" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "錢包平衡" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3648,16 +3645,15 @@ msgstr "退出{0}的資金" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "您正在為世界各地的數千人創建UBI。" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "您目前正在瀏覽" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3665,7 +3661,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3683,23 +3679,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您將收到:" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3711,11 +3707,11 @@ msgstr "您在流動性池的佔比" msgid "Your Pool Tokens" msgstr "您池子裏的代幣" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "您的社會貢獻:" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3743,6 +3739,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index f0a3f999e..2364a4b5b 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -18,12 +18,12 @@ msgid "" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:397 +#: src/pages/gd/Portfolio/index.tsx:398 msgid "Stake Positions" msgstr "" #. js-lingui-explicit-id -#: src/pages/gd/Portfolio/index.tsx:444 +#: src/pages/gd/Portfolio/index.tsx:445 msgid "Savings" msgstr "" @@ -2136,13 +2136,13 @@ msgstr "" #~ msgid "New" #~ msgstr "New" -#: src/components/Savings/SavingsModal/index.tsx:280 -#: src/components/Savings/SavingsModal/index.tsx:282 +#: src/components/Savings/SavingsModal/index.tsx:281 #: src/components/Savings/SavingsModal/index.tsx:283 +#: src/components/Savings/SavingsModal/index.tsx:284 msgid "{0}" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:128 +#: src/components/Savings/SavingsModal/index.tsx:129 msgid "{amount} {0}" msgstr "" @@ -2168,11 +2168,11 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:253 +#: src/components/AccountDetails/index.tsx:263 msgid "Account" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:311 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:312 msgid "amount" msgstr "" @@ -2180,27 +2180,27 @@ msgstr "" msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:402 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:404 msgid "Approve" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:306 msgid "APPROVE" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:121 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:403 msgid "Approved" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:399 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:401 msgid "Approving" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:302 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:303 msgid "APPROVING" msgstr "" @@ -2208,7 +2208,7 @@ msgstr "" msgid "APY" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:224 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:225 msgid "Awesome!" msgstr "" @@ -2222,7 +2222,7 @@ msgstr "" msgid "Balance" msgstr "" -#: src/components/Blocklist/index.tsx:12 +#: src/components/Blocklist/index.tsx:15 msgid "Blocked address" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:276 +#: src/components/AccountDetails/index.tsx:286 msgid "Change" msgstr "" @@ -2251,7 +2251,7 @@ msgstr "" msgid "Claim All" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:378 +#: src/pages/gd/Portfolio/index.tsx:379 msgid "Claim G$ rewards" msgstr "" @@ -2259,7 +2259,7 @@ msgstr "" msgid "Claim GOOD" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:389 +#: src/pages/gd/Portfolio/index.tsx:390 msgid "Claim GOOD rewards" msgstr "" @@ -2274,7 +2274,7 @@ msgstr "" msgid "Claim Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "Claimable" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:315 +#: src/components/AccountDetails/index.tsx:325 msgid "Clear all" msgstr "" @@ -2321,7 +2321,7 @@ msgstr "" msgid "Click here to learn more about GoodDollar liquidity, including how to provide liquidity." msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:372 +#: src/pages/gd/Claim/OldClaim.tsx:369 msgid "Click on the Claim button below and you will be switched over the first available network to collect your G$'s." msgstr "" @@ -2333,7 +2333,7 @@ msgstr "" #~ msgid "Collect G$" #~ msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:385 +#: src/pages/gd/Claim/OldClaim.tsx:382 msgid "Collect G$ on {network}" msgstr "" @@ -2350,24 +2350,24 @@ msgid "Confirm this transaction in your wallet" msgstr "" #: src/components/WithdrawRewards/index.tsx:123 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:226 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:227 msgid "Congratulations!" msgstr "" #: src/pages/gd/MicroBridge/index.tsx:36 -#: src/pages/gd/Portfolio/index.tsx:458 +#: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:32 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:304 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" msgstr "" -#: src/components/AccountDetails/index.tsx:221 +#: src/components/AccountDetails/index.tsx:232 msgid "Connected with" msgstr "" @@ -2382,7 +2382,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:292 +#: src/components/AccountDetails/index.tsx:302 msgid "Copy address" msgstr "" @@ -2399,7 +2399,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/index.tsx:67 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:371 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:372 msgid "DEPOSIT" msgstr "" @@ -2409,11 +2409,11 @@ msgstr "" msgid "Deposit G$" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:222 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:223 msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:267 +#: src/components/AccountDetails/index.tsx:277 msgid "Disconnect" msgstr "" @@ -2429,7 +2429,7 @@ msgstr "" msgid "failed to load" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:119 +#: src/pages/gd/Stake/Savings/index.tsx:120 msgid "Fixed Apy" msgstr "" @@ -2458,7 +2458,7 @@ msgstr "" #~ msgid "GDX is a token earned by directly buying G$ from the Reserve. Members with GDX do not pay the contribution exit." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:411 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:412 msgid "Go to Portfolio" msgstr "" @@ -2490,7 +2490,7 @@ msgstr "" msgid "GoodDollar" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:395 +#: src/pages/gd/Claim/OldClaim.tsx:392 msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" @@ -2511,7 +2511,7 @@ msgstr "" msgid "Help & Documentation" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:333 +#: src/pages/gd/Portfolio/index.tsx:334 msgid "Holding" msgstr "" @@ -2519,7 +2519,7 @@ msgstr "" #~ msgid "How does it work?" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:236 +#: src/pages/gd/Portfolio/index.tsx:237 msgid "How many GOOD tokens you are accumulating by this stake position." msgstr "" @@ -2531,11 +2531,11 @@ msgstr "" msgid "How much tokens your deposits have accumulated so far." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:227 msgid "How much value your stake has accumulated so far." msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:233 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:234 msgid "How much would you like to deposit?" msgstr "" @@ -2592,20 +2592,19 @@ msgstr "" #~ msgid "Multichain Bridge" #~ msgstr "" -#: src/pages/gd/Portfolio/index.tsx:229 +#: src/pages/gd/Portfolio/index.tsx:230 msgid "MULTIPLIER" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:299 +#: src/pages/gd/Portfolio/index.tsx:300 msgid "My Stake" msgstr "" -#: src/components/NetworkModal/index.tsx:152 -#: src/components/NetworkModal/index.tsx:201 +#: src/components/NetworkModal/index.tsx:154 msgid "network" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:114 +#: src/pages/gd/Stake/Savings/index.tsx:115 msgid "Network" msgstr "" @@ -2627,8 +2626,7 @@ msgstr "" msgid "No data." msgstr "" -#: src/components/NetworkModal/index.tsx:151 -#: src/components/NetworkModal/index.tsx:200 +#: src/components/NetworkModal/index.tsx:153 msgid "on the" msgstr "" @@ -2638,11 +2636,11 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:61 +#: src/components/Web3ReactManager/index.tsx:84 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" -#: src/components/AppBar.tsx:340 +#: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -2650,7 +2648,7 @@ msgstr "" msgid "Output is estimated. You will receive at least {minimumReceived} or the transaction will revert" msgstr "" -#: src/components/Web3Status/index.tsx:56 +#: src/components/Web3Status/index.tsx:57 msgid "Pending" msgstr "" @@ -2683,32 +2681,32 @@ msgstr "" #: src/components/Withdraw/index.tsx:146 #: src/pages/gd/Stake/index.tsx:73 -#: src/pages/gd/Stake/Savings/index.tsx:109 +#: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:57 -#: src/pages/gd/Portfolio/index.tsx:217 +#: src/pages/gd/Portfolio/index.tsx:218 msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:313 +#: src/components/AccountDetails/index.tsx:323 msgid "Recent Transactions" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:343 +#: src/pages/gd/Portfolio/index.tsx:344 msgid "rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:305 -#: src/pages/gd/Portfolio/index.tsx:316 -#: src/pages/gd/Portfolio/index.tsx:347 -#: src/pages/gd/Portfolio/index.tsx:358 +#: src/pages/gd/Portfolio/index.tsx:306 +#: src/pages/gd/Portfolio/index.tsx:317 +#: src/pages/gd/Portfolio/index.tsx:348 +#: src/pages/gd/Portfolio/index.tsx:359 msgid "Rewards" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:225 -#: src/pages/gd/Portfolio/index.tsx:235 +#: src/pages/gd/Portfolio/index.tsx:226 +#: src/pages/gd/Portfolio/index.tsx:236 msgid "REWARDS" msgstr "" @@ -2727,7 +2725,7 @@ msgstr "" #~ msgstr "" #: src/components/Savings/SavingsCard/SavingsCardRow/index.tsx:36 -#: src/pages/gd/Stake/Savings/index.tsx:151 +#: src/pages/gd/Stake/Savings/index.tsx:152 msgid "Savings" msgstr "" @@ -2742,12 +2740,12 @@ msgstr "" msgid "Search name or paste the address" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:414 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:415 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:328 msgid "Share with friends" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:365 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:367 #: src/pages/gd/Swap/SwapSettings/index.tsx:80 msgid "Slippage Tolerance" msgstr "" @@ -2767,23 +2765,23 @@ msgstr "" msgid "Stake" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:221 +#: src/pages/gd/Portfolio/index.tsx:222 msgid "STAKE" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:361 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:362 msgid "Staked {0} at {1}" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:329 +#: src/pages/gd/Portfolio/index.tsx:330 msgid "Staking" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:209 +#: src/pages/gd/Portfolio/index.tsx:210 msgid "Staking could be of two types: UBI for funds staked on the GoodDollar trust for the generation of new G$ for universal income distribution, or Governance (to be enabled) for staking G$s for GOOD Rewards." msgstr "" -#: src/pages/gd/Portfolio/index.tsx:231 +#: src/pages/gd/Portfolio/index.tsx:232 msgid "Starting at 1.0, your multiplier will increase to 2.0 after one month of staking to the Trust, at which point you can be rewarded with more G$ every day!" msgstr "" @@ -2797,7 +2795,7 @@ msgstr "" msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:411 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:413 msgid "Swap" msgstr "" @@ -2805,15 +2803,15 @@ msgstr "" msgid "Swap Completed" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:338 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:340 msgid "Swap from" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:352 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:354 msgid "Swap to" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:115 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:117 msgid "Swap transaction failed, please try again." msgstr "" @@ -2844,7 +2842,7 @@ msgstr "" msgid "The change from the market price to the actual price you are paying." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:120 +#: src/pages/gd/Stake/Savings/index.tsx:121 msgid "The fixed annual interest." msgstr "" @@ -2869,7 +2867,7 @@ msgstr "" #~ "Price impact is low as G$ liquidity is produced on demand depending by the reserve ratio." #~ msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:254 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:256 msgid "" "The GoodReserve is an Automated Market Maker (AMM) that operates on Celo and XDC.\n" "This contract is able to mint and burn G$s according to the increase or decrease of it's demand.\n" @@ -2911,7 +2909,7 @@ msgid "This is the annual percentage of UBI your stake will create." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:58 -#: src/pages/gd/Portfolio/index.tsx:218 +#: src/pages/gd/Portfolio/index.tsx:219 msgid "This is the protocol that the token is staked to." msgstr "" @@ -2924,11 +2922,11 @@ msgid "This is the token that is currently available to stake to the Fund." msgstr "" #: src/components/Savings/SavingsCard/index.tsx:53 -#: src/pages/gd/Portfolio/index.tsx:214 +#: src/pages/gd/Portfolio/index.tsx:215 msgid "This is the token that is currently being staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:105 +#: src/pages/gd/Stake/Savings/index.tsx:106 msgid "This is the token that you can deposit into the savings contract." msgstr "" @@ -2945,20 +2943,20 @@ msgstr "" #: src/components/Withdraw/index.tsx:142 #: src/pages/gd/Stake/index.tsx:69 -#: src/pages/gd/Stake/Savings/index.tsx:104 +#: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:52 -#: src/pages/gd/Portfolio/index.tsx:213 +#: src/pages/gd/Portfolio/index.tsx:214 msgid "TOKEN" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:222 +#: src/pages/gd/Portfolio/index.tsx:223 msgid "Total amount on value staked." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:125 +#: src/pages/gd/Stake/Savings/index.tsx:126 msgid "Total currently saved." msgstr "" @@ -2966,11 +2964,11 @@ msgstr "" msgid "Total Rewards" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:130 +#: src/pages/gd/Stake/Savings/index.tsx:131 msgid "Total rewards claimed." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:129 +#: src/pages/gd/Stake/Savings/index.tsx:130 msgid "Total Rewards Paid" msgstr "" @@ -2978,7 +2976,7 @@ msgstr "" msgid "Total stake" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:124 +#: src/pages/gd/Stake/Savings/index.tsx:125 msgid "Total Staked" msgstr "" @@ -2986,7 +2984,7 @@ msgstr "" msgid "Transaction deadline" msgstr "" -#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:148 +#: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:150 msgid "Transaction failed, please try again" msgstr "" @@ -3005,7 +3003,7 @@ msgid "Transaction was sent to the blockchain" msgstr "" #: src/components/Savings/SavingsCard/index.tsx:47 -#: src/pages/gd/Portfolio/index.tsx:207 +#: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" msgstr "" @@ -3017,12 +3015,12 @@ msgstr "" msgid "Uniswap (widget)" msgstr "" -#: src/components/Web3Network/index.tsx:69 +#: src/components/Web3Network/index.tsx:73 msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:298 -#: src/components/Popups/TransactionPopup.tsx:46 +#: src/components/AccountDetails/index.tsx:308 +#: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" msgstr "" @@ -3055,12 +3053,11 @@ msgstr "" #~ msgid "Wallet" #~ msgstr "" -#: src/components/WalletBalance/index.tsx:136 +#: src/components/WalletBalance/index.tsx:137 msgid "Wallet balance" msgstr "" -#: src/components/NetworkModal/index.tsx:131 -#: src/components/NetworkModal/index.tsx:180 +#: src/components/NetworkModal/index.tsx:133 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3119,16 +3116,15 @@ msgstr "" msgid "Xswap (XDC)" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:389 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:390 msgid "You are creating UBI to thousands of people around the world." msgstr "" -#: src/components/NetworkModal/index.tsx:147 -#: src/components/NetworkModal/index.tsx:196 +#: src/components/NetworkModal/index.tsx:149 msgid "You are currently browsing" msgstr "" -#: src/pages/gd/Claim/OldClaim.tsx:361 +#: src/pages/gd/Claim/OldClaim.tsx:358 msgid "You can collect G$ on {supportedChainsDisplay} networks." msgstr "" @@ -3136,7 +3132,7 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:380 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" "this action is gonna reward you with GOOD governance tokens,\n" @@ -3154,23 +3150,23 @@ msgid "You just used your crypto for good to help fund crypto UBI for all with G msgstr "" #: src/components/WithdrawRewards/index.tsx:115 -#: src/pages/gd/Stake/StakeDeposit/index.tsx:421 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:422 msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:39 +#: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" -#: src/components/Savings/SavingsModal/index.tsx:294 +#: src/components/Savings/SavingsModal/index.tsx:295 msgid "Your {type} transaction has been confirmed!" msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:115 +#: src/pages/gd/Stake/Savings/index.tsx:116 msgid "Your current network." msgstr "" -#: src/pages/gd/Stake/Savings/index.tsx:110 +#: src/pages/gd/Stake/Savings/index.tsx:111 msgid "Your current savings balance." msgstr "" @@ -3182,11 +3178,11 @@ msgstr "" msgid "Your Pool Tokens" msgstr "" -#: src/pages/gd/Portfolio/index.tsx:324 +#: src/pages/gd/Portfolio/index.tsx:325 msgid "Your social contribution from:" msgstr "" -#: src/pages/gd/Stake/StakeDeposit/index.tsx:387 +#: src/pages/gd/Stake/StakeDeposit/index.tsx:388 msgid "" "Your staking transaction which will generate UBI for thousands of people around\n" "the world has just been broadcasted to the network." @@ -3214,6 +3210,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:322 +#: src/components/AccountDetails/index.tsx:332 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/pages/App.tsx b/src/pages/App.tsx index 3ecff7a7d..d6de23914 100644 --- a/src/pages/App.tsx +++ b/src/pages/App.tsx @@ -21,6 +21,7 @@ import WalletChat from '../components/WalletChat' import { useIsSimpleApp } from 'state/simpleapp/simpleapp' import MainPageContainer from 'components/Layout/MainPageContainer' import { useFeatureFlag } from 'posthog-react-native' +import { isMiniPay } from 'utils/minipay' export const Beta = styled.div` font-style: normal; @@ -97,7 +98,7 @@ function App(): JSX.Element { const [preservedSource, setPreservedSource] = useState('') const sendData = useSendAnalyticsData() - const isMinipay = window?.ethereum?.isMiniPay + const isMinipay = isMiniPay() const { open, url, onClose } = useRedirectNotice() const { isDesktopView } = useScreenSize() const walletChatEnabled = useFeatureFlag('wallet-chat') diff --git a/src/pages/gd/Claim/ClaimBalance.tsx b/src/pages/gd/Claim/ClaimBalance.tsx index d5e0d58aa..415767ee5 100644 --- a/src/pages/gd/Claim/ClaimBalance.tsx +++ b/src/pages/gd/Claim/ClaimBalance.tsx @@ -10,6 +10,7 @@ import { QueryParams } from '@usedapp/core' import { useIsSimpleApp } from 'state/simpleapp/simpleapp' import { Fraction } from '@uniswap/sdk-core' import { useAppKitNetwork } from '@reown/appkit/react' +import { isMiniPay } from 'utils/minipay' const NextClaim = ({ time }: { time: string }) => ( @@ -24,8 +25,7 @@ export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) = const G$Price = +new Fraction(rawPrice?.toString() || 0, 1e18).toSignificant(6) - const { ethereum } = window - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() const { tillClaim } = useClaiming() const showUsdPrice = true // (useFeatureFlag('show-gd-price') as boolean | undefined) diff --git a/src/pages/gd/Claim/OldClaim.tsx b/src/pages/gd/Claim/OldClaim.tsx index b0c7d10b0..ff5301046 100644 --- a/src/pages/gd/Claim/OldClaim.tsx +++ b/src/pages/gd/Claim/OldClaim.tsx @@ -28,6 +28,7 @@ import moment from 'moment' import { getEnv } from 'utils/env' import ClaimFooterCelebration from 'assets/images/claim/claim-footer-celebration.png' +import { isMiniPay } from 'utils/minipay' import { ClaimBalance } from './ClaimBalance' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' @@ -70,8 +71,7 @@ const OldClaim = memo(() => { const isSimpleApp = useIsSimpleApp() // const { Dialog, showModal } = useDisabledClaimingModal(disabledMessage) - const { ethereum } = window - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() const supportedChainsDisplay = useMemo(() => { const chainNames = { diff --git a/src/pages/gd/Claim/index.tsx b/src/pages/gd/Claim/index.tsx index 731aa0576..2e70c9a36 100644 --- a/src/pages/gd/Claim/index.tsx +++ b/src/pages/gd/Claim/index.tsx @@ -7,24 +7,24 @@ import usePromise from 'react-use-promise' import OldClaim from './OldClaim' import NewClaim from './Claim' import { isSupportedCountry } from '../GoodId' +import { isMiniPay } from 'utils/minipay' const Claim = () => { const { account, chainId } = useEthers() const [, payload] = useFeatureFlagWithPayload('goodid') const { enabled = false, whitelist, countries = '' } = payload ?? {} - const { ethereum } = window - const isMiniPay = ethereum?.isMiniPay + const isMiniPayWallet = isMiniPay() const [isGoodIdEnabled] = usePromise(async () => { - if (isMiniPay) return false + if (isMiniPayWallet) return false if (enabled || whitelist?.includes(account)) return true return isSupportedCountry(countries) - }, [enabled, whitelist, countries, account, isMiniPay]) + }, [enabled, whitelist, countries, account, isMiniPayWallet]) if (payload === undefined || isGoodIdEnabled === undefined) return - return isGoodIdEnabled && !isMiniPay && chainId !== 50 ? : + return isGoodIdEnabled && !isMiniPayWallet && chainId !== 50 ? : } export default Claim diff --git a/src/pages/gd/GoodId/index.tsx b/src/pages/gd/GoodId/index.tsx index 22b89b2df..1c9a67f41 100644 --- a/src/pages/gd/GoodId/index.tsx +++ b/src/pages/gd/GoodId/index.tsx @@ -11,6 +11,7 @@ import GoodIdDetails from './GoodIdDetails' import { Onboard } from './Onboard' import { PageLayout } from 'components/Layout/PageLayout' import { retry } from 'utils/retry' +import { isMiniPay } from 'utils/minipay' export const isSupportedCountry = async (supportedCountries = '') => { if (!supportedCountries) return false @@ -33,8 +34,7 @@ const GoodId = () => { const [skipSegmentation, setSkipSegmentation] = useState(false) const [, payload] = useFeatureFlagWithPayload('goodid') const { enabled = false, whitelist = undefined, countries = '' } = payload ?? {} - const { ethereum } = window - const isMiniPay = ethereum?.isMiniPay + const isMiniPayWallet = isMiniPay() const [isUpgraded] = usePromise(async () => { if (isEmpty(certificateSubjects) && isWhitelisted !== undefined) { @@ -46,11 +46,11 @@ const GoodId = () => { }, [certificateSubjects, isWhitelisted]) const [isGoodIdEnabled] = usePromise(async () => { - if (isMiniPay) return false + if (isMiniPayWallet) return false if (enabled || whitelist?.includes(account)) return true return isSupportedCountry(countries) - }, [enabled, whitelist, countries, account, isMiniPay]) + }, [enabled, whitelist, countries, account, isMiniPayWallet]) const onExit = useCallback(() => { setSkipSegmentation(isUpgraded === true) diff --git a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx index 76c0c95d8..3e4907bd4 100644 --- a/src/pages/gd/Swap/SwapCelo/UniSwap.tsx +++ b/src/pages/gd/Swap/SwapCelo/UniSwap.tsx @@ -23,6 +23,7 @@ import { getSafeChainId } from 'utils/chain' import { useApplicationTheme } from 'state/application/hooks' import useSendAnalytics from 'hooks/useSendAnalyticsData' import { tokens } from './celo-tokenlist.json' +import { isMiniPay } from 'utils/minipay' const jsonRpcUrlMap = { 122: ['https://rpc.fuse.io', 'https://fuse-pokt.nodies.app', 'https://fuse.liquify.com'], @@ -172,9 +173,7 @@ export const UniSwap = (): JSX.Element => { [network] ) - const { ethereum } = window - - const isMinipay = ethereum?.isMiniPay + const isMinipay = isMiniPay() return (
diff --git a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx index 7626be80b..83db294ef 100644 --- a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx +++ b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx @@ -42,8 +42,9 @@ const MentoSwap = memo(() => { }) // console.log('slippageTollerance -->', {slippageTolerance}) const { address } = useAppKitAccount() - const { chainId } = useAppKitNetwork() - const network = SupportedChainId[+(chainId ?? 1)] + const { chainId: rawChainId } = useAppKitNetwork() + const chainId = typeof rawChainId === 'number' ? rawChainId : Number(rawChainId) || 42220 + const network = SupportedChainId[chainId] const [inputAmount, setInputAmount] = useState('') const [outputAmount, setOutputAmount] = useState('') @@ -434,7 +435,7 @@ const MentoSwap = memo(() => { priceImpact: priceImpact ? new Percent((priceImpact * 100).toFixed(), 100) : new Percent(0, 1), inputAmount: CurrencyAmount.fromRawAmount( new Token( - chainId ?? 42220, + chainId, swapPair.input.address, swapPair.input.decimals, swapPair.input.symbol, @@ -444,7 +445,7 @@ const MentoSwap = memo(() => { ), outputAmount: CurrencyAmount.fromRawAmount( new Token( - chainId ?? 42220, + chainId, swapPair.output.address, swapPair.output.decimals, swapPair.output.symbol, @@ -454,7 +455,7 @@ const MentoSwap = memo(() => { ), minimumOutputAmount: CurrencyAmount.fromRawAmount( new Token( - chainId ?? 42220, + chainId, swapPair.output.address, swapPair.output.decimals, swapPair.output.symbol, diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index ef1b61874..fa9204edd 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -1,98 +1,230 @@ import { createConnector } from 'wagmi' import { isMiniPay } from '../utils/minipay' -/** - * Custom MiniPay connector for Wagmi - * Explicitly detects and connects to MiniPay wallet - * Based on MiniPay documentation: https://docs.minipay.xyz - */ -export function miniPayConnector() { - return createConnector((config) => ({ - id: 'minipay', - name: 'MiniPay', - type: 'injected', - async connect() { - const provider = this.getProvider() - if (!provider) { - throw new Error('MiniPay provider not found') - } +interface MiniPayProvider extends EIP1193Provider { + isMiniPay: boolean + disconnect?: () => Promise + on?(event: 'accountsChanged', handler: (accounts: string[]) => void): void + on?(event: 'chainChanged', handler: (chainId: string) => void): void + on?(event: 'disconnect', handler: () => void): void + removeListener?(event: 'accountsChanged', handler: (accounts: string[]) => void): void + removeListener?(event: 'chainChanged', handler: (chainId: string) => void): void + removeListener?(event: 'disconnect', handler: () => void): void +} - // Request account access - const accounts = await (provider as any).request({ - method: 'eth_requestAccounts', - }) +interface EIP1193Provider { + request(args: { method: string; params?: unknown[] }): Promise +} - const account = accounts[0] - if (!account) { - throw new Error('No account found') - } +function getMiniPayProvider(): MiniPayProvider | undefined { + if (typeof window === 'undefined') return undefined + if (!isMiniPay()) return undefined + if (!window.ethereum) return undefined + return window.ethereum as MiniPayProvider +} - // Get chain ID - const chainId = await (provider as any).request({ method: 'eth_chainId' }) +function handleProviderError(error: unknown): never { + if (error && typeof error === 'object' && 'code' in error) { + const errorCode = error.code + if (errorCode === 4001) { + throw new Error('User rejected the request') + } + if (errorCode === 4902) { + throw new Error('Chain not added to wallet') + } + } + throw error instanceof Error ? error : new Error('Unknown error occurred') +} - return { - accounts: [account as `0x${string}`], - chainId: Number(chainId), - } - }, - async disconnect() { - const provider = this.getProvider() - if (provider && typeof provider.disconnect === 'function') { - await provider.disconnect() - } - }, - async getAccounts() { - const provider = this.getProvider() - if (!provider) return [] - const accounts = await (provider as any).request({ method: 'eth_accounts' }) - return accounts.map((account: string) => account as `0x${string}`) - }, - async getChainId() { - const provider = this.getProvider() - if (!provider) return config.chains[0].id - const chainId = await (provider as any).request({ method: 'eth_chainId' }) - return Number(chainId) - }, - async isAuthorized() { - const provider = this.getProvider() - if (!provider) return false - const accounts = await (provider as any).request({ method: 'eth_accounts' }) - return accounts.length > 0 - }, - onAccountsChanged(accounts) { +function parseChainId(chainId: string | number): number { + if (typeof chainId === 'number') return chainId + if (typeof chainId === 'string') { + return Number.parseInt(chainId, chainId.startsWith('0x') ? 16 : 10) + } + throw new Error('Invalid chain ID format') +} + +export function miniPayConnector() { + return createConnector((config) => { + let provider: MiniPayProvider | undefined + let cleanup: (() => void) | undefined + + const accountsChangedHandler = (accounts: string[]) => { if (accounts.length === 0) { config.emitter.emit('disconnect') } else { - config.emitter.emit('change', { accounts: accounts.map((account: string) => account as `0x${string}`) }) + config.emitter.emit('change', { + accounts: accounts.map((account) => account as `0x${string}`), + }) } - }, - onChainChanged(chainId) { - const id = Number(chainId) + } + + const chainChangedHandler = (chainId: string | number) => { + const id = parseChainId(chainId) config.emitter.emit('change', { chainId: id }) - }, - onDisconnect() { + } + + const disconnectHandler = () => { config.emitter.emit('disconnect') - }, - async switchChain({ chainId }) { - const provider = this.getProvider() - if (!provider) { - throw new Error('MiniPay provider not found') - } + } - const id = `0x${chainId.toString(16)}` - await (provider as any).request({ - method: 'wallet_switchEthereumChain', - params: [{ chainId: id }], - }) - - return config.chains.find((chain) => chain.id === chainId) || config.chains[0] - }, - getProvider() { - // Only return provider if MiniPay is detected - if (typeof window !== 'undefined' && isMiniPay() && (window as any).ethereum) { - return (window as any).ethereum + const setupEventListeners = (targetProvider: MiniPayProvider) => { + cleanup = () => { + targetProvider.removeListener?.('accountsChanged', accountsChangedHandler) + targetProvider.removeListener?.('chainChanged', chainChangedHandler) + targetProvider.removeListener?.('disconnect', disconnectHandler) } - return undefined - }, - })) + + targetProvider.on?.('accountsChanged', accountsChangedHandler) + targetProvider.on?.('chainChanged', chainChangedHandler) + targetProvider.on?.('disconnect', disconnectHandler) + } + + return { + id: 'minipay', + name: 'MiniPay', + type: 'injected', + async connect() { + provider = getMiniPayProvider() + if (!provider) { + throw new Error('MiniPay provider not found') + } + + try { + const accounts = (await provider.request({ + method: 'eth_requestAccounts', + })) as string[] + + const account = accounts[0] + if (!account) { + throw new Error('No account found') + } + + const chainId = (await provider.request({ + method: 'eth_chainId', + })) as string + + setupEventListeners(provider) + + return { + accounts: [account as `0x${string}`], + chainId: parseChainId(chainId), + } + } catch (error) { + handleProviderError(error) + } + }, + async disconnect() { + cleanup?.() + cleanup = undefined + + if (provider && typeof provider.disconnect === 'function') { + try { + await provider.disconnect() + } catch (error) { + console.warn('Error disconnecting MiniPay:', error) + } + } + + provider = undefined + }, + async getAccounts() { + provider = getMiniPayProvider() + if (!provider) return [] + + try { + const accounts = (await provider.request({ + method: 'eth_accounts', + })) as string[] + return accounts.map((account) => account as `0x${string}`) + } catch { + return [] + } + }, + async getChainId() { + provider = getMiniPayProvider() + if (!provider) { + throw new Error('MiniPay provider not available') + } + + try { + const chainId = (await provider.request({ + method: 'eth_chainId', + })) as string + return parseChainId(chainId) + } catch { + throw new Error('Failed to get chain ID from MiniPay provider') + } + }, + async isAuthorized() { + provider = getMiniPayProvider() + if (!provider) return false + + try { + const accounts = (await provider.request({ + method: 'eth_accounts', + })) as string[] + return accounts.length > 0 + } catch { + return false + } + }, + onAccountsChanged(accounts) { + accountsChangedHandler(accounts) + }, + onChainChanged(chainId) { + chainChangedHandler(chainId) + }, + onDisconnect() { + disconnectHandler() + }, + async switchChain({ chainId }) { + provider = getMiniPayProvider() + if (!provider) { + throw new Error('MiniPay provider not found') + } + + const targetChain = config.chains.find((chain) => chain.id === chainId) + if (!targetChain) { + throw new Error(`Chain ${chainId} not configured`) + } + + const hexChainId = `0x${chainId.toString(16)}` + + try { + await provider.request({ + method: 'wallet_switchEthereumChain', + params: [{ chainId: hexChainId }], + }) + return targetChain + } catch (error) { + if (error && typeof error === 'object' && 'code' in error && error.code === 4902) { + try { + await provider.request({ + method: 'wallet_addEthereumChain', + params: [ + { + chainId: hexChainId, + chainName: targetChain.name, + nativeCurrency: targetChain.nativeCurrency, + rpcUrls: targetChain.rpcUrls.default.http, + blockExplorerUrls: targetChain.blockExplorers?.default + ? [targetChain.blockExplorers.default.url] + : undefined, + }, + ], + }) + return targetChain + } catch (addError) { + handleProviderError(addError) + } + } + handleProviderError(error) + } + }, + async getProvider() { + return Promise.resolve(getMiniPayProvider()) + }, + } + }) } diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 37dcfee29..b036c4380 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -10,31 +10,25 @@ import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' import { injected, coinbaseWallet } from 'wagmi/connectors' import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' import { miniPayConnector } from './minipayConnector' -import { isMiniPay } from 'utils/minipay' import { SupportedChains } from '@gooddollar/web3sdk-v2' import { getEnv } from 'utils/env' import { sample } from 'lodash' -// 0. Setup queryClient const queryClient = new QueryClient() -// 1. Get projectId from https://cloud.reown.com const projectId = process.env.REOWN_PROJECT_ID if (!projectId) { throw new Error('REOWN_PROJECT_ID environment variable is required') } -// 2. Create a metadata object - optional const metadata = { name: 'GoodProtocolUI', description: 'Good Protocol UI', - url: '', // origin must match your domain & subdomain - icons: [''], + url: typeof window !== 'undefined' ? window.location.origin : '', + icons: + typeof window !== 'undefined' ? [`${window.location.origin}/favicon.ico`] : [], } -// 3. Calculate allowed networks based on feature flags and environment (same logic as NetworkModal) -// Using localFeatureConfig directly since we're at module level (matches useFeaturesEnabled.tsx) -// For now, set networkEnabled to true for all networks (feature flag complexity to be handled in separate PR) const localFeatureConfig = { networks: { [SupportedChains.CELO]: { networkEnabled: true }, @@ -79,7 +73,6 @@ const getAllowedNetworks = (): SupportedChains[] => { } } -// 4. Map SupportedChains to Reown AppKit networks const createXdcNetwork = (): AppKitNetwork => { const xdcRpc = sample(process.env.REACT_APP_XDC_RPC?.split(',')) ?? 'https://rpc.xdc.network' return defineChain({ @@ -119,33 +112,24 @@ const mapSupportedChainToReownNetwork = (chain: SupportedChains): AppKitNetwork } } -// 5. Get allowed networks and map to Reown networks -// Force CELO to be first in the list (default network) const allowedChains = [SupportedChains.CELO, ...getAllowedNetworks().filter((chain) => chain !== SupportedChains.CELO)] -// Ensure at least one network is available (Reown requires non-empty array) if (allowedChains.length === 0) { throw new Error('No networks enabled. At least one network must be enabled.') } const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] -// 6. Create custom connectors - removed walletConnect as AppKit handles it natively -// Conditionally include MiniPay connector only when MiniPay is detected to avoid "connector not found" errors const baseConnectors = [ - injected(), // For MetaMask and other injected wallets (EIP-1193 compatible) + injected(), coinbaseWallet({ appName: 'GoodProtocolUI', appLogoUrl: '', }), ] -// Only include MiniPay connector if MiniPay is actually detected -// This prevents AppKit from trying to use a connector that doesn't have a provider -const connectors = - typeof window !== 'undefined' && isMiniPay() ? [miniPayConnector(), ...baseConnectors] : baseConnectors +const connectors = [miniPayConnector(), ...baseConnectors] -// 7. Create Wagmi Adapter with connectors const wagmiAdapter = new WagmiAdapter({ networks, projectId, @@ -159,8 +143,8 @@ createAppKit({ projectId, metadata, features: { - analytics: true, // Optional - defaults to your Cloud configuration - socials: APPKIT_SOCIAL_PROVIDER_IDS as any, // Type assertion needed for social providers + analytics: true, + socials: APPKIT_SOCIAL_PROVIDER_IDS as any, }, featuredWalletIds: [...APPKIT_FEATURED_WALLET_IDS], }) diff --git a/src/utils/walletConfig.ts b/src/utils/walletConfig.ts index b057f63c5..2c9a7e4bd 100644 --- a/src/utils/walletConfig.ts +++ b/src/utils/walletConfig.ts @@ -40,17 +40,8 @@ export const WALLET_CONFIG = { }, }, - // Wallet prioritization as per requirements - WALLET_PRIORITY: { - walletConnect: ['GoodWallet', 'Valora'], - social: ['Google'], - injected: ['MetaMask', 'MiniPay'], - }, - - // Connection timeout settings - CONNECTION_TIMEOUT: 30000, // 30 seconds + CONNECTION_TIMEOUT: 30000, - // Error messages ERROR_MESSAGES: { UNSUPPORTED_CHAIN: 'Unsupported network. Please switch to Celo, Fuse, or Ethereum.', CONNECTION_FAILED: 'Failed to connect wallet. Please try again.', From 795a7ce7927b4e3e99ee12f88b488a57f6c06b44 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Thu, 11 Dec 2025 15:14:52 +0100 Subject: [PATCH 25/36] fix: MiniPay connector visibility and disconnect behavior --- src/components/AccountDetails/index.tsx | 3 +-- src/hooks/useReserveToken.ts | 5 +++-- src/language/locales/af/catalog.po | 16 ++++++++-------- src/language/locales/ar/catalog.po | 16 ++++++++-------- src/language/locales/ca/catalog.po | 16 ++++++++-------- src/language/locales/cs/catalog.po | 16 ++++++++-------- src/language/locales/da/catalog.po | 16 ++++++++-------- src/language/locales/de/catalog.po | 16 ++++++++-------- src/language/locales/el/catalog.po | 16 ++++++++-------- src/language/locales/en/catalog.po | 16 ++++++++-------- src/language/locales/es-419/catalog.po | 16 ++++++++-------- src/language/locales/es/catalog.po | 16 ++++++++-------- src/language/locales/fi/catalog.po | 16 ++++++++-------- src/language/locales/fr/catalog.po | 16 ++++++++-------- src/language/locales/he/catalog.po | 16 ++++++++-------- src/language/locales/hi/catalog.po | 16 ++++++++-------- src/language/locales/hu/catalog.po | 16 ++++++++-------- src/language/locales/it/catalog.po | 16 ++++++++-------- src/language/locales/ja/catalog.po | 16 ++++++++-------- src/language/locales/ko/catalog.po | 16 ++++++++-------- src/language/locales/nl/catalog.po | 16 ++++++++-------- src/language/locales/no/catalog.po | 16 ++++++++-------- src/language/locales/pl/catalog.po | 16 ++++++++-------- src/language/locales/pt-BR/catalog.po | 16 ++++++++-------- src/language/locales/pt/catalog.po | 16 ++++++++-------- src/language/locales/ro/catalog.po | 16 ++++++++-------- src/language/locales/ru/catalog.po | 16 ++++++++-------- src/language/locales/sr/catalog.po | 16 ++++++++-------- src/language/locales/sv/catalog.po | 16 ++++++++-------- src/language/locales/tr/catalog.po | 16 ++++++++-------- src/language/locales/uk/catalog.po | 16 ++++++++-------- src/language/locales/vi/catalog.po | 16 ++++++++-------- src/language/locales/zh-CN/catalog.po | 16 ++++++++-------- src/language/locales/zh-TW/catalog.po | 16 ++++++++-------- src/language/locales/zh/catalog.po | 16 ++++++++-------- src/reown/minipayConnector.ts | 11 +++++++++++ src/reown/reownprovider.tsx | 10 +++++++++- 37 files changed, 288 insertions(+), 269 deletions(-) diff --git a/src/components/AccountDetails/index.tsx b/src/components/AccountDetails/index.tsx index 799ae17dd..629dadb36 100644 --- a/src/components/AccountDetails/index.tsx +++ b/src/components/AccountDetails/index.tsx @@ -241,8 +241,7 @@ export default function AccountDetails({ toggleWalletModal() sendData({ event: 'account', action: 'address_disconnect_success', network: network }) disconnect() - void open({ view: 'Connect' }) - }, [toggleWalletModal, disconnect, open, network, sendData]) + }, [toggleWalletModal, disconnect, network, sendData]) const clearAllTransactionsCallback = useCallback(() => { if (chainId) dispatch(clearAllTransactions({ chainId: getSafeChainId(chainId) })) diff --git a/src/hooks/useReserveToken.ts b/src/hooks/useReserveToken.ts index 5629de360..c9a3d8392 100644 --- a/src/hooks/useReserveToken.ts +++ b/src/hooks/useReserveToken.ts @@ -11,8 +11,9 @@ export const useReserveToken = () => { 122: '0x28ea52f3ee46CaC5a72f72e8B3A387C0291d586d', 50: '0x5eE1b0F7FbAd2D10E00a0E0773D45840f73C5A1C', } - const address = cusdAddresses[chainId || 42220] || ethers.constants.AddressZero - return new Token(chainId || 42220, address, 18, 'cUSD', 'Celo Dollar') + const numericChainId = typeof chainId === 'number' ? chainId : typeof chainId === 'string' ? Number.parseInt(chainId, 10) : 42220 + const address = cusdAddresses[numericChainId] || ethers.constants.AddressZero + return new Token(numericChainId, address, 18, 'cUSD', 'Celo Dollar') }, [chainId]) return result } diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 844e221e9..15ea19afb 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Rekening" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Verander" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Duidelik alle" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Kopieer adres" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Deposito oorsig" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Protokol" msgid "PROTOCOL" msgstr "PROTOKOL" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "Onlangse transak" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Jou transaksie sal terugkeer as die prys ongunstig verander met meer as #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Jou transaksie sal terugkeer indien daar 'n groot, ongunstige prysbeweging is voordat dit bevestig word." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Jou transaksies sal hier verskyn..." diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 7afe2aa18..76ecb500a 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "الحساب" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "تغيير" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "امسح الكل" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "عنوان النسخ" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "نظرة على الإيداع" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "بروتوكول" msgid "PROTOCOL" msgstr "بروتوكول" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "المعاملات الأخيرة" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "ستعود معاملتك إذا تغير السعر بشكل غير إ #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "ستعود معاملتك إذا كانت هناك حركة سعر كبيرة وغير مواتية قبل تأكيدها." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "ستظهر معاملاتك هنا..." diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index c271430c9..27560bbf4 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 3af3317f6..0ec02d17c 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index ae86a317c..c07582fc4 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 70277c325..47c73eacc 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Konto" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Ändern" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Alles löschen" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Adresse kopieren." @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Übersicht einleiten." -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Protokoll" msgid "PROTOCOL" msgstr "PROTOKOLL" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "kürzliche Transaktionen" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Ihre Transaktion wird zurückgesetzt, wenn sich der Preis um mehr als di #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ihre Transaktion wird zurückgesetzt, wenn eine große, ungünstige Preisbewegung vorliegt, bevor sie bestätigt wird." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Ihre Transaktionen werden hier angezeigt ..." diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 4c37d51e7..d24cb648d 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 863f0d9f1..5481df0c2 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index a7c2952fb..82f882a60 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -59,7 +59,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -130,7 +130,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -200,7 +200,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -296,7 +296,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -551,7 +551,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -868,7 +868,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -1031,6 +1031,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 2c20bf222..afe209233 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Cuenta" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Cambio" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Limpiar todo" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Dirección de copia" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Descripción de depósito" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Protocolo" msgid "PROTOCOL" msgstr "PROTOCOLO" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "Transacciones Recientes" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Su transacción se revertirá si el precio cambia desfavorablemente en m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Su transacción se revertirá si hay un movimiento de precios grande y desfavorable antes de que se confirme." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Sus transacciones aparecerán aquí ..." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index a84288418..d4d6c9abc 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 70c133418..9c860ffae 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Votre transaction sera annulée si la variation de prix défavorable exc #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Votre transaction sera annulée en cas de mouvement de prix important et défavorable avant qu'elle ne soit confirmée." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 54a4606a6..8c0eeb084 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "חֶשְׁבּוֹן" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "שינוי" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "נקה את כל" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "העתקת העתקה" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "סקירה פיקדון" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "נוהל" msgid "PROTOCOL" msgstr "נוהל" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "תנועות אחרונות" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "העסקה שלך תחזור אם המחיר משתנה בצורה של #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "העסקה שלך תחזור אם יש תנועה גדולה, מחיר שלילי לפני שהיא תאושר." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "העסקאות שלך יופיעו כאן ..." diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index efce9907f..d3f6a0685 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1452,7 +1452,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -1523,7 +1523,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -1593,7 +1593,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -1666,7 +1666,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -1697,7 +1697,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -1974,7 +1974,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -2303,7 +2303,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -2494,6 +2494,6 @@ msgstr "यदि इस प्रतिशत से अधिक मूल् #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "पुष्टि होने से पहले एक बड़ा, प्रतिकूल मूल्य आंदोलन होने पर आपका लेनदेन वापस हो जाएगा।" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 0dbdfb5de..10b9589b9 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 7d5f6df15..62eeb9ec1 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Modificare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Cancella tutto" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "copiato" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Copia indirizzo" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Panoramica del deposito" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Protocollo" msgid "PROTOCOL" msgstr "PROTOCOLLO" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "Le transazioni recenti" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "La tua transazione verrà annullata se il prezzo cambia sfavorevolmente #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "La tua transazione verrà annullata in caso di un forte movimento del prezzo sfavorevole prima della conferma." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Le tue transazioni appariranno qui ..." diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index b26296f1a..3e120c7aa 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "価格がこのパーセンテージを超えて不利に変化した場 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "確認される前に大きな不利な価格変動があった場合、取引は元に戻ります。" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 8e3facc67..28f453687 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "가격이 해당 퍼센티지 이상으로 불리하게 변경되면 거 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "거래가 확인되기 전에 크게 불리한 가격 변동이 있는 경우 거래가 취소됩니다." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 7a79e67cf..28bb36729 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index bda4708b9..df6505f0f 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 1610bbf98..26e5fd0c1 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 8ed7cb4bb..3f1069f25 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Sua transação será revertida se o preço mudar desfavoravelmente em m #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Sua transação será revertida se houver um movimento de preço grande e desfavorável antes de ser confirmado." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 6726ea87f..bad000139 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 712d42145..93b138def 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Cont" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Schimbare" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Curata tot" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Adresa de copiere" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Depozit Privire de ansamblu" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "tranzactii recente" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Tranzacția dvs. va reveni dacă prețul se modifică nefavorabil cu mai #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Tranzacția dvs. se va reveni dacă există o mișcare de preț mare și nefavorabilă înainte de a fi confirmată." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Tranzacțiile dvs. vor apărea aici ..." diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index be6f245ed..1632b9d8f 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Счет" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Изменять" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Очистить все" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Скопировано" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Копировать адрес" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Обзор депозита" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Протокол" msgid "PROTOCOL" msgstr "Протокол" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "Последние транзакции" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Ваша транзакция будет отменена, если це #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Ваша транзакция будет отменена, если произойдет значительное неблагоприятное изменение цены до ее подтверждения." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Ваши транзакции появятся здесь ..." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 60c0ef6cd..2bb731542 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index bd1713263..4b479c989 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 831bd7c6c..dd13d8526 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 5f2aa7bd0..5e37520d2 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index c7ea74e51..e4f80f09e 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "Tài khoản" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "Thay đổi" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "Quet sạch tât cả" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "Đã sao chép" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "Sao chép địa chỉ" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "Tổng quan về tiền gửi." -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "Giao thức" msgid "PROTOCOL" msgstr "Giao thức" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "Giao dịch gần đây" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu giá thay đổi bất #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "Giao dịch của bạn sẽ hoàn nguyên nếu có một biến động giá lớn, bất lợi trước khi nó được xác nhận." -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "Giao dịch của bạn sẽ xuất hiện ở đây ..." diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index d320525e3..603c18041 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "帐户" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "改变" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "清除所有" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已复制" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "复制地址" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "协议" msgid "PROTOCOL" msgstr "协议" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "最近的交易" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "如果价格的不利变化超过这个百分比,您的交易将被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在确认之前出现大的不利价格变动,则交易将恢复。" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "您的交易将出现在这里......" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 57d6a6967..f192c4613 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2697,7 +2697,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "帳戶" @@ -2768,7 +2768,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "改變" @@ -2838,7 +2838,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "清除所有" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Copied" msgstr "已復制" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "複製地址" @@ -2942,7 +2942,7 @@ msgstr "" msgid "Deposit overview" msgstr "存款概述" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -3219,7 +3219,7 @@ msgstr "協議" msgid "PROTOCOL" msgstr "協議" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "最近的交易" @@ -3548,7 +3548,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3739,6 +3739,6 @@ msgstr "如果價格的不利變化超過這個百分比,您的交易將被退 #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "如果交易在確認之前出現大的不利價格變動,則交易將恢復。" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "您的交易將出現在這裡......" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 2364a4b5b..8dc51e7c1 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2168,7 +2168,7 @@ msgstr "" msgid "A contribution to the reserve paid by members for directly selling G$ tokens." msgstr "" -#: src/components/AccountDetails/index.tsx:263 +#: src/components/AccountDetails/index.tsx:262 msgid "Account" msgstr "" @@ -2239,7 +2239,7 @@ msgid "" "Take note of indicators in the widget below for exit contribtution, price slippage and liquidity." msgstr "" -#: src/components/AccountDetails/index.tsx:286 +#: src/components/AccountDetails/index.tsx:285 msgid "Change" msgstr "" @@ -2309,7 +2309,7 @@ msgstr "" msgid "Claiming your rewards will reset your multiplier." msgstr "" -#: src/components/AccountDetails/index.tsx:325 +#: src/components/AccountDetails/index.tsx:324 msgid "Clear all" msgstr "" @@ -2382,7 +2382,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/AccountDetails/index.tsx:302 +#: src/components/AccountDetails/index.tsx:301 msgid "Copy address" msgstr "" @@ -2413,7 +2413,7 @@ msgstr "" msgid "Deposit overview" msgstr "" -#: src/components/AccountDetails/index.tsx:277 +#: src/components/AccountDetails/index.tsx:276 msgid "Disconnect" msgstr "" @@ -2690,7 +2690,7 @@ msgstr "" msgid "PROTOCOL" msgstr "" -#: src/components/AccountDetails/index.tsx:323 +#: src/components/AccountDetails/index.tsx:322 msgid "Recent Transactions" msgstr "" @@ -3019,7 +3019,7 @@ msgstr "" msgid "Unsupported network" msgstr "" -#: src/components/AccountDetails/index.tsx:308 +#: src/components/AccountDetails/index.tsx:307 #: src/components/Popups/TransactionPopup.tsx:48 #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:308 msgid "View on explorer" @@ -3210,6 +3210,6 @@ msgstr "" #~ msgid "Your transaction will revert if there is a large, unfavorable price movement before it is confirmed." #~ msgstr "" -#: src/components/AccountDetails/index.tsx:332 +#: src/components/AccountDetails/index.tsx:331 msgid "Your transactions will appear here..." msgstr "" diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index fa9204edd..f08a1b55a 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -85,11 +85,19 @@ export function miniPayConnector() { name: 'MiniPay', type: 'injected', async connect() { + if (typeof window === 'undefined' || !isMiniPay() || !window.ethereum) { + throw new Error('MiniPay is not available in this browser') + } + provider = getMiniPayProvider() if (!provider) { throw new Error('MiniPay provider not found') } + if (!provider.isMiniPay) { + throw new Error('MiniPay provider not detected') + } + try { const accounts = (await provider.request({ method: 'eth_requestAccounts', @@ -178,6 +186,9 @@ export function miniPayConnector() { onDisconnect() { disconnectHandler() }, + onConnect(connectInfo: { chainId: string | number }) { + // Handler for provider connect events + }, async switchChain({ chainId }) { provider = getMiniPayProvider() if (!provider) { diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index b036c4380..d2340db34 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -128,7 +128,15 @@ const baseConnectors = [ }), ] -const connectors = [miniPayConnector(), ...baseConnectors] +const getConnectors = () => { + const connectors = [...baseConnectors] + if (typeof window !== 'undefined' && window.ethereum?.isMiniPay) { + connectors.unshift(miniPayConnector()) + } + return connectors +} + +const connectors = getConnectors() const wagmiAdapter = new WagmiAdapter({ networks, From 382ee7d4ba8c3854f1573e53f1e71660bcfc8e7b Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Thu, 11 Dec 2025 18:07:05 +0100 Subject: [PATCH 26/36] fix: MiniPay connector type compatibility and auto-connect --- src/components/BlockNativeOnboard/index.tsx | 19 +++++++++++++++++++ src/language/locales/af/catalog.po | 2 +- src/language/locales/ar/catalog.po | 2 +- src/language/locales/ca/catalog.po | 2 +- src/language/locales/cs/catalog.po | 2 +- src/language/locales/da/catalog.po | 2 +- src/language/locales/de/catalog.po | 2 +- src/language/locales/el/catalog.po | 2 +- src/language/locales/en/catalog.po | 2 +- src/language/locales/es-419/catalog.po | 2 +- src/language/locales/es/catalog.po | 2 +- src/language/locales/fi/catalog.po | 2 +- src/language/locales/fr/catalog.po | 2 +- src/language/locales/he/catalog.po | 2 +- src/language/locales/hi/catalog.po | 2 +- src/language/locales/hu/catalog.po | 2 +- src/language/locales/it/catalog.po | 2 +- src/language/locales/ja/catalog.po | 2 +- src/language/locales/ko/catalog.po | 2 +- src/language/locales/nl/catalog.po | 2 +- src/language/locales/no/catalog.po | 2 +- src/language/locales/pl/catalog.po | 2 +- src/language/locales/pt-BR/catalog.po | 2 +- src/language/locales/pt/catalog.po | 2 +- src/language/locales/ro/catalog.po | 2 +- src/language/locales/ru/catalog.po | 2 +- src/language/locales/sr/catalog.po | 2 +- src/language/locales/sv/catalog.po | 2 +- src/language/locales/tr/catalog.po | 2 +- src/language/locales/uk/catalog.po | 2 +- src/language/locales/vi/catalog.po | 2 +- src/language/locales/zh-CN/catalog.po | 2 +- src/language/locales/zh-TW/catalog.po | 2 +- src/language/locales/zh/catalog.po | 2 +- src/reown/minipayConnector.ts | 21 ++++++++------------- src/reown/reownprovider.tsx | 13 ++----------- 36 files changed, 62 insertions(+), 57 deletions(-) diff --git a/src/components/BlockNativeOnboard/index.tsx b/src/components/BlockNativeOnboard/index.tsx index 1c74faaa9..e8e58fe50 100644 --- a/src/components/BlockNativeOnboard/index.tsx +++ b/src/components/BlockNativeOnboard/index.tsx @@ -5,6 +5,8 @@ import { useLingui } from '@lingui/react' import { AsyncStorage, getDevice, SupportedChains } from '@gooddollar/web3sdk-v2' import { Web3ActionButton } from '@gooddollar/good-design' import { noop } from 'lodash' +import { useConnect } from 'wagmi' +import { isMiniPay } from '../../utils/minipay' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' @@ -18,12 +20,29 @@ export const clearDeeplink = () => { export const OnboardConnectButton: FC = () => { const { address } = useAppKitAccount() const { open } = useAppKit() + const { connect, connectors } = useConnect() const sendData = useSendAnalyticsData() const { i18n } = useLingui() const buttonText = i18n._(t`Connect to a wallet`) const connectionStartedRef = useRef(false) + const isMiniPayDetected = isMiniPay() const onWalletConnect = async () => { + if (isMiniPayDetected && !address) { + const miniPayConn = connectors.find((conn) => conn.id === 'minipay') + if (miniPayConn) { + try { + connectionStartedRef.current = true + sendData({ event: 'wallet_connect', action: 'wallet_connect_start' }) + connect({ connector: miniPayConn }) + return false + } catch (error) { + connectionStartedRef.current = false + console.warn('MiniPay connect failed:', error) + } + } + } + connectionStartedRef.current = true sendData({ event: 'wallet_connect', action: 'wallet_connect_start' }) diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 15ea19afb..176d90260 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Koppel aan 'n beursie" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 76ecb500a..3fb15478a 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "الاتصال بمحفظة" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 27560bbf4..91402b832 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 0ec02d17c..e63d3aed8 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index c07582fc4..98adb0c10 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 47c73eacc..e60823929 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Herzliche Glückwünsche!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Verbinden Sie sich mit einer Brieftasche" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index d24cb648d..8c7c0a5c3 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 5481df0c2..811905356 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 82f882a60..bd7598a2c 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -246,7 +246,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index afe209233..557ae02b9 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2888,7 +2888,7 @@ msgstr "¡Felicidades!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Conectarse a una billetera" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index d4d6c9abc..65c05d2a9 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 9c860ffae..216e64dd0 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Toutes nos félicitations!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Connecter un portefeuille" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 8c0eeb084..bae19a935 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2888,7 +2888,7 @@ msgstr "מזל טוב!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "התחבר לארנק" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index d3f6a0685..2aed74388 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1643,7 +1643,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "एक वॉलेट से कनेक्ट करें" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 10b9589b9..4c416257d 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 62eeb9ec1..2803c8078 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Congratulazioni!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Collega wallet" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 3e120c7aa..70e727919 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2888,7 +2888,7 @@ msgstr "おめでとう!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "ウォレットに接続する" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 28f453687..1f6fe34b8 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2888,7 +2888,7 @@ msgstr "축하합니다!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "지갑에 연결" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 28bb36729..fd6abe3cb 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index df6505f0f..b4e822a93 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 26e5fd0c1..91e15172f 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 3f1069f25..d9d08d0c6 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Conecte a uma carteira" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index bad000139..49434b2e8 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 93b138def..3e23d877e 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Felicitări!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Conectați-vă la un portofel" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 1632b9d8f..427419fc3 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Поздравляю!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Подключиться к кошельку" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 2bb731542..6ab427d92 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 4b479c989..b266d26e0 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index dd13d8526..7622e70f3 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 5e37520d2..1f560fe86 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index e4f80f09e..e8b61e0b5 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Xin chúc mừng!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "Kết nối với ví" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 603c18041..eeba4834c 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2888,7 +2888,7 @@ msgstr "祝贺!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "连接钱包" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index f192c4613..213c441ab 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2888,7 +2888,7 @@ msgstr "祝賀!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "連接錢包" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 8dc51e7c1..c613142a9 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:23 +#: src/components/BlockNativeOnboard/index.tsx:26 msgid "Connect to a wallet" msgstr "" diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index f08a1b55a..ed2a184e2 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -1,19 +1,12 @@ import { createConnector } from 'wagmi' import { isMiniPay } from '../utils/minipay' -interface MiniPayProvider extends EIP1193Provider { +interface MiniPayProvider { isMiniPay: boolean - disconnect?: () => Promise - on?(event: 'accountsChanged', handler: (accounts: string[]) => void): void - on?(event: 'chainChanged', handler: (chainId: string) => void): void - on?(event: 'disconnect', handler: () => void): void - removeListener?(event: 'accountsChanged', handler: (accounts: string[]) => void): void - removeListener?(event: 'chainChanged', handler: (chainId: string) => void): void - removeListener?(event: 'disconnect', handler: () => void): void -} - -interface EIP1193Provider { request(args: { method: string; params?: unknown[] }): Promise + disconnect?: () => Promise + on?(...args: unknown[]): void + removeListener?(...args: unknown[]): void } function getMiniPayProvider(): MiniPayProvider | undefined { @@ -186,7 +179,7 @@ export function miniPayConnector() { onDisconnect() { disconnectHandler() }, - onConnect(connectInfo: { chainId: string | number }) { + onConnect() { // Handler for provider connect events }, async switchChain({ chainId }) { @@ -234,7 +227,9 @@ export function miniPayConnector() { } }, async getProvider() { - return Promise.resolve(getMiniPayProvider()) + const provider = getMiniPayProvider() + if (!provider) return undefined + return provider as any }, } }) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index d2340db34..f5078c4cd 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -25,8 +25,7 @@ const metadata = { name: 'GoodProtocolUI', description: 'Good Protocol UI', url: typeof window !== 'undefined' ? window.location.origin : '', - icons: - typeof window !== 'undefined' ? [`${window.location.origin}/favicon.ico`] : [], + icons: typeof window !== 'undefined' ? [`${window.location.origin}/favicon.ico`] : [], } const localFeatureConfig = { @@ -128,15 +127,7 @@ const baseConnectors = [ }), ] -const getConnectors = () => { - const connectors = [...baseConnectors] - if (typeof window !== 'undefined' && window.ethereum?.isMiniPay) { - connectors.unshift(miniPayConnector()) - } - return connectors -} - -const connectors = getConnectors() +const connectors = [miniPayConnector(), ...baseConnectors] const wagmiAdapter = new WagmiAdapter({ networks, From 236196b36571e50e338d8a92f3e7c67a529673f0 Mon Sep 17 00:00:00 2001 From: LewisB Date: Fri, 12 Dec 2025 00:20:12 +0700 Subject: [PATCH 27/36] wip: fix autoconnect minipay --- src/components/Web3ReactManager/index.tsx | 29 ++++++++- src/reown/minipayConnector.ts | 30 +++++----- src/reown/reownprovider.tsx | 1 + src/utils/minipay.ts | 73 +++++++++++++++++++++-- 4 files changed, 113 insertions(+), 20 deletions(-) diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index b29bc26ff..77d9b24cd 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -30,9 +30,36 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } const networkError = false const { identify } = useAnalytics() const { connect, connectors } = useConnect() - const miniPayDetected = isMiniPay() + const [miniPayDetected, setMiniPayDetected] = useState(() => isMiniPay()) const autoConnectAttempted = useRef(false) + useEffect(() => { + if (miniPayDetected) { + return + } + + const detectMiniPay = () => { + if (isMiniPay()) { + setMiniPayDetected(true) + } + } + + detectMiniPay() + + if (typeof window === 'undefined') { + return + } + + const initListener = detectMiniPay as EventListener + window.addEventListener('ethereum#initialized', initListener, { once: true }) + const intervalId = window.setInterval(detectMiniPay, 500) + + return () => { + window.removeEventListener('ethereum#initialized', initListener) + window.clearInterval(intervalId) + } + }, [miniPayDetected]) + useEffect(() => { const timeout = setTimeout(() => { setShowLoader(true) diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index ed2a184e2..17939e01f 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -1,5 +1,5 @@ import { createConnector } from 'wagmi' -import { isMiniPay } from '../utils/minipay' +import { getMiniPayProvider, waitForMiniPayProvider } from '../utils/minipay' interface MiniPayProvider { isMiniPay: boolean @@ -9,13 +9,6 @@ interface MiniPayProvider { removeListener?(...args: unknown[]): void } -function getMiniPayProvider(): MiniPayProvider | undefined { - if (typeof window === 'undefined') return undefined - if (!isMiniPay()) return undefined - if (!window.ethereum) return undefined - return window.ethereum as MiniPayProvider -} - function handleProviderError(error: unknown): never { if (error && typeof error === 'object' && 'code' in error) { const errorCode = error.code @@ -38,6 +31,14 @@ function parseChainId(chainId: string | number): number { } export function miniPayConnector() { + const resolveMiniPayProvider = async (): Promise => { + const provider = (await waitForMiniPayProvider()) as MiniPayProvider | undefined + if (provider?.isMiniPay) { + return provider + } + return undefined + } + return createConnector((config) => { let provider: MiniPayProvider | undefined let cleanup: (() => void) | undefined @@ -78,11 +79,11 @@ export function miniPayConnector() { name: 'MiniPay', type: 'injected', async connect() { - if (typeof window === 'undefined' || !isMiniPay() || !window.ethereum) { + if (typeof window === 'undefined') { throw new Error('MiniPay is not available in this browser') } - provider = getMiniPayProvider() + provider = await resolveMiniPayProvider() if (!provider) { throw new Error('MiniPay provider not found') } @@ -130,7 +131,7 @@ export function miniPayConnector() { provider = undefined }, async getAccounts() { - provider = getMiniPayProvider() + provider = getMiniPayProvider() as MiniPayProvider | undefined if (!provider) return [] try { @@ -143,7 +144,7 @@ export function miniPayConnector() { } }, async getChainId() { - provider = getMiniPayProvider() + provider = getMiniPayProvider() as MiniPayProvider | undefined if (!provider) { throw new Error('MiniPay provider not available') } @@ -158,7 +159,7 @@ export function miniPayConnector() { } }, async isAuthorized() { - provider = getMiniPayProvider() + provider = getMiniPayProvider() as MiniPayProvider | undefined if (!provider) return false try { @@ -181,9 +182,10 @@ export function miniPayConnector() { }, onConnect() { // Handler for provider connect events + // console.log('MiniPay connected to chain:', connectInfo.chainId) }, async switchChain({ chainId }) { - provider = getMiniPayProvider() + provider = getMiniPayProvider() as MiniPayProvider | undefined if (!provider) { throw new Error('MiniPay provider not found') } diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index f5078c4cd..0ca408507 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -120,6 +120,7 @@ if (allowedChains.length === 0) { const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] const baseConnectors = [ + miniPayConnector(), injected(), coinbaseWallet({ appName: 'GoodProtocolUI', diff --git a/src/utils/minipay.ts b/src/utils/minipay.ts index e630d7aa5..27224a19d 100644 --- a/src/utils/minipay.ts +++ b/src/utils/minipay.ts @@ -1,8 +1,71 @@ +type MaybeMiniPayProvider = { + isMiniPay?: boolean + providers?: MaybeMiniPayProvider[] +} + +const findMiniPayProvider = (ethereum: MaybeMiniPayProvider): MaybeMiniPayProvider | undefined => { + if (!ethereum) { + return undefined + } + + // EIP-6963 style multi-injected provider array + if (Array.isArray(ethereum.providers)) { + const provider = ethereum.providers.find((candidate) => candidate?.isMiniPay) + if (provider) { + return provider + } + } + + return ethereum.isMiniPay ? ethereum : undefined +} + +export const getMiniPayProvider = (): MaybeMiniPayProvider | undefined => { + if (typeof window === 'undefined') { + return undefined + } + + // @ts-ignore: ethereum is injected by wallets + const { ethereum } = window + if (!ethereum) { + return undefined + } + + return findMiniPayProvider(ethereum) +} + export function isMiniPay(): boolean { - try { - // @ts-ignore - return Boolean(window?.ethereum?.isMiniPay) - } catch { - return false + return Boolean(getMiniPayProvider()) +} + +export const waitForMiniPayProvider = async (timeoutMs = 1200): Promise => { + const existing = getMiniPayProvider() + if (existing) { + return existing + } + + if (typeof window === 'undefined') { + return undefined } + + return new Promise((resolve) => { + const handleReady = () => { + const provider = getMiniPayProvider() + if (provider) { + cleanup() + resolve(provider) + } + } + + const cleanup = () => { + window.removeEventListener('ethereum#initialized', handleReady as any) + clearTimeout(timer) + } + + const timer = window.setTimeout(() => { + cleanup() + resolve(getMiniPayProvider()) + }, timeoutMs) + + window.addEventListener('ethereum#initialized', handleReady as any, { once: true }) + }) } From f151b00e49b2a2b792c812a6ffa3e076ebc62d0c Mon Sep 17 00:00:00 2001 From: LewisB Date: Fri, 12 Dec 2025 00:23:10 +0700 Subject: [PATCH 28/36] fix: remove duplicate minipay connector --- src/reown/reownprovider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 0ca408507..2b63fb274 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -128,7 +128,7 @@ const baseConnectors = [ }), ] -const connectors = [miniPayConnector(), ...baseConnectors] +const connectors = [...baseConnectors] const wagmiAdapter = new WagmiAdapter({ networks, From f0e0934d2695f7fcad33795bd14d8854f1f493bc Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Fri, 12 Dec 2025 13:05:09 +0100 Subject: [PATCH 29/36] feat: add MiniPay status box and simplify auto-connect --- src/components/BlockNativeOnboard/index.tsx | 19 ---- src/components/Web3ReactManager/index.tsx | 108 +++++++++++--------- src/language/locales/af/catalog.po | 4 +- src/language/locales/ar/catalog.po | 4 +- src/language/locales/ca/catalog.po | 4 +- src/language/locales/cs/catalog.po | 4 +- src/language/locales/da/catalog.po | 4 +- src/language/locales/de/catalog.po | 4 +- src/language/locales/el/catalog.po | 4 +- src/language/locales/en/catalog.po | 4 +- src/language/locales/es-419/catalog.po | 4 +- src/language/locales/es/catalog.po | 4 +- src/language/locales/fi/catalog.po | 4 +- src/language/locales/fr/catalog.po | 4 +- src/language/locales/he/catalog.po | 4 +- src/language/locales/hi/catalog.po | 4 +- src/language/locales/hu/catalog.po | 4 +- src/language/locales/it/catalog.po | 4 +- src/language/locales/ja/catalog.po | 4 +- src/language/locales/ko/catalog.po | 4 +- src/language/locales/nl/catalog.po | 4 +- src/language/locales/no/catalog.po | 4 +- src/language/locales/pl/catalog.po | 4 +- src/language/locales/pt-BR/catalog.po | 4 +- src/language/locales/pt/catalog.po | 4 +- src/language/locales/ro/catalog.po | 4 +- src/language/locales/ru/catalog.po | 4 +- src/language/locales/sr/catalog.po | 4 +- src/language/locales/sv/catalog.po | 4 +- src/language/locales/tr/catalog.po | 4 +- src/language/locales/uk/catalog.po | 4 +- src/language/locales/vi/catalog.po | 4 +- src/language/locales/zh-CN/catalog.po | 4 +- src/language/locales/zh-TW/catalog.po | 4 +- src/language/locales/zh/catalog.po | 4 +- 35 files changed, 124 insertions(+), 135 deletions(-) diff --git a/src/components/BlockNativeOnboard/index.tsx b/src/components/BlockNativeOnboard/index.tsx index e8e58fe50..1c74faaa9 100644 --- a/src/components/BlockNativeOnboard/index.tsx +++ b/src/components/BlockNativeOnboard/index.tsx @@ -5,8 +5,6 @@ import { useLingui } from '@lingui/react' import { AsyncStorage, getDevice, SupportedChains } from '@gooddollar/web3sdk-v2' import { Web3ActionButton } from '@gooddollar/good-design' import { noop } from 'lodash' -import { useConnect } from 'wagmi' -import { isMiniPay } from '../../utils/minipay' import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' @@ -20,29 +18,12 @@ export const clearDeeplink = () => { export const OnboardConnectButton: FC = () => { const { address } = useAppKitAccount() const { open } = useAppKit() - const { connect, connectors } = useConnect() const sendData = useSendAnalyticsData() const { i18n } = useLingui() const buttonText = i18n._(t`Connect to a wallet`) const connectionStartedRef = useRef(false) - const isMiniPayDetected = isMiniPay() const onWalletConnect = async () => { - if (isMiniPayDetected && !address) { - const miniPayConn = connectors.find((conn) => conn.id === 'minipay') - if (miniPayConn) { - try { - connectionStartedRef.current = true - sendData({ event: 'wallet_connect', action: 'wallet_connect_start' }) - connect({ connector: miniPayConn }) - return false - } catch (error) { - connectionStartedRef.current = false - console.warn('MiniPay connect failed:', error) - } - } - } - connectionStartedRef.current = true sendData({ event: 'wallet_connect', action: 'wallet_connect_start' }) diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 77d9b24cd..fa9a39a64 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -4,9 +4,8 @@ import { t } from '@lingui/macro' import { useLingui } from '@lingui/react' import styled from 'styled-components' import { useAppKitState } from '@reown/appkit/react' -import { useConnectionInfo } from 'hooks/useConnectionInfo' -import { useConnect } from 'wagmi' -import { isMiniPay } from 'utils/minipay' +import { useAccount, useConnect } from 'wagmi' +import { waitForMiniPayProvider } from 'utils/minipay' const MessageWrapper = styled.div` display: flex; @@ -20,45 +19,17 @@ const Message = styled.h2` ` const LOADER_DELAY_MS = 600 -const AUTO_CONNECT_DELAY_MS = 1000 export default function Web3ReactManager({ children }: { children: JSX.Element }) { const { i18n } = useLingui() const [, setShowLoader] = useState(false) const { initialized } = useAppKitState() - const { address } = useConnectionInfo() + const { address } = useAccount() const networkError = false const { identify } = useAnalytics() const { connect, connectors } = useConnect() - const [miniPayDetected, setMiniPayDetected] = useState(() => isMiniPay()) - const autoConnectAttempted = useRef(false) - - useEffect(() => { - if (miniPayDetected) { - return - } - - const detectMiniPay = () => { - if (isMiniPay()) { - setMiniPayDetected(true) - } - } - - detectMiniPay() - - if (typeof window === 'undefined') { - return - } - - const initListener = detectMiniPay as EventListener - window.addEventListener('ethereum#initialized', initListener, { once: true }) - const intervalId = window.setInterval(detectMiniPay, 500) - - return () => { - window.removeEventListener('ethereum#initialized', initListener) - window.clearInterval(intervalId) - } - }, [miniPayDetected]) + const hasConnected = useRef(false) + const [connectionStatus, setConnectionStatus] = useState('') useEffect(() => { const timeout = setTimeout(() => { @@ -71,29 +42,34 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } }, []) useEffect(() => { - if (!miniPayDetected || !initialized || address || autoConnectAttempted.current) { + if (hasConnected.current || connectors.length === 0) { return } - const miniPayConnector = connectors.find((conn) => conn.id === 'minipay') - if (!miniPayConnector) { - return - } + const attemptConnect = async () => { + setConnectionStatus('Detecting MiniPay...') + const provider = await waitForMiniPayProvider(2000) + if (!provider) { + setConnectionStatus('MiniPay not detected') + return + } - autoConnectAttempted.current = true - const timer = setTimeout(() => { try { - connect({ connector: miniPayConnector }) + setConnectionStatus('Connecting to MiniPay...') + hasConnected.current = true + connect({ connector: connectors[0] }) + setConnectionStatus('MiniPay connected successfully!') } catch (error) { - console.warn('Auto-connect to MiniPay failed:', error) - autoConnectAttempted.current = false + console.error('MiniPay connection failed:', error) + hasConnected.current = false + setConnectionStatus( + `MiniPay connection failed: ${error instanceof Error ? error.message : 'Unknown error'}` + ) } - }, AUTO_CONNECT_DELAY_MS) - - return () => { - clearTimeout(timer) } - }, [miniPayDetected, initialized, address, connect, connectors]) + + void attemptConnect() + }, [connect, connectors]) useEffect(() => { // re-identify analytics when connected wallet changes @@ -115,5 +91,37 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } ) } - return children + return ( + <> + {connectionStatus && ( +
+
MiniPay Status
+
{connectionStatus}
+ {address && ( +
+ {address.slice(0, 8)}...{address.slice(-6)} +
+ )} +
+ )} + {children} + + ) } diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 176d90260..64ce2b538 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Koppel aan 'n beursie" @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 3fb15478a..3e294a296 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "الاتصال بمحفظة" @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 91402b832..ff57d22dc 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index e63d3aed8..ef9b1e3da 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 98adb0c10..954d94d5b 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index e60823929..a23c8845a 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Herzliche Glückwünsche!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Verbinden Sie sich mit einer Brieftasche" @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 8c7c0a5c3..8023feeee 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 811905356..da6ae8105 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index bd7598a2c..e28f51300 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -246,7 +246,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 557ae02b9..1e852726c 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2888,7 +2888,7 @@ msgstr "¡Felicidades!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conectarse a una billetera" @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 65c05d2a9..49a5e7b02 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 216e64dd0..2c119ee4b 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Toutes nos félicitations!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Connecter un portefeuille" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index bae19a935..4ce22b593 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2888,7 +2888,7 @@ msgstr "מזל טוב!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "התחבר לארנק" @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 2aed74388..891313054 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1643,7 +1643,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "एक वॉलेट से कनेक्ट करें" @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 4c416257d..3b7b3a10e 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 2803c8078..a0c995a8c 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Congratulazioni!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Collega wallet" @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 70e727919..f94246ef1 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2888,7 +2888,7 @@ msgstr "おめでとう!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "ウォレットに接続する" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 1f6fe34b8..16c9bf337 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2888,7 +2888,7 @@ msgstr "축하합니다!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "지갑에 연결" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index fd6abe3cb..9c48318f8 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index b4e822a93..e80223c42 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 91e15172f..f13b2b496 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index d9d08d0c6..612644540 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conecte a uma carteira" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 49434b2e8..4fef94874 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 3e23d877e..76126a4fa 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Felicitări!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Conectați-vă la un portofel" @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 427419fc3..3df12e778 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Поздравляю!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Подключиться к кошельку" @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 6ab427d92..41fe93ec3 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index b266d26e0..db7a2d811 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 7622e70f3..d92740a4d 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 1f560fe86..8a46ca23e 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2888,7 +2888,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index e8b61e0b5..a3aaa99fe 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2888,7 +2888,7 @@ msgstr "Xin chúc mừng!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "Kết nối với ví" @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index eeba4834c..2cc56a388 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2888,7 +2888,7 @@ msgstr "祝贺!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "连接钱包" @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 213c441ab..4de7bbd38 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2888,7 +2888,7 @@ msgstr "祝賀!" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "連接錢包" @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index c613142a9..2a907374d 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2359,7 +2359,7 @@ msgstr "" msgid "Connect a wallet to see your portfolio" msgstr "" -#: src/components/BlockNativeOnboard/index.tsx:26 +#: src/components/BlockNativeOnboard/index.tsx:23 msgid "Connect to a wallet" msgstr "" @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:84 +#: src/components/Web3ReactManager/index.tsx:110 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" From 4f460d88573906a5d9f2a929d66e008bab9e7c8a Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Sat, 13 Dec 2025 20:47:15 +0100 Subject: [PATCH 30/36] fix: resolve MiniPay provider fallback in useWeb3 hook --- src/hooks/useWeb3.tsx | 25 ++++++++++++++++++++----- src/language/locales/af/catalog.po | 2 +- src/language/locales/ar/catalog.po | 2 +- src/language/locales/ca/catalog.po | 2 +- src/language/locales/cs/catalog.po | 2 +- src/language/locales/da/catalog.po | 2 +- src/language/locales/de/catalog.po | 2 +- src/language/locales/el/catalog.po | 2 +- src/language/locales/en/catalog.po | 2 +- src/language/locales/es-419/catalog.po | 2 +- src/language/locales/es/catalog.po | 2 +- src/language/locales/fi/catalog.po | 2 +- src/language/locales/fr/catalog.po | 2 +- src/language/locales/he/catalog.po | 2 +- src/language/locales/hi/catalog.po | 2 +- src/language/locales/hu/catalog.po | 2 +- src/language/locales/it/catalog.po | 2 +- src/language/locales/ja/catalog.po | 2 +- src/language/locales/ko/catalog.po | 2 +- src/language/locales/nl/catalog.po | 2 +- src/language/locales/no/catalog.po | 2 +- src/language/locales/pl/catalog.po | 2 +- src/language/locales/pt-BR/catalog.po | 2 +- src/language/locales/pt/catalog.po | 2 +- src/language/locales/ro/catalog.po | 2 +- src/language/locales/ru/catalog.po | 2 +- src/language/locales/sr/catalog.po | 2 +- src/language/locales/sv/catalog.po | 2 +- src/language/locales/tr/catalog.po | 2 +- src/language/locales/uk/catalog.po | 2 +- src/language/locales/vi/catalog.po | 2 +- src/language/locales/zh-CN/catalog.po | 2 +- src/language/locales/zh-TW/catalog.po | 2 +- src/language/locales/zh/catalog.po | 2 +- 34 files changed, 53 insertions(+), 38 deletions(-) diff --git a/src/hooks/useWeb3.tsx b/src/hooks/useWeb3.tsx index 4b7a34b6d..7cceccc7c 100644 --- a/src/hooks/useWeb3.tsx +++ b/src/hooks/useWeb3.tsx @@ -8,9 +8,10 @@ import { AsyncStorage, Celo, Fuse, Xdc, Web3Provider } from '@gooddollar/web3sdk import { sample } from 'lodash' import { useAppKitNetwork, useAppKitProvider } from '@reown/appkit/react' import type { Provider } from '@reown/appkit/react' +import { useAccount } from 'wagmi' import { getEnv } from 'utils/env' -import { isMiniPay } from 'utils/minipay' +import { isMiniPay, getMiniPayProvider } from 'utils/minipay' type NetworkSettings = { currentNetwork: string @@ -63,16 +64,30 @@ export function Web3ContextProvider({ children }: { children: ReactNode | ReactN const { rpcs } = useNetwork() const { chainId } = useAppKitNetwork() const { walletProvider } = useAppKitProvider('eip155') + const { connector, address } = useAccount() const isMiniPayWallet = isMiniPay() const [mainnetWeb3] = useEnvWeb3(DAO_NETWORK.MAINNET) + const resolvedProvider = useMemo(() => { + if (walletProvider) { + return walletProvider + } + + const isMiniPayConnector = connector?.id === 'minipay' + if (isMiniPayConnector && address) { + return getMiniPayProvider() as Provider | undefined + } + + return undefined + }, [walletProvider, connector?.id, address]) + const web3 = useMemo( - () => (walletProvider ? new Web3(walletProvider as any) : mainnetWeb3), - [walletProvider, mainnetWeb3] + () => (resolvedProvider ? new Web3(resolvedProvider as any) : mainnetWeb3), + [resolvedProvider, mainnetWeb3] ) const webprovider = useMemo( - () => walletProvider && new ethers.providers.Web3Provider(walletProvider as ExternalProvider, 'any'), - [walletProvider] + () => resolvedProvider && new ethers.providers.Web3Provider(resolvedProvider as ExternalProvider, 'any'), + [resolvedProvider] ) if (webprovider) { diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 64ce2b538..ab14056f5 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 3e294a296..aa9dbcd4d 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index ff57d22dc..79fc2b107 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index ef9b1e3da..54789f4fb 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 954d94d5b..de6570085 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index a23c8845a..f3fa21688 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 8023feeee..05ab11d34 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index da6ae8105..e41d0d16d 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index e28f51300..1a5505c26 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 1e852726c..f0662f63a 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 49a5e7b02..29e31dd07 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 2c119ee4b..379d9b534 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 4ce22b593..3e7e4428d 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 891313054..642949b1a 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 3b7b3a10e..21edba2b0 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index a0c995a8c..891eab296 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index f94246ef1..474f36a9d 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 16c9bf337..aeae6ec74 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 9c48318f8..11060d0c2 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index e80223c42..ad3591aee 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index f13b2b496..e250179a5 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 612644540..9c96f25a3 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 4fef94874..ee4ee01de 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 76126a4fa..480dce299 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 3df12e778..d39131c24 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 41fe93ec3..3862f7d77 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index db7a2d811..a49e62c57 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index d92740a4d..c8eac724d 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 8a46ca23e..6a7f31dac 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index a3aaa99fe..c4af79232 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 2cc56a388..c66eff110 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 4de7bbd38..13cbbb190 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 2a907374d..ec003d56d 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:110 +#: src/components/Web3ReactManager/index.tsx:85 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" From 9c93dfe64d74b8550c8f023adc3f6dd89479431e Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Sat, 13 Dec 2025 21:34:43 +0100 Subject: [PATCH 31/36] refactor: remove MiniPay status overlay display --- src/components/Web3ReactManager/index.tsx | 42 +---------------------- src/language/locales/af/catalog.po | 2 +- src/language/locales/ar/catalog.po | 2 +- src/language/locales/ca/catalog.po | 2 +- src/language/locales/cs/catalog.po | 2 +- src/language/locales/da/catalog.po | 2 +- src/language/locales/de/catalog.po | 2 +- src/language/locales/el/catalog.po | 2 +- src/language/locales/en/catalog.po | 2 +- src/language/locales/es-419/catalog.po | 2 +- src/language/locales/es/catalog.po | 2 +- src/language/locales/fi/catalog.po | 2 +- src/language/locales/fr/catalog.po | 2 +- src/language/locales/he/catalog.po | 2 +- src/language/locales/hi/catalog.po | 2 +- src/language/locales/hu/catalog.po | 2 +- src/language/locales/it/catalog.po | 2 +- src/language/locales/ja/catalog.po | 2 +- src/language/locales/ko/catalog.po | 2 +- src/language/locales/nl/catalog.po | 2 +- src/language/locales/no/catalog.po | 2 +- src/language/locales/pl/catalog.po | 2 +- src/language/locales/pt-BR/catalog.po | 2 +- src/language/locales/pt/catalog.po | 2 +- src/language/locales/ro/catalog.po | 2 +- src/language/locales/ru/catalog.po | 2 +- src/language/locales/sr/catalog.po | 2 +- src/language/locales/sv/catalog.po | 2 +- src/language/locales/tr/catalog.po | 2 +- src/language/locales/uk/catalog.po | 2 +- src/language/locales/vi/catalog.po | 2 +- src/language/locales/zh-CN/catalog.po | 2 +- src/language/locales/zh-TW/catalog.po | 2 +- src/language/locales/zh/catalog.po | 2 +- 34 files changed, 34 insertions(+), 74 deletions(-) diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index fa9a39a64..9c3cd1bd7 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -29,7 +29,6 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } const { identify } = useAnalytics() const { connect, connectors } = useConnect() const hasConnected = useRef(false) - const [connectionStatus, setConnectionStatus] = useState('') useEffect(() => { const timeout = setTimeout(() => { @@ -47,24 +46,17 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } } const attemptConnect = async () => { - setConnectionStatus('Detecting MiniPay...') const provider = await waitForMiniPayProvider(2000) if (!provider) { - setConnectionStatus('MiniPay not detected') return } try { - setConnectionStatus('Connecting to MiniPay...') hasConnected.current = true connect({ connector: connectors[0] }) - setConnectionStatus('MiniPay connected successfully!') } catch (error) { console.error('MiniPay connection failed:', error) hasConnected.current = false - setConnectionStatus( - `MiniPay connection failed: ${error instanceof Error ? error.message : 'Unknown error'}` - ) } } @@ -91,37 +83,5 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } ) } - return ( - <> - {connectionStatus && ( -
-
MiniPay Status
-
{connectionStatus}
- {address && ( -
- {address.slice(0, 8)}...{address.slice(-6)} -
- )} -
- )} - {children} - - ) + return <>{children} } diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index ab14056f5..5009f5150 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index aa9dbcd4d..6bb30af42 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 79fc2b107..ef08e7c7f 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 54789f4fb..ea4a07ddd 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index de6570085..0313ea777 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index f3fa21688..7f9a6b321 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 05ab11d34..ff52aae77 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index e41d0d16d..9b6d2d374 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 1a5505c26..9c30d4ba4 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index f0662f63a..6d1657e69 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 29e31dd07..604be7b83 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 379d9b534..3901c3bc7 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 3e7e4428d..9235f1b00 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 642949b1a..64121ede5 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 21edba2b0..12fd700dc 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 891eab296..372c3322e 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 474f36a9d..2d0b5719e 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index aeae6ec74..b48e777a6 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 11060d0c2..cfb7a3a8b 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index ad3591aee..4e2b92ce8 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index e250179a5..43891b1e3 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 9c96f25a3..2f738cd38 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index ee4ee01de..2b9fb72b3 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 480dce299..7b2ec0c1d 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index d39131c24..37a94e447 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 3862f7d77..1472b5378 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index a49e62c57..00db85294 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index c8eac724d..27047ac76 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 6a7f31dac..bf639c65d 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index c4af79232..2b0c3f7a5 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index c66eff110..b8aff0011 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 13cbbb190..eb5a7091e 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index ec003d56d..9cfadd13e 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:85 +#: src/components/Web3ReactManager/index.tsx:87 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" From f2a0caa26412d9bc9c55d4db371d06eea2ab4174 Mon Sep 17 00:00:00 2001 From: Lewis B Date: Mon, 15 Dec 2025 13:08:44 +0700 Subject: [PATCH 32/36] Apply suggestions from code review --- src/pages/gd/Stake/Savings/index.tsx | 2 +- src/pages/gd/Swap/SwapConfirmModal/index.tsx | 2 +- src/pages/gd/Swap/hooks.ts | 2 +- src/state/application/updater.ts | 4 ++-- src/state/multicall/updater.tsx | 10 +++++----- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pages/gd/Stake/Savings/index.tsx b/src/pages/gd/Stake/Savings/index.tsx index 8c41d0f44..3fd07abb3 100644 --- a/src/pages/gd/Stake/Savings/index.tsx +++ b/src/pages/gd/Stake/Savings/index.tsx @@ -146,7 +146,7 @@ export const Savings: FC = () => { return (
- {Object.values(SupportedV2Networks).includes(chainId ?? 1) && address && !!modalData && ( + {Object.values(SupportedV2Networks).includes(chainId ?? 42220) && address && !!modalData && ( )} {i18n._(t`Savings`)} diff --git a/src/pages/gd/Swap/SwapConfirmModal/index.tsx b/src/pages/gd/Swap/SwapConfirmModal/index.tsx index 9380f7353..712d214da 100644 --- a/src/pages/gd/Swap/SwapConfirmModal/index.tsx +++ b/src/pages/gd/Swap/SwapConfirmModal/index.tsx @@ -301,7 +301,7 @@ const SwapConfirmModal = memo(
diff --git a/src/pages/gd/Swap/hooks.ts b/src/pages/gd/Swap/hooks.ts index 5630078bc..bdc7dbe99 100644 --- a/src/pages/gd/Swap/hooks.ts +++ b/src/pages/gd/Swap/hooks.ts @@ -38,7 +38,7 @@ export function useTokens() { ? FUSE : ETHER : new Token( - +(chainId ?? 1), + +(chainId ?? 42220), currency.address, currency.decimals, currency.symbol, diff --git a/src/state/application/updater.ts b/src/state/application/updater.ts index b14a7adee..3fa42d890 100644 --- a/src/state/application/updater.ts +++ b/src/state/application/updater.ts @@ -16,7 +16,7 @@ export default function Updater(): null { const windowVisible = useIsWindowVisible() const [state, setState] = useState<{ chainId: number | undefined; blockNumber: number | null }>({ - chainId: +(chainId ?? 1), + chainId: +(chainId ?? 42220), blockNumber: null, }) @@ -37,7 +37,7 @@ export default function Updater(): null { useEffect(() => { if (!address || !library || !chainId || !windowVisible) return undefined - setState({ chainId: +(chainId ?? 1), blockNumber: null }) + setState({ chainId: +(chainId ?? 42220), blockNumber: null }) library .getBlockNumber() .then(blockNumberCallback) diff --git a/src/state/multicall/updater.tsx b/src/state/multicall/updater.tsx index c8203fca2..9f268b2a1 100644 --- a/src/state/multicall/updater.tsx +++ b/src/state/multicall/updater.tsx @@ -123,11 +123,11 @@ export default function Updater(): null { const cancellations = useRef<{ blockNumber: number; cancellations: (() => void)[] }>() const listeningKeys: { [callKey: string]: number } = useMemo(() => { - return activeListeningKeys(debouncedListeners, +(chainId ?? 1)) + return activeListeningKeys(debouncedListeners, +(chainId ?? 42220)) }, [debouncedListeners, chainId]) const unserializedOutdatedCallKeys = useMemo(() => { - return outdatedListeningKeys(state.callResults, listeningKeys, +(chainId ?? 1), latestBlockNumber) + return outdatedListeningKeys(state.callResults, listeningKeys, +(chainId ?? 42220), latestBlockNumber) }, [chainId, state.callResults, listeningKeys, latestBlockNumber]) const serializedOutdatedCallKeys = useMemo( @@ -151,7 +151,7 @@ export default function Updater(): null { dispatch( fetchingMulticallResults({ calls, - chainId: +(chainId ?? 1), + chainId: +(chainId ?? 42220), fetchingBlockNumber: latestBlockNumber, }) ) @@ -177,7 +177,7 @@ export default function Updater(): null { dispatch( updateMulticallResults({ - chainId: +(chainId ?? 1), + chainId: +(chainId ?? 42220), results: outdatedCallKeys .slice(firstCallKeyIndex, lastCallKeyIndex) .reduce<{ [callKey: string]: string | null }>((memo, callKey, i) => { @@ -198,7 +198,7 @@ export default function Updater(): null { dispatch( errorFetchingMulticallResults({ calls: chunk, - chainId: +(chainId ?? 1), + chainId: +(chainId ?? 42220), fetchingBlockNumber: latestBlockNumber, }) ) From a152f8430e28217c858745f5058efc96628976c7 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Mon, 15 Dec 2025 08:22:26 +0100 Subject: [PATCH 33/36] fix: resolve merge conflicts and remove unused code --- src/components/BlockNativeOnboard/index.tsx | 65 --------------------- src/language/locales/af/catalog.po | 6 +- src/language/locales/ar/catalog.po | 6 +- src/language/locales/ca/catalog.po | 6 +- src/language/locales/cs/catalog.po | 6 +- src/language/locales/da/catalog.po | 6 +- src/language/locales/de/catalog.po | 6 +- src/language/locales/el/catalog.po | 6 +- src/language/locales/en/catalog.po | 6 +- src/language/locales/es-419/catalog.po | 6 +- src/language/locales/es/catalog.po | 6 +- src/language/locales/fi/catalog.po | 6 +- src/language/locales/fr/catalog.po | 6 +- src/language/locales/he/catalog.po | 6 +- src/language/locales/hi/catalog.po | 6 +- src/language/locales/hu/catalog.po | 6 +- src/language/locales/it/catalog.po | 6 +- src/language/locales/ja/catalog.po | 6 +- src/language/locales/ko/catalog.po | 6 +- src/language/locales/nl/catalog.po | 6 +- src/language/locales/no/catalog.po | 6 +- src/language/locales/pl/catalog.po | 6 +- src/language/locales/pt-BR/catalog.po | 6 +- src/language/locales/pt/catalog.po | 6 +- src/language/locales/ro/catalog.po | 6 +- src/language/locales/ru/catalog.po | 6 +- src/language/locales/sr/catalog.po | 6 +- src/language/locales/sv/catalog.po | 6 +- src/language/locales/tr/catalog.po | 6 +- src/language/locales/uk/catalog.po | 6 +- src/language/locales/vi/catalog.po | 6 +- src/language/locales/zh-CN/catalog.po | 6 +- src/language/locales/zh-TW/catalog.po | 6 +- src/language/locales/zh/catalog.po | 6 +- src/pages/gd/Claim/ClaimBalance.tsx | 14 +++-- src/pages/gd/Swap/SwapCore/mentoReserve.tsx | 6 +- src/routes.tsx | 16 ----- 37 files changed, 112 insertions(+), 187 deletions(-) delete mode 100644 src/components/BlockNativeOnboard/index.tsx diff --git a/src/components/BlockNativeOnboard/index.tsx b/src/components/BlockNativeOnboard/index.tsx deleted file mode 100644 index 1c74faaa9..000000000 --- a/src/components/BlockNativeOnboard/index.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import React, { FC, useEffect, useRef } from 'react' -import { useAppKit, useAppKitAccount } from '@reown/appkit/react' -import { t } from '@lingui/macro' -import { useLingui } from '@lingui/react' -import { AsyncStorage, getDevice, SupportedChains } from '@gooddollar/web3sdk-v2' -import { Web3ActionButton } from '@gooddollar/good-design' -import { noop } from 'lodash' - -import useSendAnalyticsData from '../../hooks/useSendAnalyticsData' - -export const clearDeeplink = () => { - const osName = getDevice().os.name - if (['Linux', 'Windows', 'macOS', 'iOS'].includes(osName)) { - AsyncStorage.safeRemove('WALLETCONNECT_DEEPLINK_CHOICE') - } -} - -export const OnboardConnectButton: FC = () => { - const { address } = useAppKitAccount() - const { open } = useAppKit() - const sendData = useSendAnalyticsData() - const { i18n } = useLingui() - const buttonText = i18n._(t`Connect to a wallet`) - const connectionStartedRef = useRef(false) - - const onWalletConnect = async () => { - connectionStartedRef.current = true - sendData({ event: 'wallet_connect', action: 'wallet_connect_start' }) - - try { - clearDeeplink() - await open({ view: 'Connect' }) - } catch { - connectionStartedRef.current = false - } - - return false - } - - useEffect(() => { - if (!connectionStartedRef.current) { - return - } - - if (address) { - connectionStartedRef.current = false - } - }, [address]) - - if (address) { - return null - } - - return ( - - ) -} diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 5009f5150..07ce04c35 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Koppel aan 'n beursie" +#~ msgid "Connect to a wallet" +#~ msgstr "Koppel aan 'n beursie" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 6bb30af42..d0deb43f7 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "الاتصال بمحفظة" +#~ msgid "Connect to a wallet" +#~ msgstr "الاتصال بمحفظة" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index ef08e7c7f..1386f7965 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index ea4a07ddd..c2459acb3 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 0313ea777..00ac98c78 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 7f9a6b321..d3b0f8048 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Verbinden Sie sich mit einer Brieftasche" +#~ msgid "Connect to a wallet" +#~ msgstr "Verbinden Sie sich mit einer Brieftasche" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index ff52aae77..beac5fbd7 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 9b6d2d374..0cefb20c0 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 9c30d4ba4..617578837 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -247,8 +247,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 6d1657e69..d685a21f0 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Conectarse a una billetera" +#~ msgid "Connect to a wallet" +#~ msgstr "Conectarse a una billetera" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 604be7b83..8522ea95b 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 3901c3bc7..0b8ebe690 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Connecter un portefeuille" +#~ msgid "Connect to a wallet" +#~ msgstr "Connecter un portefeuille" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 9235f1b00..84cb65c80 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "התחבר לארנק" +#~ msgid "Connect to a wallet" +#~ msgstr "התחבר לארנק" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 64121ede5..0f676353a 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1644,8 +1644,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "एक वॉलेट से कनेक्ट करें" +#~ msgid "Connect to a wallet" +#~ msgstr "एक वॉलेट से कनेक्ट करें" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 12fd700dc..ee054353c 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 372c3322e..5070e9c1f 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Collega wallet" +#~ msgid "Connect to a wallet" +#~ msgstr "Collega wallet" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 2d0b5719e..8511e9584 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "ウォレットに接続する" +#~ msgid "Connect to a wallet" +#~ msgstr "ウォレットに接続する" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index b48e777a6..729b2fcdd 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "지갑에 연결" +#~ msgid "Connect to a wallet" +#~ msgstr "지갑에 연결" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index cfb7a3a8b..b8f05df54 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 4e2b92ce8..5454914d8 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 43891b1e3..aa949f07d 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 2f738cd38..0171e7f10 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Conecte a uma carteira" +#~ msgid "Connect to a wallet" +#~ msgstr "Conecte a uma carteira" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 2b9fb72b3..f20b8b524 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 7b2ec0c1d..b09590428 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Conectați-vă la un portofel" +#~ msgid "Connect to a wallet" +#~ msgstr "Conectați-vă la un portofel" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 37a94e447..dfc2ed847 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Подключиться к кошельку" +#~ msgid "Connect to a wallet" +#~ msgstr "Подключиться к кошельку" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 1472b5378..a90fb0993 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 00db85294..9397ad89a 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 27047ac76..fdea9e860 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index bf639c65d..d1dccd0ff 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 2b0c3f7a5..d157c8bb8 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "Kết nối với ví" +#~ msgid "Connect to a wallet" +#~ msgstr "Kết nối với ví" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index b8aff0011..59378c19d 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "连接钱包" +#~ msgid "Connect to a wallet" +#~ msgstr "连接钱包" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index eb5a7091e..fc728eeee 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2889,8 +2889,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "連接錢包" +#~ msgid "Connect to a wallet" +#~ msgstr "連接錢包" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 9cfadd13e..428adec1f 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2360,8 +2360,8 @@ msgid "Connect a wallet to see your portfolio" msgstr "" #: src/components/BlockNativeOnboard/index.tsx:23 -msgid "Connect to a wallet" -msgstr "" +#~ msgid "Connect to a wallet" +#~ msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:305 msgid "Connect wallet" @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:87 +#: src/components/Web3ReactManager/index.tsx:79 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/pages/gd/Claim/ClaimBalance.tsx b/src/pages/gd/Claim/ClaimBalance.tsx index 415767ee5..4111c812b 100644 --- a/src/pages/gd/Claim/ClaimBalance.tsx +++ b/src/pages/gd/Claim/ClaimBalance.tsx @@ -10,7 +10,6 @@ import { QueryParams } from '@usedapp/core' import { useIsSimpleApp } from 'state/simpleapp/simpleapp' import { Fraction } from '@uniswap/sdk-core' import { useAppKitNetwork } from '@reown/appkit/react' -import { isMiniPay } from 'utils/minipay' const NextClaim = ({ time }: { time: string }) => ( @@ -21,11 +20,13 @@ const NextClaim = ({ time }: { time: string }) => ( export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) => { const { chainId } = useAppKitNetwork() const { isFeatureActive } = useGoodDappFeatures() - const rawPrice = useG$Price(5) + const reserveEnabled = isFeatureActive('reserveEnabled', Number(chainId)) + const rawPrice = useG$Price(5, reserveEnabled ? Number(chainId) : 42220) const G$Price = +new Fraction(rawPrice?.toString() || 0, 1e18).toSignificant(6) - const isMinipay = isMiniPay() + const { ethereum } = window + const isMinipay = ethereum?.isMiniPay const { tillClaim } = useClaiming() const showUsdPrice = true // (useFeatureFlag('show-gd-price') as boolean | undefined) @@ -101,7 +102,12 @@ export const ClaimBalance = ({ refresh }: { refresh: QueryParams['refresh'] }) = - + {!isSimpleApp && !isMinipay && claimNext && ( diff --git a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx index 83db294ef..34d60ec41 100644 --- a/src/pages/gd/Swap/SwapCore/mentoReserve.tsx +++ b/src/pages/gd/Swap/SwapCore/mentoReserve.tsx @@ -20,7 +20,7 @@ import SwapInfo from '../SwapInfo' import SwapDetails from '../SwapDetails' import SwapSettings from '../SwapSettings' import { SwapContext } from '../hooks' -import { useCurrencyBalance } from 'state/wallet/hooks' +import { useTokenBalance } from 'state/wallet/hooks' import useG$ from 'hooks/useG$' import SwapConfirmModal from '../SwapConfirmModal' @@ -52,8 +52,8 @@ const MentoSwap = memo(() => { const setOutputAmountDebounced = useCallback(debounce(setOutputAmount, 500), []) const G$ = useG$() - const cusdBalance = useCurrencyBalance(address ?? undefined, CUSD) - const g$Balance = useCurrencyBalance(address ?? undefined, G$) + const cusdBalance = useTokenBalance(address ?? undefined, CUSD) + const g$Balance = useTokenBalance(address ?? undefined, G$) const [swapPair, setSwapPair] = useState({ input: CUSD, diff --git a/src/routes.tsx b/src/routes.tsx index 4fb2ebabf..fc89552ec 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -18,22 +18,6 @@ const GoodId = lazy(() => import('./pages/gd/GoodId')) const BuyGd = lazy(() => import('./pages/gd/BuyGD')) const NewsFeedPage = lazy(() => import('./pages/gd/News')) -// const RoutesWrapper = () => { -// const posthog = usePostHog() -// const [posthogInitialized, setPosthogInitialized] = useState(false) - -// useEffect(() => { -// if (posthog) { -// posthog.onFeatureFlags(() => { -// setPosthogInitialized(true) -// return -// }) -// } -// }, [posthog]) - -// return posthogInitialized ? : -// } - const RoutesWrapper = () => { const posthog = usePostHog() const [posthogInitialized, setPosthogInitialized] = useState(false) From 3411c8ede9c7fc914ffc5a2f48f6e8bd8cb220b0 Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Mon, 15 Dec 2025 08:27:44 +0100 Subject: [PATCH 34/36] refactor: remove unnecessary onConnect handler from minipay connector --- src/reown/minipayConnector.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index 17939e01f..f92d1f591 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -180,10 +180,6 @@ export function miniPayConnector() { onDisconnect() { disconnectHandler() }, - onConnect() { - // Handler for provider connect events - // console.log('MiniPay connected to chain:', connectInfo.chainId) - }, async switchChain({ chainId }) { provider = getMiniPayProvider() as MiniPayProvider | undefined if (!provider) { From 8fcfe71afeb3f23a2afa341cbf10aa41b13e687f Mon Sep 17 00:00:00 2001 From: Lewis B Date: Tue, 16 Dec 2025 22:58:50 +0700 Subject: [PATCH 35/36] Apply suggestions from code review --- src/pages/gd/Swap/SwapConfirmModal/index.tsx | 2 +- src/reown/minipayConnector.ts | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/pages/gd/Swap/SwapConfirmModal/index.tsx b/src/pages/gd/Swap/SwapConfirmModal/index.tsx index 712d214da..57d9860dc 100644 --- a/src/pages/gd/Swap/SwapConfirmModal/index.tsx +++ b/src/pages/gd/Swap/SwapConfirmModal/index.tsx @@ -70,7 +70,7 @@ const SwapConfirmModal = memo( const [from, to] = pair ?? [] const globalDispatch = useDispatch() const { chainId } = useAppKitNetwork() - const network = SupportedChainId[+(chainId ?? 1)] + const network = SupportedChainId[+(chainId ?? 42220)] const { web3 } = useGdContextProvider() const [status, setStatus] = useState<'PREVIEW' | 'CONFIRM' | 'SENT' | 'SUCCESS' | 'REJECTED'>('SENT') const [hash, setHash] = useState('') diff --git a/src/reown/minipayConnector.ts b/src/reown/minipayConnector.ts index f92d1f591..41c4c1196 100644 --- a/src/reown/minipayConnector.ts +++ b/src/reown/minipayConnector.ts @@ -84,14 +84,10 @@ export function miniPayConnector() { } provider = await resolveMiniPayProvider() - if (!provider) { + if (!provider || !provider.isMiniPay) { throw new Error('MiniPay provider not found') } - if (!provider.isMiniPay) { - throw new Error('MiniPay provider not detected') - } - try { const accounts = (await provider.request({ method: 'eth_requestAccounts', From 9f58702eda80ae94bdea03ae168a66a0145fe49c Mon Sep 17 00:00:00 2001 From: Peter Benjamin Ani Date: Tue, 16 Dec 2025 17:32:21 +0100 Subject: [PATCH 36/36] feat: hide MiniPay from wallet selection UI, enable background auto-connect --- src/components/Web3ReactManager/index.tsx | 19 +++++++++++------- src/index.tsx | 7 +++++++ src/language/locales/af/catalog.po | 2 +- src/language/locales/ar/catalog.po | 2 +- src/language/locales/ca/catalog.po | 2 +- src/language/locales/cs/catalog.po | 2 +- src/language/locales/da/catalog.po | 2 +- src/language/locales/de/catalog.po | 2 +- src/language/locales/el/catalog.po | 2 +- src/language/locales/en/catalog.po | 2 +- src/language/locales/es-419/catalog.po | 2 +- src/language/locales/es/catalog.po | 2 +- src/language/locales/fi/catalog.po | 2 +- src/language/locales/fr/catalog.po | 2 +- src/language/locales/he/catalog.po | 2 +- src/language/locales/hi/catalog.po | 2 +- src/language/locales/hu/catalog.po | 2 +- src/language/locales/it/catalog.po | 2 +- src/language/locales/ja/catalog.po | 2 +- src/language/locales/ko/catalog.po | 2 +- src/language/locales/nl/catalog.po | 2 +- src/language/locales/no/catalog.po | 2 +- src/language/locales/pl/catalog.po | 2 +- src/language/locales/pt-BR/catalog.po | 2 +- src/language/locales/pt/catalog.po | 2 +- src/language/locales/ro/catalog.po | 2 +- src/language/locales/ru/catalog.po | 2 +- src/language/locales/sr/catalog.po | 2 +- src/language/locales/sv/catalog.po | 2 +- src/language/locales/tr/catalog.po | 2 +- src/language/locales/uk/catalog.po | 2 +- src/language/locales/vi/catalog.po | 2 +- src/language/locales/zh-CN/catalog.po | 2 +- src/language/locales/zh-TW/catalog.po | 2 +- src/language/locales/zh/catalog.po | 2 +- src/reown/reownprovider.tsx | 24 +++++++++++++++++++---- 36 files changed, 72 insertions(+), 44 deletions(-) diff --git a/src/components/Web3ReactManager/index.tsx b/src/components/Web3ReactManager/index.tsx index 9c3cd1bd7..4e54788ea 100644 --- a/src/components/Web3ReactManager/index.tsx +++ b/src/components/Web3ReactManager/index.tsx @@ -5,7 +5,7 @@ import { useLingui } from '@lingui/react' import styled from 'styled-components' import { useAppKitState } from '@reown/appkit/react' import { useAccount, useConnect } from 'wagmi' -import { waitForMiniPayProvider } from 'utils/minipay' +import { waitForMiniPayProvider, isMiniPay } from 'utils/minipay' const MessageWrapper = styled.div` display: flex; @@ -41,11 +41,15 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } }, []) useEffect(() => { - if (hasConnected.current || connectors.length === 0) { + if (hasConnected.current || address) { return } const attemptConnect = async () => { + if (!isMiniPay()) { + return + } + const provider = await waitForMiniPayProvider(2000) if (!provider) { return @@ -53,24 +57,25 @@ export default function Web3ReactManager({ children }: { children: JSX.Element } try { hasConnected.current = true - connect({ connector: connectors[0] }) + const miniPayConnectorInstance = connectors.find((c) => c.id === 'minipay') + if (miniPayConnectorInstance) { + connect({ connector: miniPayConnectorInstance }) + } } catch (error) { - console.error('MiniPay connection failed:', error) + console.error('MiniPay auto-connect failed:', error) hasConnected.current = false } } void attemptConnect() - }, [connect, connectors]) + }, [address, connect, connectors]) useEffect(() => { - // re-identify analytics when connected wallet changes if (initialized && address) { identify(address) } }, [initialized, address, identify]) - // if the account context isn't active, and there's an error on the network context, it's an irrecoverable error if (!initialized && networkError) { return ( diff --git a/src/index.tsx b/src/index.tsx index c5eddf123..0e3552bb0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -69,6 +69,13 @@ const GlobalStyle = createGlobalStyle` width: 120px; height: auto; } + + appkit-wallet-button[data-wallet-id="minipay"], + appkit-wallet-button:has([data-wallet-name*="MiniPay" i]), + button[data-wallet-id="minipay"], + button:has([data-wallet-name*="MiniPay" i]) { + display: none !important; + } ` const enableHttpsRedirect = String(process.env.REACT_APP_ENABLE_HTTPS_REDIRECT) === '1' diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 07ce04c35..93a0d284e 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -3165,7 +3165,7 @@ msgstr "op die" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index d0deb43f7..feef6d83d 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -3165,7 +3165,7 @@ msgstr "على" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 1386f7965..f86c32fc4 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index c2459acb3..cfdeb7151 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 00ac98c78..b5ee3420b 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index d3b0f8048..590514c24 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -3165,7 +3165,7 @@ msgstr "auf der" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hoppla! Ein unbekannter Fehler ist aufgetreten. Bitte aktualisieren Sie die Seite oder besuchen Sie sie von einem anderen Browser oder Gerät aus" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index beac5fbd7..650ea4d11 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 0cefb20c0..a6ba12dc5 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 617578837..f0ec4535b 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -501,7 +501,7 @@ msgstr "" msgid "on the" msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index d685a21f0..491213f2e 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sobre el" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 8522ea95b..55384192d 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 0b8ebe690..72956bcb3 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 84cb65c80..8aad4e31b 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -3165,7 +3165,7 @@ msgstr "על ה" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 0f676353a..10e283662 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1920,7 +1920,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index ee054353c..f704653ba 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 5070e9c1f..4dccae882 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -3165,7 +3165,7 @@ msgstr "sul" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 8511e9584..28779d547 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index 729b2fcdd..184bc4f5b 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index b8f05df54..c426ec0ab 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 5454914d8..c95fe0bc2 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index aa949f07d..05e988d59 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 0171e7f10..97cc39789 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index f20b8b524..ca00f49aa 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index b09590428..9fb6ccaa2 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -3165,7 +3165,7 @@ msgstr "pe" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Hopa! O eroare necunoscută s-a întamplat. Vă rugăm să reîmprospătați pagina sau să vizitați un alt browser sau dispozitiv" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index dfc2ed847..fe2b6f98a 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -3165,7 +3165,7 @@ msgstr "на" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index a90fb0993..f2207ef79 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 9397ad89a..d974aa81b 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index fdea9e860..1839787ef 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index d1dccd0ff..23fde1ad2 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -3165,7 +3165,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index d157c8bb8..cee438f67 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -3165,7 +3165,7 @@ msgstr "trên" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Giáo sư! Đã xảy ra lỗi không xác định. Vui lòng làm mới trang hoặc truy cập từ trình duyệt hoặc thiết bị khác" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 59378c19d..35c9ffbb3 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在这一点" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index fc728eeee..4deaaa769 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -3165,7 +3165,7 @@ msgstr "在這一點" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 428adec1f..36ca18705 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2636,7 +2636,7 @@ msgstr "" #~ "Please be patient, loading information in the Swap widget may take some time. Thanks for waiting!" #~ msgstr "" -#: src/components/Web3ReactManager/index.tsx:79 +#: src/components/Web3ReactManager/index.tsx:86 msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" diff --git a/src/reown/reownprovider.tsx b/src/reown/reownprovider.tsx index 2b63fb274..81bf2cf4f 100644 --- a/src/reown/reownprovider.tsx +++ b/src/reown/reownprovider.tsx @@ -9,10 +9,11 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { WagmiAdapter } from '@reown/appkit-adapter-wagmi' import { injected, coinbaseWallet } from 'wagmi/connectors' import { APPKIT_FEATURED_WALLET_IDS, APPKIT_SOCIAL_PROVIDER_IDS } from 'utils/walletConfig' -import { miniPayConnector } from './minipayConnector' import { SupportedChains } from '@gooddollar/web3sdk-v2' import { getEnv } from 'utils/env' import { sample } from 'lodash' +import { getMiniPayProvider } from 'utils/minipay' +import { miniPayConnector } from './minipayConnector' const queryClient = new QueryClient() @@ -120,15 +121,30 @@ if (allowedChains.length === 0) { const networks = allowedChains.map(mapSupportedChainToReownNetwork) as [AppKitNetwork, ...AppKitNetwork[]] const baseConnectors = [ - miniPayConnector(), - injected(), + injected({ + target() { + if (typeof window === 'undefined') return undefined + const ethereum = (window as any).ethereum + if (!ethereum) return undefined + + const miniPayProvider = getMiniPayProvider() + + if (Array.isArray(ethereum.providers)) { + const nonMiniPayProvider = ethereum.providers.find((provider: any) => provider !== miniPayProvider) + return nonMiniPayProvider || (miniPayProvider ? undefined : ethereum.providers[0]) + } + + return ethereum === miniPayProvider ? undefined : ethereum + }, + }), coinbaseWallet({ appName: 'GoodProtocolUI', appLogoUrl: '', }), ] -const connectors = [...baseConnectors] +const connectors = + typeof window !== 'undefined' && getMiniPayProvider() ? [miniPayConnector(), ...baseConnectors] : baseConnectors const wagmiAdapter = new WagmiAdapter({ networks,