From be761cb5a3bac1fe491e411efbf23e76a23835d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 11:30:26 +0000 Subject: [PATCH 1/7] Initial plan From dd834ca49abc55d2f3242f1eb400a3d24e90ad29 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 12:37:58 +0000 Subject: [PATCH 2/7] feat: add fuse governance migration prompt on stake and savings --- .../FuseGovernanceMigrationPrompt/index.tsx | 174 ++++++++++++++++++ src/hooks/useFuseGovernanceStake.ts | 42 +++++ src/pages/gd/Savings/index.tsx | 2 + src/pages/gd/Stake/index.tsx | 2 + 4 files changed, 220 insertions(+) create mode 100644 src/components/FuseGovernanceMigrationPrompt/index.tsx create mode 100644 src/hooks/useFuseGovernanceStake.ts diff --git a/src/components/FuseGovernanceMigrationPrompt/index.tsx b/src/components/FuseGovernanceMigrationPrompt/index.tsx new file mode 100644 index 000000000..aaadb39c4 --- /dev/null +++ b/src/components/FuseGovernanceMigrationPrompt/index.tsx @@ -0,0 +1,174 @@ +import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react' +import { t } from '@lingui/macro' +import { useLingui } from '@lingui/react' +import styled from 'styled-components' +import Modal from 'components/Modal' +import Title from 'components/gd/Title' +import { ButtonAction } from 'components/gd/Button' +import useSendAnalyticsData from 'hooks/useSendAnalyticsData' +import useFuseGovernanceStake from 'hooks/useFuseGovernanceStake' +import { useAppKitAccount } from '@reown/appkit/react' +import { useHistory } from 'react-router-dom' + +type Step = 'summary' | 'bridge' | 'success' + +const Popover = styled.div` + margin: 12px 0 20px; + border: 1px solid ${({ theme }) => theme.color.border2}; + background: ${({ theme }) => theme.color.main}; + color: ${({ theme }) => theme.color.text1}; + border-radius: 10px; + padding: 12px; + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; +` + +const ModalContent = styled.div` + padding: 16px; + max-width: 520px; + + .actions { + display: flex; + gap: 8px; + margin-top: 16px; + flex-wrap: wrap; + } +` + +export default function FuseGovernanceMigrationPrompt() { + const { i18n } = useLingui() + const { address } = useAppKitAccount() + const sendData = useSendAnalyticsData() + const history = useHistory() + const { stakeAmount, hasStake, loading, refetch } = useFuseGovernanceStake() + const [isOpen, setIsOpen] = useState(false) + const [step, setStep] = useState('summary') + const [completed, setCompleted] = useState(false) + const shownRef = useRef() + + const showPrompt = useMemo(() => hasStake && !completed, [hasStake, completed]) + + useEffect(() => { + if (!address) { + setCompleted(false) + setIsOpen(false) + setStep('summary') + shownRef.current = undefined + } + }, [address]) + + useEffect(() => { + if (showPrompt && address && shownRef.current !== address) { + sendData({ event: 'stake_migration', action: 'prompt_shown', network: 'fuse' }) + shownRef.current = address + } + }, [showPrompt, address, sendData]) + + useEffect(() => { + if (isOpen && step !== 'summary' && !loading && !hasStake) { + setStep('success') + setCompleted(true) + sendData({ event: 'stake_migration', action: 'step_success', network: 'fuse' }) + } + }, [isOpen, step, loading, hasStake, sendData]) + + const openModal = useCallback(() => { + setIsOpen(true) + setStep('summary') + sendData({ event: 'stake_migration', action: 'prompt_migrate_click', network: 'fuse' }) + }, [sendData]) + + const onDismiss = useCallback(() => { + setIsOpen(false) + if (step === 'success') { + setCompleted(true) + } + }, [step]) + + const onContinue = useCallback(() => { + setStep('bridge') + sendData({ event: 'stake_migration', action: 'step_summary_continue', network: 'fuse' }) + }, [sendData]) + + const onOpenBridge = useCallback(() => { + history.push('/microbridge') + sendData({ event: 'stake_migration', action: 'step_bridge_open', network: 'fuse' }) + }, [history, sendData]) + + const onCheckStatus = useCallback(() => { + sendData({ event: 'stake_migration', action: 'step_bridge_check', network: 'fuse' }) + refetch() + }, [refetch, sendData]) + + if (!showPrompt && !(isOpen && step === 'success')) { + return null + } + + return ( + <> + {showPrompt && ( + +
+ {i18n._( + t`You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning.` + )} +
+ + {i18n._(t`Migrate`)} + +
+ )} + + + + + {step === 'summary' + ? i18n._(t`Migrate Fuse stake`) + : step === 'bridge' + ? i18n._(t`Bridge and verify`) + : i18n._(t`Migration complete`)} + + + {step === 'summary' && ( + <> +
+ {i18n._( + t`You currently have ${stakeAmount.toFixed( + 2 + )} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings.` + )} +
+
+ + {i18n._(t`Continue`)} + +
+ + )} + + {step === 'bridge' && ( + <> +
+ {i18n._( + t`Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero.` + )} +
+
+ + {i18n._(t`Open Bridge`)} + + + {loading ? i18n._(t`Checking...`) : i18n._(t`I migrated, check status`)} + +
+ + )} + + {step === 'success' &&
{i18n._(t`Success! Your Fuse governance stake is now zero.`)}
} +
+
+ + ) +} diff --git a/src/hooks/useFuseGovernanceStake.ts b/src/hooks/useFuseGovernanceStake.ts new file mode 100644 index 000000000..88cf03286 --- /dev/null +++ b/src/hooks/useFuseGovernanceStake.ts @@ -0,0 +1,42 @@ +import { useMemo } from 'react' +import usePromise from 'hooks/usePromise' +import useInterval from 'hooks/useInterval' +import { useAppKitAccount } from '@reown/appkit/react' +import { DAO_NETWORK, LIQUIDITY_PROTOCOL, getMyList, useEnvWeb3, useGdContextProvider } from '@gooddollar/web3sdk' +import { useG$Price } from '@gooddollar/web3sdk-v2' + +export default function useFuseGovernanceStake() { + const { address } = useAppKitAccount() + const { web3 } = useGdContextProvider() + const [mainnetWeb3] = useEnvWeb3(DAO_NETWORK.MAINNET, web3) + const [fuseWeb3] = useEnvWeb3(DAO_NETWORK.FUSE, web3) + const gdPrice = useG$Price() + + const [stakeAmount = 0, loading, error, refetch] = usePromise(async () => { + if (!address || !mainnetWeb3 || !fuseWeb3) return 0 + + const stakes = await getMyList(mainnetWeb3, fuseWeb3, address, gdPrice) + return stakes + .filter((stake) => stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO) + .reduce((sum, stake) => sum + parseFloat(stake.stake.amount.toExact()), 0) + }, [address, mainnetWeb3, fuseWeb3, gdPrice]) + + useInterval( + () => { + refetch() + }, + address ? 30000 : null, + false + ) + + return useMemo( + () => ({ + stakeAmount, + hasStake: stakeAmount > 0, + loading, + error, + refetch, + }), + [stakeAmount, loading, error, refetch] + ) +} diff --git a/src/pages/gd/Savings/index.tsx b/src/pages/gd/Savings/index.tsx index d6cc17f1b..ce138512c 100644 --- a/src/pages/gd/Savings/index.tsx +++ b/src/pages/gd/Savings/index.tsx @@ -3,6 +3,7 @@ import { useEffect, useRef, useCallback } from 'react' import { useAppKit, useAppKitAccount, useAppKitProvider } from '@reown/appkit/react' import type { Provider } from '@reown/appkit/react' import { PageLayout } from 'components/Layout/PageLayout' +import FuseGovernanceMigrationPrompt from 'components/FuseGovernanceMigrationPrompt' export default function Savings() { const widgetRef = useRef< @@ -35,6 +36,7 @@ export default function Savings() { return ( + ) diff --git a/src/pages/gd/Stake/index.tsx b/src/pages/gd/Stake/index.tsx index c1d04bde7..541e46bf1 100644 --- a/src/pages/gd/Stake/index.tsx +++ b/src/pages/gd/Stake/index.tsx @@ -18,6 +18,7 @@ import { Savings } from './Savings' import { disableTestnetMain } from 'constants/index' import AppNotice from 'components/AppNotice' import { ButtonOutlined } from 'components/ButtonLegacy' +import FuseGovernanceMigrationPrompt from 'components/FuseGovernanceMigrationPrompt' import { LIQUIDITY_PROTOCOL, @@ -469,6 +470,7 @@ export default function Stakes(): JSX.Element | null { {' '} + {!mainnetStakesEnabled && ( <> Date: Tue, 26 May 2026 12:41:09 +0000 Subject: [PATCH 3/7] chore: finalize validation for issue 640 --- src/language/locales/af/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ar/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ca/catalog.po | 94 +++++++++++++++++++------- src/language/locales/cs/catalog.po | 94 +++++++++++++++++++------- src/language/locales/da/catalog.po | 94 +++++++++++++++++++------- src/language/locales/de/catalog.po | 94 +++++++++++++++++++------- src/language/locales/el/catalog.po | 94 +++++++++++++++++++------- src/language/locales/en/catalog.po | 94 +++++++++++++++++++------- src/language/locales/es-419/catalog.po | 94 +++++++++++++++++++------- src/language/locales/es/catalog.po | 94 +++++++++++++++++++------- src/language/locales/fi/catalog.po | 94 +++++++++++++++++++------- src/language/locales/fr/catalog.po | 94 +++++++++++++++++++------- src/language/locales/he/catalog.po | 94 +++++++++++++++++++------- src/language/locales/hi/catalog.po | 94 +++++++++++++++++++------- src/language/locales/hu/catalog.po | 94 +++++++++++++++++++------- src/language/locales/it/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ja/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ko/catalog.po | 94 +++++++++++++++++++------- src/language/locales/nl/catalog.po | 94 +++++++++++++++++++------- src/language/locales/no/catalog.po | 94 +++++++++++++++++++------- src/language/locales/pl/catalog.po | 94 +++++++++++++++++++------- src/language/locales/pt-BR/catalog.po | 94 +++++++++++++++++++------- src/language/locales/pt/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ro/catalog.po | 94 +++++++++++++++++++------- src/language/locales/ru/catalog.po | 94 +++++++++++++++++++------- src/language/locales/sr/catalog.po | 94 +++++++++++++++++++------- src/language/locales/sv/catalog.po | 94 +++++++++++++++++++------- src/language/locales/tr/catalog.po | 94 +++++++++++++++++++------- src/language/locales/uk/catalog.po | 94 +++++++++++++++++++------- src/language/locales/vi/catalog.po | 94 +++++++++++++++++++------- src/language/locales/zh-CN/catalog.po | 94 +++++++++++++++++++------- src/language/locales/zh-TW/catalog.po | 94 +++++++++++++++++++------- src/language/locales/zh/catalog.po | 94 +++++++++++++++++++------- 33 files changed, 2343 insertions(+), 759 deletions(-) diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index bb295670d..a3b777151 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Rekening" msgid "amount" msgstr "bedrag" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Goedkeuring" msgid "APPROVING" msgstr "GOEDKEURING" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Balans" msgid "Blocked address" msgstr "Geblokkeerde adres" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Verander" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Verbind met" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Hoeveel wil jy deponeer?" msgid "How much would you like to withdraw?" msgstr "Hoeveel wil jy onttrek?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "Likiditeit" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Likiditeit Verskaffer" msgid "loading..." msgstr "laai..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Laai..." @@ -3133,6 +3149,18 @@ msgstr "maksimum" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Netwerk Fooi" msgid "Next month:" msgstr "Volgende maand:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Geen data." @@ -3194,6 +3222,10 @@ msgstr "op die" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Open hoofkieslys" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokol" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Glip Verdraagsaamheid" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "Sukses!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Hierdie maand" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Teken" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Jy sal ontvang:" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 974bf25aa..dcd718af3 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2713,7 +2713,7 @@ msgstr "الحساب" msgid "amount" msgstr "مبلغ" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "الموافقة" msgid "APPROVING" msgstr "الموافقة" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "توازن" msgid "Blocked address" msgstr "عنوان محظور" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "تغيير" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "متصل بـ" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "كم تريد إيداعها؟" msgid "How much would you like to withdraw?" msgstr "كم ترغب في الانسحاب؟" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "السيولة" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "رسوم مزود السيولة" msgid "loading..." msgstr "تحميل..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "تحميل..." @@ -3133,6 +3149,18 @@ msgstr "ماكس" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "رسوم الشبكة" msgid "Next month:" msgstr "الشهر المقبل:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "لا توجد بيانات." @@ -3194,6 +3222,10 @@ msgstr "على" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "القائمة الرئيسية المفتوحة" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "بروتوكول" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "تسامح الانزلاق" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "حصة" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "النجاح!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "هذا هو البروتوكول الذي تم وضع الرمز المميز عليه." -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "هذا الشهر" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "الرمز المميز" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "سوف تتلقى:" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 049f91c82..f73d9641f 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Aprovació" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index d0c98e847..ac1cf2f7b 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 95b3bd8a5..0da5f3489 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index d7175a49b..33907ce63 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Konto" msgid "amount" msgstr "betragen" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Genehmigen" msgid "APPROVING" msgstr "Genehmigen" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Gleichgewicht" msgid "Blocked address" msgstr "Blockierte Adresse" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Ändern" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Verbunden mit" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Wie viel möchten Sie einlädigen?" msgid "How much would you like to withdraw?" msgstr "Wie viel möchten Sie zurückziehen?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Liquiditätsanbietergebühr" msgid "loading..." msgstr "Wird geladen..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Wird geladen..." @@ -3133,6 +3149,18 @@ msgstr "Max" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Netzwerkgebühr" msgid "Next month:" msgstr "Nächsten Monat:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Keine Daten." @@ -3194,6 +3222,10 @@ msgstr "auf der" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Hauptmenü öffnen" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protokoll" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Schlupftoleranz" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Anteil" @@ -3358,6 +3390,10 @@ msgstr "Ab 1.0 steigt Ihr Multiplikator nach einem Monat nach einem Monat zum Ve msgid "Success!" msgstr "Erfolg!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Diesen Monat" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Zeichen" @@ -3538,7 +3574,7 @@ msgstr "Gesamtbetrag auf wertberührt." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Du wirst erhalten:" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index ce63275a1..9cc9d89d0 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 12725f82a..ef6053913 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 75652452b..1867c4de8 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -75,7 +75,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -103,7 +103,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -125,6 +125,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -146,6 +150,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -274,6 +282,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -377,7 +389,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -401,8 +413,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -442,16 +454,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -465,8 +481,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -479,6 +495,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -517,8 +545,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -530,6 +558,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -579,7 +611,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -649,7 +681,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -657,10 +689,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -690,6 +722,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -802,11 +838,11 @@ msgstr "" msgid "The total of your deposits which accumulates the rewards." msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -815,11 +851,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -840,7 +876,7 @@ msgid "This month" msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -858,7 +894,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -917,6 +953,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -1010,6 +1050,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -1032,6 +1076,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 761c7da83..5abf61891 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Cuenta" msgid "amount" msgstr "Monto" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Aprobatorio" msgid "APPROVING" msgstr "APROBATORIA" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Equilibrio" msgid "Blocked address" msgstr "Dirección bloqueada" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Cambio" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Conectado con" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "¿Cuánto te gustaría depositar?" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Tarifa de proveedor de liquidez" msgid "loading..." msgstr "cargando..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Cargando..." @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Cuota de red" msgid "Next month:" msgstr "Próximo mes:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Sin datos." @@ -3194,6 +3222,10 @@ msgstr "sobre el" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abrir menú principal" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocolo" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolerancia al deslizamiento" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Apostar" @@ -3358,6 +3390,10 @@ msgstr "A partir de 1.0, su multiplicador aumentará a 2.0 después de un mes de msgid "Success!" msgstr "¡Éxito!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Este mes" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Simbólico" @@ -3538,7 +3574,7 @@ msgstr "Cantidad total en valor estancado." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Usted recibirá:" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index cf1185778..0cbc6a5d1 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index abef5076c..369608b47 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Approbation en cours" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Solde" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "Liquidité" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Frais de fournisseur de liquidité" msgid "loading..." msgstr "Chargement en cours..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Chargement..." @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Ouvrir le menu principal" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolérance de slippage" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Staker" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 7c758ef3c..3f8496c68 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2713,7 +2713,7 @@ msgstr "חֶשְׁבּוֹן" msgid "amount" msgstr "כמות" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "אישור" msgid "APPROVING" msgstr "אישור" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "יתרה" msgid "Blocked address" msgstr "כתובת חסומה" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "שינוי" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "מחובר עם" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "כמה אתה רוצה להפקיד?" msgid "How much would you like to withdraw?" msgstr "כמה אתה רוצה לסגת?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "נזילות" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "דמי ספק נזילות" msgid "loading..." msgstr "טוען..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "טוען..." @@ -3133,6 +3149,18 @@ msgstr "מקס" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "דמי רשת" msgid "Next month:" msgstr "חודש הבא:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "אין מידע." @@ -3194,6 +3222,10 @@ msgstr "על ה" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "פתח תפריט ראשי" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "נוהל" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "תנודת מחיר מקובלת" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "יתד" @@ -3358,6 +3390,10 @@ msgstr "החל מ 1.0, מכפיל שלך יגדל ל 2.0 לאחר חודש אח msgid "Success!" msgstr "הַצלָחָה!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "זהו הפרוטוקול כי האסימון הוא staked." -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "החודש" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "אסימון" @@ -3538,7 +3574,7 @@ msgstr "הסכום הכולל על ערך staked." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "אתה תקבל:" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 620da888f..4a0bfa43f 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1468,7 +1468,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -1496,7 +1496,7 @@ msgstr "का अनुमोदन" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -1518,6 +1518,10 @@ msgstr "संतुलन" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -1539,6 +1543,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -1671,6 +1679,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -1782,7 +1794,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -1806,8 +1818,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -1851,16 +1863,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "लिक्विडिटी" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -1874,8 +1890,8 @@ msgstr "तरलता प्रदाता शुल्क" msgid "loading..." msgstr "लोड हो रहा है..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "लोड हो रहा है..." @@ -1888,6 +1904,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -1930,8 +1958,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -1949,6 +1977,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "मुख्य मेनू खोलें" @@ -2002,7 +2034,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -2072,7 +2104,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "स्लिपेज टॉलरेंस" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -2080,10 +2112,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "दाँव" @@ -2113,6 +2145,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -2233,11 +2269,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -2246,11 +2282,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -2275,7 +2311,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "टोकन" @@ -2293,7 +2329,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -2352,6 +2388,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -2473,6 +2513,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -2495,6 +2539,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index e26d939c8..b14e1dc98 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 85e4d4040..8b5a3c84d 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "Quantità" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Approvazione" msgid "APPROVING" msgstr "Approvazione" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Saldo" msgid "Blocked address" msgstr "Indirizzo bloccato" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Modificare" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Connesso con" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Quanto ti piacerebbe depositare?" msgid "How much would you like to withdraw?" msgstr "Quanto ti piacerebbe ritirare?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "Liquidità" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Commissione per fornitori di liquidità" msgid "loading..." msgstr "caricamento..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Caricamento..." @@ -3133,6 +3149,18 @@ msgstr "max." msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Tassa di rete" msgid "Next month:" msgstr "Il prossimo mese:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Nessun dato." @@ -3194,6 +3222,10 @@ msgstr "sul" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Apri menù principale" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Protocollo" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolleranza slippage" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Metti in staking" @@ -3358,6 +3390,10 @@ msgstr "A partire da 1,0, il tuo moltiplicatore aumenterà fino a 2.0 dopo un me msgid "Success!" msgstr "Successo!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Questo mese" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "Importo totale sul valore puntato." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Riceverai:" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index fd430756b..90e6a6e69 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "承認" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "残高" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "流動性プロバイダー手数料" msgid "loading..." msgstr "読み込み中..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "読み込んでいます..." @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "メインメニューを開く" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "スリッページ許容値" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "ステーク" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "トークン" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index fc4172e22..d9d04199a 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "승인" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "밸런스" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "유동성" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "유동성 제공자 수수료" msgid "loading..." msgstr "로드 중 ..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "로드 중 ..." @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "메인 메뉴 열기" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "미끄러짐 공차" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "말뚝" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "토큰" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 1ffb47d85..d5f36baf6 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 0decf2c86..2db15e792 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 4e9cab36f..859c9c81a 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 5bad56f4f..46b21a90c 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Aprovando" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Equilíbrio" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "Liquidez" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Taxa do provedor de liquidez" msgid "loading..." msgstr "carregando..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Carregando..." @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Abra o menu principal" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Tolerância de deslizamento" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Estaca" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Símbolo" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 9acada77b..600481257 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 94535ae93..64a213bef 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Cont" msgid "amount" msgstr "Cantitate" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Aprobând" msgid "APPROVING" msgstr "Aprobând." -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Echilibru" msgid "Blocked address" msgstr "Adresa blocată" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Schimbare" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Conectat cu" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Cât de mult doriți să depuneți?" msgid "How much would you like to withdraw?" msgstr "Cât de mult doriți să vă retrageți?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Taxa furnizorului de lichiditate" msgid "loading..." msgstr "Se încarcă..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Se încarcă..." @@ -3133,6 +3149,18 @@ msgstr "Max." msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Taxa de rețea" msgid "Next month:" msgstr "Luna viitoare:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Nu există date." @@ -3194,6 +3222,10 @@ msgstr "pe" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Deschideți meniul principal" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Toleranță la alunecare" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Miza" @@ -3358,6 +3390,10 @@ msgstr "Începând cu 1.0, multiplicatorul dvs. va crește la 2.0 după o lună msgid "Success!" msgstr "Succes!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Luna aceasta" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Jeton" @@ -3538,7 +3574,7 @@ msgstr "Suma totală pe valoarea stabilită." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Vei primi:" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index ae63e2b57..611c55bff 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Счет" msgid "amount" msgstr "количество" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Утверждаю" msgid "APPROVING" msgstr "Одобрение" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Остаток средств" msgid "Blocked address" msgstr "Заблокированный адрес" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Изменять" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Связаны с" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Сколько вы хотели бы внести депозит?" msgid "How much would you like to withdraw?" msgstr "Сколько вы хотели бы выйти?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Комиссия поставщика ликвидности" msgid "loading..." msgstr "загрузка ..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Загружается ..." @@ -3133,6 +3149,18 @@ msgstr "Максимум" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Сетевая плата" msgid "Next month:" msgstr "В следующем месяце:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Нет данных." @@ -3194,6 +3222,10 @@ msgstr "на" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Открыть главное меню" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Протокол" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Допуск по проскальзыванию" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Ставка" @@ -3358,6 +3390,10 @@ msgstr "Начиная с 1.0, ваш множитель увеличится д msgid "Success!" msgstr "Успех!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "Это протокол о том, что токен поставлен." -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Этот месяц" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Токен" @@ -3538,7 +3574,7 @@ msgstr "Общая сумма по стоимости поставлена." msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Вы получите:" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 94e28bbfe..c7e05d746 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 8e20131c9..34c55eb7f 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 0e97c5bd4..91e90deb8 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 9734589d1..57186c6d4 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2713,7 +2713,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -3133,6 +3149,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -3194,6 +3222,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -3358,6 +3390,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3538,7 +3574,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index d09a69af5..0921044fe 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2713,7 +2713,7 @@ msgstr "Tài khoản" msgid "amount" msgstr "số lượng" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "Phê duyệt" msgid "APPROVING" msgstr "Phê duyệt" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "Thăng bằng" msgid "Blocked address" msgstr "Địa chỉ bị chặn" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "Thay đổi" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "Kết nối với" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "Bạn muốn gửi bao nhiêu tiền?" msgid "How much would you like to withdraw?" msgstr "Bạn muốn rút bao nhiêu tiền?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "Phí nhà cung cấp thanh khoản" msgid "loading..." msgstr "Đang tải..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "Đang tải..." @@ -3133,6 +3149,18 @@ msgstr "tối đa" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "Phí mạng" msgid "Next month:" msgstr "Tháng tiếp theo:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "Không có dữ liệu." @@ -3194,6 +3222,10 @@ msgstr "trên" 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/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "Mở menu chính" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "Giao thức" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "Khả năng chịu trượt" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "Cổ phần" @@ -3358,6 +3390,10 @@ msgstr "Bắt đầu từ 1.0, hệ số nhân của bạn sẽ tăng lên 2.0 s msgid "Success!" msgstr "Sự thành công!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,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:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "Tháng này" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "Mã thông báo" @@ -3538,7 +3574,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:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ 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/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "Bạn sẽ nhận:" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 47167b242..c19d629a5 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2713,7 +2713,7 @@ msgstr "帐户" msgid "amount" msgstr "数量" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "批准中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "余额" msgid "Blocked address" msgstr "被封锁的地址" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "改变" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "与" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "你想存入多少钱?" msgid "How much would you like to withdraw?" msgstr "你想退出多少钱?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "流动性" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "LP奖励" msgid "loading..." msgstr "载入中..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "载入中..." @@ -3133,6 +3149,18 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "网络费用" msgid "Next month:" msgstr "下个月:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "没有数据。" @@ -3194,6 +3222,10 @@ msgstr "在这一点" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打开主菜单" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "协议" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "可容忍滑点" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "质押" @@ -3358,6 +3390,10 @@ msgstr "从1.0开始,您的乘数将增加到2.0,在一个月的绑定到信 msgid "Success!" msgstr "成功!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "这是令牌赌注的协议。" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "这个月" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代币" @@ -3538,7 +3574,7 @@ msgstr "价值总额托出来。" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您将收到:" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index bae442fad..a5e3c6740 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2713,7 +2713,7 @@ msgstr "帳戶" msgid "amount" msgstr "數量" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2741,7 +2741,7 @@ msgstr "批準中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2763,10 @@ msgstr "餘額" msgid "Blocked address" msgstr "被封鎖的地址" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2784,6 +2788,10 @@ msgstr "" msgid "Change" msgstr "改變" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2916,6 +2924,10 @@ msgstr "" msgid "Connected with" msgstr "與" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -3027,7 +3039,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -3051,8 +3063,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -3096,16 +3108,20 @@ msgstr "你想存入多少錢?" msgid "How much would you like to withdraw?" msgstr "你想退出多少錢?" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "流動性" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -3119,8 +3135,8 @@ msgstr "LP獎勵" msgid "loading..." msgstr "載入中..." -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "載入中..." @@ -3133,6 +3149,18 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3203,8 @@ msgstr "網絡費用" msgid "Next month:" msgstr "下個月:" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "沒有數據。" @@ -3194,6 +3222,10 @@ msgstr "在這一點" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "打開主菜單" @@ -3247,7 +3279,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "協議" @@ -3317,7 +3349,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "可容忍滑點" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -3325,10 +3357,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "質押" @@ -3358,6 +3390,10 @@ msgstr "從1.0開始,您的乘數將增加到2.0,在一個月的綁定到信 msgid "Success!" msgstr "成功!" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -3478,11 +3514,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -3491,11 +3527,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "這是令牌賭注的協議。" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -3520,7 +3556,7 @@ msgstr "這個月" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "代幣" @@ -3538,7 +3574,7 @@ msgstr "價值總額托出來。" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3597,6 +3633,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3718,6 +3758,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3784,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "您將收到:" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 26a10f5b8..2c633de29 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2184,7 +2184,7 @@ msgstr "" msgid "amount" msgstr "" -#: src/pages/gd/Stake/index.tsx:78 +#: src/pages/gd/Stake/index.tsx:79 msgid "Annual Percentage Yield (APY) is the percentage yield being earned." msgstr "" @@ -2212,7 +2212,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2234,6 +2234,10 @@ msgstr "" msgid "Blocked address" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 +msgid "Bridge and verify" +msgstr "" + #: src/components/SideBar.tsx:124 msgid "Buy G$" msgstr "" @@ -2255,6 +2259,10 @@ msgstr "" msgid "Change" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "Checking..." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." msgstr "" @@ -2387,6 +2395,10 @@ msgstr "" msgid "Connected with" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 +msgid "Continue" +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" #~ "Convert your digital assets using the Uniswap protocol! \n" @@ -2498,7 +2510,7 @@ msgstr "" msgid "GoodDAO" msgstr "" -#: src/pages/gd/Stake/index.tsx:508 +#: src/pages/gd/Stake/index.tsx:510 msgid "GoodDAO Staking" msgstr "" @@ -2522,8 +2534,8 @@ msgstr "" msgid "GoodDollars on {0}" msgstr "" -#: src/pages/gd/Stake/index.tsx:482 -#: src/pages/gd/Stake/index.tsx:486 +#: src/pages/gd/Stake/index.tsx:484 +#: src/pages/gd/Stake/index.tsx:488 msgid "GoodStakes" msgstr "" @@ -2567,16 +2579,20 @@ msgstr "" msgid "How much would you like to withdraw?" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 +msgid "I migrated, check status" +msgstr "" + #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" msgstr "" -#: src/pages/gd/Stake/index.tsx:85 +#: src/pages/gd/Stake/index.tsx:86 #: src/pages/gd/Swap/index.tsx:90 msgid "Liquidity" msgstr "" -#: src/pages/gd/Stake/index.tsx:86 +#: src/pages/gd/Stake/index.tsx:87 msgid "Liquidity is the total value staked in the GoodDollar Trust staking contract (USD)." msgstr "" @@ -2590,8 +2606,8 @@ msgstr "" msgid "loading..." msgstr "" -#: src/pages/gd/Stake/index.tsx:101 -#: src/pages/gd/Stake/index.tsx:289 +#: src/pages/gd/Stake/index.tsx:102 +#: src/pages/gd/Stake/index.tsx:290 msgid "Loading..." msgstr "" @@ -2604,6 +2620,18 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +msgid "Migration complete" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -2646,8 +2674,8 @@ msgstr "" msgid "Next month:" msgstr "" -#: src/pages/gd/Stake/index.tsx:106 -#: src/pages/gd/Stake/index.tsx:296 +#: src/pages/gd/Stake/index.tsx:107 +#: src/pages/gd/Stake/index.tsx:297 msgid "No data." msgstr "" @@ -2665,6 +2693,10 @@ msgstr "" msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Open Bridge" +msgstr "" + #: src/components/AppBar.tsx:342 msgid "Open main menu" msgstr "" @@ -2718,7 +2750,7 @@ msgid "Price slippage" msgstr "" #: src/components/Withdraw/index.tsx:146 -#: src/pages/gd/Stake/index.tsx:73 +#: src/pages/gd/Stake/index.tsx:74 #: src/pages/gd/Stake/Savings/index.tsx:110 msgid "Protocol" msgstr "" @@ -2788,7 +2820,7 @@ msgstr "" msgid "Slippage Tolerance" msgstr "" -#: src/pages/gd/Stake/index.tsx:81 +#: src/pages/gd/Stake/index.tsx:82 msgid "Social APY" msgstr "" @@ -2796,10 +2828,10 @@ msgstr "" msgid "Squid Router" msgstr "" -#: 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:482 +#: src/pages/gd/Stake/index.tsx:219 +#: src/pages/gd/Stake/index.tsx:326 +#: src/pages/gd/Stake/index.tsx:405 +#: src/pages/gd/Stake/index.tsx:484 msgid "Stake" msgstr "" @@ -2829,6 +2861,10 @@ msgstr "" msgid "Success!" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 +msgid "Success! Your Fuse governance stake is now zero." +msgstr "" + #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." msgstr "" @@ -2949,11 +2985,11 @@ msgstr "" #~ msgid "There has been a security breach. The app will be disabled until further notice" #~ msgstr "" -#: src/pages/gd/Stake/index.tsx:90 +#: src/pages/gd/Stake/index.tsx:91 msgid "These are the total yearly rewards in G$ and GOOD." msgstr "" -#: src/pages/gd/Stake/index.tsx:82 +#: src/pages/gd/Stake/index.tsx:83 msgid "This is the annual percentage of UBI your stake will create." msgstr "" @@ -2962,11 +2998,11 @@ msgstr "" msgid "This is the protocol that the token is staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:74 +#: src/pages/gd/Stake/index.tsx:75 msgid "This is the protocol that the token will be staked to." msgstr "" -#: src/pages/gd/Stake/index.tsx:70 +#: src/pages/gd/Stake/index.tsx:71 msgid "This is the token that is currently available to stake to the Fund." msgstr "" @@ -2991,7 +3027,7 @@ msgstr "" #~ msgstr "" #: src/components/Withdraw/index.tsx:142 -#: src/pages/gd/Stake/index.tsx:69 +#: src/pages/gd/Stake/index.tsx:70 #: src/pages/gd/Stake/Savings/index.tsx:105 msgid "Token" msgstr "" @@ -3009,7 +3045,7 @@ msgstr "" msgid "Total currently saved." msgstr "" -#: src/pages/gd/Stake/index.tsx:89 +#: src/pages/gd/Stake/index.tsx:90 msgid "Total Rewards" msgstr "" @@ -3068,6 +3104,10 @@ msgstr "" msgid "Unsupported network" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 +msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +msgstr "" + #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." msgstr "" @@ -3189,6 +3229,10 @@ msgstr "" #~ msgid "You can collect G$ on {supportedChainsDisplay}." #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 +msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +msgstr "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3211,6 +3255,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." +msgstr "" + #: src/components/Liquidity/RemoveLiquidityReceiveDetails.tsx:43 msgid "You Will Receive:" msgstr "" From e2e91826a258441b9c97edb20d1caf7d6d78df10 Mon Sep 17 00:00:00 2001 From: blueogin Date: Tue, 26 May 2026 11:09:31 -0400 Subject: [PATCH 4/7] chore: update .gitignore and add skills-lock.json for skill management --- .gitignore | 5 ++++- skills-lock.json | 11 +++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 skills-lock.json diff --git a/.gitignore b/.gitignore index bf87c64f2..aad745489 100644 --- a/.gitignore +++ b/.gitignore @@ -58,4 +58,7 @@ yalc.lock analice.html e2e.log codex-resume -.bounties \ No newline at end of file +.bounties + +.agents +./skills-lock.json \ No newline at end of file diff --git a/skills-lock.json b/skills-lock.json new file mode 100644 index 000000000..301348ba4 --- /dev/null +++ b/skills-lock.json @@ -0,0 +1,11 @@ +{ + "version": 1, + "skills": { + "gooddollar": { + "source": "gooddollar/goodskills", + "sourceType": "github", + "skillPath": "skills/gooddollar/SKILL.md", + "computedHash": "d5f8cc5079f386e7170925e61214fb3334176aa6d0fc6bdc50400e535692b377" + } + } +} From 335d81e4e78f8406c61abb1ffb436c80dd98317b Mon Sep 17 00:00:00 2001 From: blueogin Date: Tue, 26 May 2026 11:31:44 -0400 Subject: [PATCH 5/7] feat: enhance Fuse governance migration prompt with new API integration and improved UI components --- .env.example | 3 + .../FuseGovernanceMigrationPrompt/index.tsx | 238 +++++++++++++----- src/constants/stakeMigration.ts | 36 +++ src/hooks/useStakeMigration.ts | 135 ++++++++++ src/language/locales/af/catalog.po | 94 +++++-- src/language/locales/ar/catalog.po | 94 +++++-- src/language/locales/ca/catalog.po | 94 +++++-- src/language/locales/cs/catalog.po | 94 +++++-- src/language/locales/da/catalog.po | 94 +++++-- src/language/locales/de/catalog.po | 94 +++++-- src/language/locales/el/catalog.po | 94 +++++-- src/language/locales/en/catalog.po | 94 +++++-- src/language/locales/es-419/catalog.po | 94 +++++-- src/language/locales/es/catalog.po | 94 +++++-- src/language/locales/fi/catalog.po | 94 +++++-- src/language/locales/fr/catalog.po | 94 +++++-- src/language/locales/he/catalog.po | 94 +++++-- src/language/locales/hi/catalog.po | 94 +++++-- src/language/locales/hu/catalog.po | 94 +++++-- src/language/locales/it/catalog.po | 94 +++++-- src/language/locales/ja/catalog.po | 94 +++++-- src/language/locales/ko/catalog.po | 94 +++++-- src/language/locales/nl/catalog.po | 94 +++++-- src/language/locales/no/catalog.po | 94 +++++-- src/language/locales/pl/catalog.po | 94 +++++-- src/language/locales/pt-BR/catalog.po | 94 +++++-- src/language/locales/pt/catalog.po | 94 +++++-- src/language/locales/ro/catalog.po | 94 +++++-- src/language/locales/ru/catalog.po | 94 +++++-- src/language/locales/sr/catalog.po | 94 +++++-- src/language/locales/sv/catalog.po | 94 +++++-- src/language/locales/tr/catalog.po | 94 +++++-- src/language/locales/uk/catalog.po | 94 +++++-- src/language/locales/vi/catalog.po | 94 +++++-- src/language/locales/zh-CN/catalog.po | 94 +++++-- src/language/locales/zh-TW/catalog.po | 94 +++++-- src/language/locales/zh/catalog.po | 94 +++++-- vite.config.ts | 3 + 38 files changed, 2823 insertions(+), 694 deletions(-) create mode 100644 src/constants/stakeMigration.ts create mode 100644 src/hooks/useStakeMigration.ts diff --git a/.env.example b/.env.example index abd40e043..c3634848b 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,9 @@ DISABLE_ESLINT_PLUGIN=true BROWSER=none REACT_APP_DATASTUDIO_DASHBOARD_URL= REACT_APP_NETWORK= +REACT_APP_STAKE_MIGRATION_OPERATOR= +REACT_APP_STAKE_MIGRATION_API_URL= +REACT_APP_STAKE_MIGRATION_API_TOKEN= REACT_APP_MAINNET_RPC= REACT_APP_FUSE_RPC= REACT_APP_CELO_RPC= diff --git a/src/components/FuseGovernanceMigrationPrompt/index.tsx b/src/components/FuseGovernanceMigrationPrompt/index.tsx index aaadb39c4..28c9ea13d 100644 --- a/src/components/FuseGovernanceMigrationPrompt/index.tsx +++ b/src/components/FuseGovernanceMigrationPrompt/index.tsx @@ -5,46 +5,96 @@ import styled from 'styled-components' import Modal from 'components/Modal' import Title from 'components/gd/Title' import { ButtonAction } from 'components/gd/Button' +import { ActionOrSwitchButton } from 'components/gd/Button/ActionOrSwitchButton' import useSendAnalyticsData from 'hooks/useSendAnalyticsData' -import useFuseGovernanceStake from 'hooks/useFuseGovernanceStake' +import useStakeMigration, { StakeMigrationPendingError } from 'hooks/useStakeMigration' import { useAppKitAccount } from '@reown/appkit/react' -import { useHistory } from 'react-router-dom' +import Loader from 'components/Loader' -type Step = 'summary' | 'bridge' | 'success' +type Step = 'summary' | 'migrating' | 'success' | 'error' -const Popover = styled.div` +const PopoverBanner = styled.div` margin: 12px 0 20px; border: 1px solid ${({ theme }) => theme.color.border2}; background: ${({ theme }) => theme.color.main}; - color: ${({ theme }) => theme.color.text1}; border-radius: 10px; - padding: 12px; + padding: 16px; display: flex; align-items: center; - justify-content: space-between; - gap: 12px; + gap: 16px; + + @media (max-width: 768px) { + flex-direction: column; + align-items: stretch; + } +` + +const PopoverText = styled.p` + margin: 0; + flex: 1; + min-width: 0; + font-size: 14px; + line-height: 1.5; + color: ${({ theme }) => theme.color.text2}; +` + +const PopoverCta = styled(ButtonAction)` + min-width: unset; + width: auto; + flex-shrink: 0; + padding: 0 24px; + white-space: nowrap; + + @media (max-width: 768px) { + width: 100%; + } ` const ModalContent = styled.div` - padding: 16px; + padding: 24px; max-width: 520px; + .body { + font-size: 14px; + line-height: 1.5; + color: ${({ theme }) => theme.color.text2}; + } + + .error { + color: ${({ theme }) => theme.red1}; + font-size: 14px; + margin-top: 8px; + } + .actions { display: flex; + flex-direction: column; gap: 8px; + margin-top: 20px; + } + + .loader-row { + display: flex; + align-items: center; + gap: 12px; margin-top: 16px; - flex-wrap: wrap; } ` +const ModalButton = styled(ButtonAction)` + min-width: unset; + width: 100%; +` + export default function FuseGovernanceMigrationPrompt() { const { i18n } = useLingui() const { address } = useAppKitAccount() const sendData = useSendAnalyticsData() - const history = useHistory() - const { stakeAmount, hasStake, loading, refetch } = useFuseGovernanceStake() + const { stakeAmount, hasStake, stakeLoading, migrating, migrate, refetch, apiConfigured, onFuse } = + useStakeMigration() const [isOpen, setIsOpen] = useState(false) const [step, setStep] = useState('summary') + const [errorMessage, setErrorMessage] = useState() const [completed, setCompleted] = useState(false) const shownRef = useRef() @@ -55,6 +105,7 @@ export default function FuseGovernanceMigrationPrompt() { setCompleted(false) setIsOpen(false) setStep('summary') + setErrorMessage(undefined) shownRef.current = undefined } }, [address]) @@ -66,107 +117,160 @@ export default function FuseGovernanceMigrationPrompt() { } }, [showPrompt, address, sendData]) - useEffect(() => { - if (isOpen && step !== 'summary' && !loading && !hasStake) { - setStep('success') - setCompleted(true) - sendData({ event: 'stake_migration', action: 'step_success', network: 'fuse' }) - } - }, [isOpen, step, loading, hasStake, sendData]) - const openModal = useCallback(() => { setIsOpen(true) setStep('summary') + setErrorMessage(undefined) sendData({ event: 'stake_migration', action: 'prompt_migrate_click', network: 'fuse' }) }, [sendData]) const onDismiss = useCallback(() => { - setIsOpen(false) - if (step === 'success') { - setCompleted(true) + if (!migrating) { + setIsOpen(false) + if (step === 'success') { + setCompleted(true) + } } - }, [step]) + }, [migrating, step]) - const onContinue = useCallback(() => { - setStep('bridge') - sendData({ event: 'stake_migration', action: 'step_summary_continue', network: 'fuse' }) - }, [sendData]) + const onMigrate = useCallback(async () => { + setErrorMessage(undefined) + setStep('migrating') + sendData({ event: 'stake_migration', action: 'migration_start', network: 'fuse' }) - const onOpenBridge = useCallback(() => { - history.push('/microbridge') - sendData({ event: 'stake_migration', action: 'step_bridge_open', network: 'fuse' }) - }, [history, sendData]) + try { + await migrate() - const onCheckStatus = useCallback(() => { - sendData({ event: 'stake_migration', action: 'step_bridge_check', network: 'fuse' }) - refetch() - }, [refetch, sendData]) + sendData({ event: 'stake_migration', action: 'migration_success', network: 'fuse' }) + setStep('success') + setCompleted(true) + refetch() + } catch (e) { + const message = + e instanceof StakeMigrationPendingError + ? i18n._(t`Migration is already running. Wait about ${e.retryAfter ?? 60} seconds and try again.`) + : e instanceof Error + ? e.message + : i18n._(t`Migration failed. Please try again.`) - if (!showPrompt && !(isOpen && step === 'success')) { + setErrorMessage(message) + setStep('error') + sendData({ event: 'stake_migration', action: 'migration_error', network: 'fuse' }) + } + }, [migrate, sendData, refetch, i18n]) + + if (!showPrompt && !(isOpen && (step === 'success' || step === 'error'))) { return null } return ( <> {showPrompt && ( - -
+ + {i18n._( t`You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning.` )} -
- + + {i18n._(t`Migrate`)} - -
+ + )} - + - {step === 'summary' - ? i18n._(t`Migrate Fuse stake`) - : step === 'bridge' - ? i18n._(t`Bridge and verify`) - : i18n._(t`Migration complete`)} + {step === 'success' + ? i18n._(t`Migration complete`) + : step === 'migrating' + ? i18n._(t`Migrating your stake`) + : step === 'error' + ? i18n._(t`Migration issue`) + : i18n._(t`Migrate Fuse stake`)} {step === 'summary' && ( <> -
+
+ {stakeLoading + ? i18n._(t`Loading your Fuse stake...`) + : i18n._( + t`You have ${stakeAmount.toFixed( + 2 + )} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign.` + )} +
+ {!apiConfigured && ( +
+ {i18n._(t`Migration is not configured for this environment.`)} +
+ )} +
+ + {i18n._(t`Approve and migrate`)} + +
+ + )} + + {step === 'migrating' && ( +
+ +
+ {onFuse + ? i18n._( + t`Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes.` + ) + : i18n._(t`Switch to Fuse and submit your approval...`)} +
+
+ )} + + {step === 'error' && ( + <> +
{i18n._( - t`You currently have ${stakeAmount.toFixed( - 2 - )} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings.` + t`We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again.` )}
+ {errorMessage &&
{errorMessage}
}
- - {i18n._(t`Continue`)} - + + {i18n._(t`Try again`)} +
)} - {step === 'bridge' && ( + {step === 'success' && ( <> -
+
{i18n._( - t`Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero.` + t`Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update.` )}
- - {i18n._(t`Open Bridge`)} - - - {loading ? i18n._(t`Checking...`) : i18n._(t`I migrated, check status`)} - + + {i18n._(t`Done`)} +
)} - - {step === 'success' &&
{i18n._(t`Success! Your Fuse governance stake is now zero.`)}
} diff --git a/src/constants/stakeMigration.ts b/src/constants/stakeMigration.ts new file mode 100644 index 000000000..63be7d1ec --- /dev/null +++ b/src/constants/stakeMigration.ts @@ -0,0 +1,36 @@ +import deployment from '@gooddollar/goodprotocol/releases/deployment.json' + +export const FUSE_GOVERNANCE_STAKING_V2 = deployment.production.GovernanceStakingV2 as string + +export const FUSE_CHAIN_ID = 122 + +export function getStakeMigrationOperator(): string | undefined { + const value = process.env.REACT_APP_STAKE_MIGRATION_OPERATOR?.trim() + return value && value.length > 0 ? value : undefined +} + +export function getStakeMigrationApiUrl(): string | undefined { + const base = process.env.REACT_APP_STAKE_MIGRATION_API_URL?.trim().replace(/\/$/, '') + return base ? `${base}/migrate-stake-from-approval` : undefined +} + +export function getStakeMigrationApiToken(): string | undefined { + const value = process.env.REACT_APP_STAKE_MIGRATION_API_TOKEN?.trim() + return value && value.length > 0 ? value : undefined +} + +export type StakeMigrationApiResult = { + user?: string + approvedAmount?: string + migratedAmount?: string + fuseTransferTx?: string + fuseWithdrawTx?: string + bridgeTx?: string + celoStakeTx?: string + skipped?: boolean + skipReason?: string + error?: string + status?: string + lastSuccessfulStep?: string + retryAfter?: number +} diff --git a/src/hooks/useStakeMigration.ts b/src/hooks/useStakeMigration.ts new file mode 100644 index 000000000..15a678a19 --- /dev/null +++ b/src/hooks/useStakeMigration.ts @@ -0,0 +1,135 @@ +import { useCallback, useMemo, useState } from 'react' +import { useAppKitAccount, useAppKitNetwork } from '@reown/appkit/react' +import { useWeb3Context } from '@gooddollar/web3sdk-v2' +import { Web3Provider } from '@ethersproject/providers' +import { ERC20_ABI } from 'constants/abis/erc20' +import { + FUSE_CHAIN_ID, + FUSE_GOVERNANCE_STAKING_V2, + getStakeMigrationApiToken, + getStakeMigrationApiUrl, + getStakeMigrationOperator, + StakeMigrationApiResult, +} from 'constants/stakeMigration' +import { getContract } from 'utils' +import useFuseGovernanceStake from 'hooks/useFuseGovernanceStake' + +export class StakeMigrationPendingError extends Error { + retryAfter?: number + + constructor(message: string, retryAfter?: number) { + super(message) + this.name = 'StakeMigrationPendingError' + this.retryAfter = retryAfter + } +} + +async function submitMigrationApproval(approvalTxHash: string): Promise { + const url = getStakeMigrationApiUrl() + if (!url) { + throw new Error('Stake migration API is not configured') + } + + const headers: Record = { 'Content-Type': 'application/json' } + const token = getStakeMigrationApiToken() + if (token) { + headers.Authorization = `Bearer ${token}` + } + + const response = await fetch(url, { + method: 'POST', + headers, + body: JSON.stringify({ approvalTxHash }), + }) + + const data = (await response.json()) as StakeMigrationApiResult + + if (response.status === 409) { + throw new StakeMigrationPendingError(data.error ?? 'Migration already in progress', data.retryAfter) + } + + if (!response.ok) { + throw new Error(data.error ?? response.statusText) + } + + return data +} + +export default function useStakeMigration() { + const { address } = useAppKitAccount() + const { chainId } = useAppKitNetwork() + const { web3Provider: library } = useWeb3Context() as { web3Provider: Web3Provider | undefined } + const { stakeAmount, hasStake, loading: stakeLoading, refetch } = useFuseGovernanceStake() + const [migrating, setMigrating] = useState(false) + const [error, setError] = useState() + + const operator = getStakeMigrationOperator() + const apiConfigured = Boolean(getStakeMigrationApiUrl() && operator) + + const onFuse = (chainId as number) === FUSE_CHAIN_ID + + const migrate = useCallback(async () => { + setError(undefined) + + if (!address || !library) { + throw new Error('Connect your wallet on Fuse to migrate') + } + + if (!operator) { + throw new Error('Migration operator is not configured') + } + + if (!getStakeMigrationApiUrl()) { + throw new Error('Migration API is not configured') + } + + if ((chainId as number) !== FUSE_CHAIN_ID) { + throw new Error('Switch to Fuse network to approve your stake for migration') + } + + setMigrating(true) + + try { + const readContract = getContract(FUSE_GOVERNANCE_STAKING_V2, ERC20_ABI, library) + const writeContract = getContract(FUSE_GOVERNANCE_STAKING_V2, ERC20_ABI, library, address) + const stakeBalance: { toString: () => string } = await readContract.balanceOf(address) + + if (stakeBalance.toString() === '0') { + throw new Error('No Fuse governance stake found') + } + + const approveTx = await writeContract.approve(operator, stakeBalance) + const receipt = await approveTx.wait() + const approvalTxHash = receipt.transactionHash as string + + const result = await submitMigrationApproval(approvalTxHash) + + if (result.skipped) { + throw new Error(result.skipReason ?? 'Migration was skipped') + } + + refetch() + return { approvalTxHash, result } + } finally { + setMigrating(false) + } + }, [address, library, chainId, operator, refetch]) + + return useMemo( + () => ({ + stakeAmount, + hasStake, + stakeLoading, + migrating, + error, + setError, + migrate, + refetch, + operator, + apiConfigured, + onFuse, + stakingAddress: FUSE_GOVERNANCE_STAKING_V2, + }), + [stakeAmount, hasStake, stakeLoading, migrating, error, migrate, refetch, operator, apiConfigured, onFuse] + ) +} diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index a3b777151..14b7a4ecb 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Goedkeur" msgid "APPROVE" msgstr "GOEDKEUR" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Geblokkeerde adres" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Verander" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Verbind met" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "misluk om te laai" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Hoeveel wil jy onttrek?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Likiditeit Verskaffer" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "laai..." @@ -3149,18 +3165,38 @@ msgstr "maksimum" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "Oeps! 'n Onbekende fout het voorgekom. Verfris asseblief die bladsy, of besoek vanaf 'n ander blaaier of toestel" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Sukses!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Transaksie ingedien" msgid "Transaction was sent to the blockchain" msgstr "Transaksie is gestuur na die blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Beursie balans" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Jou swembad Deel" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index dcd718af3..07acdd058 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2725,6 +2725,14 @@ msgstr "الموافقة" msgid "APPROVE" msgstr "يوافق" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "عنوان محظور" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "تغيير" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "متصل بـ" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "فشل التحميل" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "كم ترغب في الانسحاب؟" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "رسوم مزود السيولة" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "تحميل..." @@ -3149,18 +3165,38 @@ msgstr "ماكس" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "عفوًا! حدث خطأ غير معروف. يرجى تحديث الصفحة، أو الزيارة من متصفح أو جهاز آخر" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "النجاح!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "تم إرسال المعاملة" msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "رصيد المحفظة" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "مشاركة حمام السباحة الخاص بك" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index f73d9641f..b4baa9a65 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index ac1cf2f7b..f8816317b 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index 0da5f3489..c87e681fd 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 33907ce63..b393891b1 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Genehmigen" msgid "APPROVE" msgstr "GENEHMIGEN" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Blockierte Adresse" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Ändern" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Verbunden mit" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "Laden fehlgeschlagen" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Wie viel möchten Sie zurückziehen?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Liquiditätsanbietergebühr" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "Wird geladen..." @@ -3149,18 +3165,38 @@ msgstr "Max" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a 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/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Erfolg!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Transaktion eingereicht" msgid "Transaction was sent to the blockchain" msgstr "Die Transaktion wurde an den Blockchain geschickt" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Geldbörsenbetrag" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Ihre Poolfreigabe" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index 9cc9d89d0..a30e944cf 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index ef6053913..d3ed47637 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 1867c4de8..170d86b99 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -87,6 +87,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -126,8 +134,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -151,8 +159,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -283,8 +291,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -336,6 +344,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -455,8 +467,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -477,6 +489,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -495,18 +511,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -559,8 +595,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -723,8 +759,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -772,6 +808,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -936,6 +976,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -954,8 +998,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -991,6 +1035,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -1051,7 +1099,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -1076,7 +1128,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -1100,6 +1152,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 5abf61891..da80fbc0a 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Aprobar" msgid "APPROVE" msgstr "APROBAR" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Dirección bloqueada" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Cambio" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Conectado con" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "falló al cargar" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Tarifa de proveedor de liquidez" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "cargando..." @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "¡UPS! Un error desconocido ocurrió. Actualiza la página o visita desde otro navegador o dispositivo." #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "¡Éxito!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Transacción enviada" msgid "Transaction was sent to the blockchain" msgstr "La transacción fue enviada al bloque de bloques." +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Balance de billetera" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Su participación en la piscina" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 0cbc6a5d1..ee1f9a5ff 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index 369608b47..e07320f45 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Approuver" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "échec du chargement" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Frais de fournisseur de liquidité" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "Chargement en cours..." @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "Oops! Une erreur inconnue est survenue. Veuillez actualiser la page ou la consulter à partir d'un autre navigateur ou appareil" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Votre part du pool" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 3f8496c68..33d250819 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2725,6 +2725,14 @@ msgstr "לאשׁר" msgid "APPROVE" msgstr "לְאַשֵׁר" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "כתובת חסומה" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "שינוי" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "מחובר עם" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "נכשלה בטעינה" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "כמה אתה רוצה לסגת?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "דמי ספק נזילות" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "טוען..." @@ -3149,18 +3165,38 @@ msgstr "מקס" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "אופס! אירעה שגיאה לא ידועה. נא לרענן את הדף, או לבקר בדפדפן או במכשיר אחר" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "הַצלָחָה!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "העסקה הוגשה" msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "מאזן ארנק" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "נתח הפול שלך" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 4a0bfa43f..79dd2b3f5 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1480,6 +1480,14 @@ msgstr "मंजूर" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -1519,8 +1527,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -1544,8 +1552,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -1680,8 +1688,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -1741,6 +1749,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "लोड करने में विफल" @@ -1864,8 +1876,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -1886,6 +1898,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "तरलता प्रदाता शुल्क" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "लोड हो रहा है..." @@ -1904,18 +1920,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -1978,8 +2014,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "उफ़! एक अज्ञात ग़लती हुई। कृपया पृष्ठ को रीफ़्रेश करें, या किसी अन्य ब्राउज़र या डिवाइस से जाएँ" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -2146,8 +2182,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -2195,6 +2231,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -2371,6 +2411,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -2389,8 +2433,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -2438,6 +2482,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -2514,7 +2562,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -2539,7 +2591,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -2563,6 +2615,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "आपका पूल शेयर" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index b14e1dc98..8066afeea 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 8b5a3c84d..8b34bcaa5 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Approva" msgid "APPROVE" msgstr "APPROVARE" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Indirizzo bloccato" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Modificare" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Connesso con" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "impossibile caricare" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Quanto ti piacerebbe ritirare?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Commissione per fornitori di liquidità" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "caricamento..." @@ -3149,18 +3165,38 @@ msgstr "max." msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Successo!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Transazione inviata" msgid "Transaction was sent to the blockchain" msgstr "La transazione è stata inviata al blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Bilancia del portafoglio." msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "La tua quota della pool" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 90e6a6e69..deeab779c 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2725,6 +2725,14 @@ msgstr "承認する" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "読み込みに失敗しました" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "流動性プロバイダー手数料" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "読み込み中..." @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "おっとっと!不明なエラーが発生しました。ページを更新するか、別のブラウザまたはデバイスからアクセスしてください" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "あなたのプールシェア" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index d9d04199a..cb9758292 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2725,6 +2725,14 @@ msgstr "승인" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "불러 오지 못했습니다" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "유동성 제공자 수수료" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "로드 중 ..." @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "이런! 알 수없는 오류가 발생했습니다. 페이지를 새로 고침하거나 다른 브라우저 또는 기기에서 방문하세요." #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "여러분의 풀 지분" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index d5f36baf6..47633a21f 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index 2db15e792..fb4e585e0 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 859c9c81a..efa166944 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 46b21a90c..d70de4a50 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "Falha ao carregar" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa do provedor de liquidez" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "carregando..." @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "Ups! Ocorreu um erro desconhecido. Atualize a página ou visite de outro navegador ou dispositivo" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 600481257..0acf2e9f8 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 64a213bef..34a1593a3 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Aproba" msgid "APPROVE" msgstr "APROBA" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Adresa blocată" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Schimbare" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Conectat cu" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "incarcarea a esuat" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Cât de mult doriți să vă retrageți?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa furnizorului de lichiditate" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "Se încarcă..." @@ -3149,18 +3165,38 @@ msgstr "Max." msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a 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/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Succes!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Tranzacție trimisă" msgid "Transaction was sent to the blockchain" msgstr "Tranzacția a fost trimisă la blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Balanța portofelului" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Cota dvs. din piscină" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index 611c55bff..ad567cb5e 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Утвердить" msgid "APPROVE" msgstr "УТВЕРДИТЬ" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Заблокированный адрес" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Изменять" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Связаны с" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "ошибка загрузки" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Сколько вы хотели бы выйти?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Комиссия поставщика ликвидности" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "загрузка ..." @@ -3149,18 +3165,38 @@ msgstr "Максимум" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "Ой! Произошла неизвестная ошибка. Обновите страницу или перейдите в другой браузер или другое устройство." #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Успех!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Представленная транзакция" msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Баланс кошелька" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Ваша доля в пуле" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index c7e05d746..55a5dd063 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index 34c55eb7f..c72d4862c 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 91e90deb8..348ede7ae 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 57186c6d4..5d70ededa 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -3149,18 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 0921044fe..e7c7984b3 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2725,6 +2725,14 @@ msgstr "Phê duyệt" msgid "APPROVE" msgstr "CHẤP THUẬN" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "Địa chỉ bị chặn" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "Thay đổi" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "Kết nối với" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "không tải được" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "Bạn muốn rút bao nhiêu tiền?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Phí nhà cung cấp thanh khoản" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "Đang tải..." @@ -3149,18 +3165,38 @@ msgstr "tối đa" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a 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/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "Sự thành công!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "Giao dịch được gửi" msgid "Transaction was sent to the blockchain" msgstr "Giao dịch đã được gửi đến Blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "Ví thăng bằng" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,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/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "Chia sẻ nhóm của bạn" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index c19d629a5..0d16edc4a 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2725,6 +2725,14 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "被封锁的地址" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "改变" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "与" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "加载失败" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "你想退出多少钱?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP奖励" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "载入中..." @@ -3149,18 +3165,38 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "糟糕!出现未知错误。请刷新页面,或从其他浏览器或设备访问" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "成功!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "钱包平衡" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "您在流动性池的占比" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index a5e3c6740..77a0d82be 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2725,6 +2725,14 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2764,8 +2772,8 @@ msgid "Blocked address" msgstr "被封鎖的地址" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2789,8 +2797,8 @@ msgid "Change" msgstr "改變" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2925,8 +2933,8 @@ msgid "Connected with" msgstr "與" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2986,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "加載失敗" @@ -3109,8 +3121,8 @@ msgid "How much would you like to withdraw?" msgstr "你想退出多少錢?" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -3131,6 +3143,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP獎勵" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "載入中..." @@ -3149,18 +3165,38 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3223,8 +3259,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "糟糕!出現未知錯誤。請刷新頁面,或從其他瀏覽器或設備訪問" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -3391,8 +3427,8 @@ msgid "Success!" msgstr "成功!" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -3440,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3616,6 +3656,10 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3634,8 +3678,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3683,6 +3727,10 @@ msgstr "錢包平衡" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3759,7 +3807,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3784,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3808,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "您在流動性池的佔比" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 2c633de29..e71aa1a33 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2196,6 +2196,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." +msgstr "" + #: src/pages/gd/Swap/SwapCore/mentoReserve.tsx:123 msgid "Approve transaction failed, please try again." msgstr "" @@ -2235,8 +2243,8 @@ msgid "Blocked address" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:130 -msgid "Bridge and verify" -msgstr "" +#~ msgid "Bridge and verify" +#~ msgstr "" #: src/components/SideBar.tsx:124 msgid "Buy G$" @@ -2260,8 +2268,8 @@ msgid "Change" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "Checking..." -msgstr "" +#~ msgid "Checking..." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:84 msgid "Choose the currency you want to use and buy cUSD. Your cUSD is then automatically converted into G$." @@ -2396,8 +2404,8 @@ msgid "Connected with" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:145 -msgid "Continue" -msgstr "" +#~ msgid "Continue" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 #~ msgid "" @@ -2457,6 +2465,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -2580,8 +2592,8 @@ msgid "How much would you like to withdraw?" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:163 -msgid "I migrated, check status" -msgstr "" +#~ msgid "I migrated, check status" +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:24 msgid "Learn more" @@ -2602,6 +2614,10 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 msgid "loading..." msgstr "" @@ -2620,18 +2636,38 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:119 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:128 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:131 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 msgid "Migration complete" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -2694,8 +2730,8 @@ msgid "Oops! An unknown error occurred. Please refresh the page, or visit from a msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 -msgid "Open Bridge" -msgstr "" +#~ msgid "Open Bridge" +#~ msgstr "" #: src/components/AppBar.tsx:342 msgid "Open main menu" @@ -2862,8 +2898,8 @@ msgid "Success!" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:169 -msgid "Success! Your Fuse governance stake is now zero." -msgstr "" +#~ msgid "Success! Your Fuse governance stake is now zero." +#~ msgstr "" #: src/pages/gd/BuyGD/index.tsx:71 msgid "Support global financial inclusion and contribute to social impact by purchasing GoodDollars (G$)." @@ -2911,6 +2947,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +msgid "Switch to Fuse and submit your approval..." +msgstr "" + #: src/pages/gd/Swap/index.tsx:67 msgid "Take note of indicators in the widget below for price, slippage, and liquidity." msgstr "" @@ -3087,6 +3127,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3105,8 +3149,8 @@ msgid "Unsupported network" msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:155 -msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." -msgstr "" +#~ msgid "Use the bridge flow to move your funds from Fuse to Celo, then return here and verify your Fuse stake is zero." +#~ msgstr "" #: src/pages/gd/Swap/index.tsx:52 msgid "using the GoodDollar Reserve." @@ -3154,6 +3198,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." +msgstr "" + #: src/components/NetworkModal/index.tsx:151 msgid "We see you don't have {0} added to your wallet. Kindly add the network, and try again." msgstr "" @@ -3230,7 +3278,11 @@ msgstr "" #~ msgstr "" #: src/components/FuseGovernanceMigrationPrompt/index.tsx:138 -msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." +#~ msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 @@ -3255,7 +3307,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:115 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3279,6 +3331,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." +msgstr "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" diff --git a/vite.config.ts b/vite.config.ts index 892e920c3..51df328ea 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -43,6 +43,9 @@ export default defineConfig(({ command, mode }) => { envPrefix: 'REACT_APP_', server: { https, + watch: { + ignored: ['**/.yalc/**', '**/node_modules/**', '**/.git/**'], + }, }, plugins: [ visualizer({ From 3699195cd1fba06060088ca429ae95678f1d13d3 Mon Sep 17 00:00:00 2001 From: blueogin Date: Tue, 26 May 2026 11:35:11 -0400 Subject: [PATCH 6/7] fix: update translation references in governance migration prompt for multiple languages --- src/language/locales/af/catalog.po | 36 +++++++++++++------------- src/language/locales/ar/catalog.po | 36 +++++++++++++------------- src/language/locales/ca/catalog.po | 36 +++++++++++++------------- src/language/locales/cs/catalog.po | 36 +++++++++++++------------- src/language/locales/da/catalog.po | 36 +++++++++++++------------- src/language/locales/de/catalog.po | 36 +++++++++++++------------- src/language/locales/el/catalog.po | 36 +++++++++++++------------- src/language/locales/en/catalog.po | 36 +++++++++++++------------- src/language/locales/es-419/catalog.po | 36 +++++++++++++------------- src/language/locales/es/catalog.po | 36 +++++++++++++------------- src/language/locales/fi/catalog.po | 36 +++++++++++++------------- src/language/locales/fr/catalog.po | 36 +++++++++++++------------- src/language/locales/he/catalog.po | 36 +++++++++++++------------- src/language/locales/hi/catalog.po | 36 +++++++++++++------------- src/language/locales/hu/catalog.po | 36 +++++++++++++------------- src/language/locales/it/catalog.po | 36 +++++++++++++------------- src/language/locales/ja/catalog.po | 36 +++++++++++++------------- src/language/locales/ko/catalog.po | 36 +++++++++++++------------- src/language/locales/nl/catalog.po | 36 +++++++++++++------------- src/language/locales/no/catalog.po | 36 +++++++++++++------------- src/language/locales/pl/catalog.po | 36 +++++++++++++------------- src/language/locales/pt-BR/catalog.po | 36 +++++++++++++------------- src/language/locales/pt/catalog.po | 36 +++++++++++++------------- src/language/locales/ro/catalog.po | 36 +++++++++++++------------- src/language/locales/ru/catalog.po | 36 +++++++++++++------------- src/language/locales/sr/catalog.po | 36 +++++++++++++------------- src/language/locales/sv/catalog.po | 36 +++++++++++++------------- src/language/locales/tr/catalog.po | 36 +++++++++++++------------- src/language/locales/uk/catalog.po | 36 +++++++++++++------------- src/language/locales/vi/catalog.po | 36 +++++++++++++------------- src/language/locales/zh-CN/catalog.po | 36 +++++++++++++------------- src/language/locales/zh-TW/catalog.po | 36 +++++++++++++------------- src/language/locales/zh/catalog.po | 36 +++++++++++++------------- 33 files changed, 594 insertions(+), 594 deletions(-) diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 14b7a4ecb..8be224108 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Goedkeur" msgid "APPROVE" msgstr "GOEDKEUR" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Likiditeit Verskaffer" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "maksimum" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Transaksie ingedien" msgid "Transaction was sent to the blockchain" msgstr "Transaksie is gestuur na die blockchain" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Beursie balans" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "U moet die transaksie in u beursie onderteken" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 07acdd058..4b8f66d82 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2725,11 +2725,11 @@ msgstr "الموافقة" msgid "APPROVE" msgstr "يوافق" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "رسوم مزود السيولة" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "ماكس" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "تم إرسال المعاملة" msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "رصيد المحفظة" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index b4baa9a65..e42b5b299 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index f8816317b..1df25b469 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index c87e681fd..c2f428857 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index b393891b1..acf218870 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Genehmigen" msgid "APPROVE" msgstr "GENEHMIGEN" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Liquiditätsanbietergebühr" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "Max" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Transaktion eingereicht" msgid "Transaction was sent to the blockchain" msgstr "Die Transaktion wurde an den Blockchain geschickt" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Geldbörsenbetrag" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Sie müssen die Transaktion in Ihrer Brieftasche unterschreiben" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index a30e944cf..dc9a86640 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index d3ed47637..4488bdd35 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 170d86b99..b7d463bab 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -87,11 +87,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -344,7 +344,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -489,7 +489,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -511,35 +511,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -808,7 +808,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -976,7 +976,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -1035,7 +1035,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -1128,7 +1128,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -1152,7 +1152,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index da80fbc0a..ccc83dbb5 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Aprobar" msgid "APPROVE" msgstr "APROBAR" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Tarifa de proveedor de liquidez" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Transacción enviada" msgid "Transaction was sent to the blockchain" msgstr "La transacción fue enviada al bloque de bloques." -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Balance de billetera" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Necesitas firmar la transacción en tu billetera." -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index ee1f9a5ff..52eb093e0 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index e07320f45..5422a2918 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Approuver" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Frais de fournisseur de liquidité" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index 33d250819..66a743c5d 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2725,11 +2725,11 @@ msgstr "לאשׁר" msgid "APPROVE" msgstr "לְאַשֵׁר" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "דמי ספק נזילות" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "מקס" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "העסקה הוגשה" msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "מאזן ארנק" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index 79dd2b3f5..dc33e7b45 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1480,11 +1480,11 @@ msgstr "मंजूर" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -1749,7 +1749,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -1898,7 +1898,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "तरलता प्रदाता शुल्क" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -1920,35 +1920,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -2231,7 +2231,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -2411,7 +2411,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -2482,7 +2482,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -2565,7 +2565,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -2591,7 +2591,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -2615,7 +2615,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index 8066afeea..00eed3f3f 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 8b34bcaa5..75ff16fe3 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Approva" msgid "APPROVE" msgstr "APPROVARE" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Commissione per fornitori di liquidità" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "max." msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Transazione inviata" msgid "Transaction was sent to the blockchain" msgstr "La transazione è stata inviata al blockchain" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Bilancia del portafoglio." msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "È necessario firmare la transazione nel tuo portafoglio" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index deeab779c..a7daa90da 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2725,11 +2725,11 @@ msgstr "承認する" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "流動性プロバイダー手数料" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index cb9758292..3495e9bbc 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2725,11 +2725,11 @@ msgstr "승인" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "유동성 제공자 수수료" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index 47633a21f..47557d531 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index fb4e585e0..3be800190 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index efa166944..675b1a2a5 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index d70de4a50..b8e94ed9a 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa do provedor de liquidez" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index 0acf2e9f8..8482fa8f7 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index 34a1593a3..93e3889da 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Aproba" msgid "APPROVE" msgstr "APROBA" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa furnizorului de lichiditate" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "Max." msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Tranzacție trimisă" msgid "Transaction was sent to the blockchain" msgstr "Tranzacția a fost trimisă la blockchain" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Balanța portofelului" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Trebuie să semnați tranzacția în portofel" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index ad567cb5e..14d748f7d 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Утвердить" msgid "APPROVE" msgstr "УТВЕРДИТЬ" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Комиссия поставщика ликвидности" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "Максимум" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Представленная транзакция" msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Баланс кошелька" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index 55a5dd063..31b034777 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index c72d4862c..bd358599f 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 348ede7ae..555665002 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 5d70ededa..830ccad07 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2725,11 +2725,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index e7c7984b3..d1472f203 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2725,11 +2725,11 @@ msgstr "Phê duyệt" msgid "APPROVE" msgstr "CHẤP THUẬN" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Phí nhà cung cấp thanh khoản" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "tối đa" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Giao dịch được gửi" msgid "Transaction was sent to the blockchain" msgstr "Giao dịch đã được gửi đến Blockchain" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "Ví thăng bằng" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,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/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 0d16edc4a..830175940 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2725,11 +2725,11 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP奖励" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "钱包平衡" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index 77a0d82be..1c333e48f 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2725,11 +2725,11 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2994,7 +2994,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -3143,7 +3143,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP獎勵" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -3165,35 +3165,35 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3656,7 +3656,7 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "錢包平衡" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3836,7 +3836,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3860,7 +3860,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index e71aa1a33..5614bee2a 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2196,11 +2196,11 @@ msgstr "" msgid "APPROVE" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:228 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 msgid "Approve and migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:240 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 msgid "Approve sG$ on Fuse, then completing bridge and Celo Savings stake. This can take several minutes." msgstr "" @@ -2465,7 +2465,7 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:279 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 msgid "Done" msgstr "" @@ -2614,7 +2614,7 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:207 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 msgid "Loading your Fuse stake..." msgstr "" @@ -2636,35 +2636,35 @@ msgstr "" msgid "Maximum sold" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:186 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 msgid "Migrate" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:200 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 msgid "Migrate Fuse stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 msgid "Migrating your stake" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:195 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 msgid "Migration complete" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:164 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 msgid "Migration failed. Please try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:160 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 msgid "Migration is already running. Wait about {0} seconds and try again." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:216 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 msgid "Migration is not configured for this environment." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 msgid "Migration issue" msgstr "" @@ -2947,7 +2947,7 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:242 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 msgid "Switch to Fuse and submit your approval..." msgstr "" @@ -3127,7 +3127,7 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 msgid "Try again" msgstr "" @@ -3198,7 +3198,7 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:251 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:241 msgid "We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again." msgstr "" @@ -3281,7 +3281,7 @@ msgstr "" #~ msgid "You currently have {0} G$ staked on Fuse Governance. This wizard helps you migrate to Celo Savings." #~ msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:209 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:199 msgid "You have {0} G$ staked on Fuse Governance (sG$). Approve the migration operator to move your stake to Celo Savings. The rest is handled automatically after you sign." msgstr "" @@ -3307,7 +3307,7 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:182 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 msgid "You still have Governance stake on Fuse. Migrate it to Celo Savings to keep earning." msgstr "" @@ -3331,7 +3331,7 @@ msgstr "" msgid "Your current savings balance." msgstr "" -#: src/components/FuseGovernanceMigrationPrompt/index.tsx:274 +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:264 msgid "Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update." msgstr "" From 2b6ab2585acd970b0f26deb5b513d48cf1730397 Mon Sep 17 00:00:00 2001 From: blueogin Date: Tue, 26 May 2026 14:50:41 -0400 Subject: [PATCH 7/7] feat: add optional governance staking address override and refactor staking logic for Fuse governance --- .env.example | 1 + src/constants/stakeMigration.ts | 31 ++++++++++++++++++++++++++-- src/hooks/useFuseGovernanceStake.ts | 32 ++++++++++++++++------------- src/hooks/useStakeMigration.ts | 26 ++++++++++++++++++----- 4 files changed, 69 insertions(+), 21 deletions(-) diff --git a/.env.example b/.env.example index c3634848b..86c3476f9 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,7 @@ DISABLE_ESLINT_PLUGIN=true BROWSER=none REACT_APP_DATASTUDIO_DASHBOARD_URL= REACT_APP_NETWORK= +REACT_APP_FUSE_GOVERNANCE_STAKING_V2= REACT_APP_STAKE_MIGRATION_OPERATOR= REACT_APP_STAKE_MIGRATION_API_URL= REACT_APP_STAKE_MIGRATION_API_TOKEN= diff --git a/src/constants/stakeMigration.ts b/src/constants/stakeMigration.ts index 63be7d1ec..c39848951 100644 --- a/src/constants/stakeMigration.ts +++ b/src/constants/stakeMigration.ts @@ -1,9 +1,36 @@ import deployment from '@gooddollar/goodprotocol/releases/deployment.json' - -export const FUSE_GOVERNANCE_STAKING_V2 = deployment.production.GovernanceStakingV2 as string +import { getEnv } from 'utils/env' export const FUSE_CHAIN_ID = 122 +type FuseDeploymentRow = Record + +function fuseGovernanceDeploymentRow(): FuseDeploymentRow { + const env = getEnv() + if (env === 'production' || env === 'staging') { + return deployment.production as FuseDeploymentRow + } + if (deployment.fuse) { + return deployment.fuse as FuseDeploymentRow + } + return deployment.production as FuseDeploymentRow +} + +export function getFuseOldGovernanceStakingAddress(): string { + const fromEnv = process.env.REACT_APP_FUSE_GOVERNANCE_STAKING_V2?.trim() + if (fromEnv) { + return fromEnv + } + + const row = fuseGovernanceDeploymentRow() + const address = row.GovernanceStakingV2 ?? row.GovernanceStaking + if (!address) { + throw new Error('No Fuse governance staking address in deployment.json for current env') + } + + return address +} + export function getStakeMigrationOperator(): string | undefined { const value = process.env.REACT_APP_STAKE_MIGRATION_OPERATOR?.trim() return value && value.length > 0 ? value : undefined diff --git a/src/hooks/useFuseGovernanceStake.ts b/src/hooks/useFuseGovernanceStake.ts index 88cf03286..f05f7c5bd 100644 --- a/src/hooks/useFuseGovernanceStake.ts +++ b/src/hooks/useFuseGovernanceStake.ts @@ -1,25 +1,28 @@ import { useMemo } from 'react' +import { Contract } from '@ethersproject/contracts' +import { formatUnits } from '@ethersproject/units' +import { useReadOnlyProvider } from '@gooddollar/web3sdk-v2' +import { useAppKitAccount } from '@reown/appkit/react' +import { ERC20_ABI } from 'constants/abis/erc20' +import { FUSE_CHAIN_ID, getFuseOldGovernanceStakingAddress } from 'constants/stakeMigration' import usePromise from 'hooks/usePromise' import useInterval from 'hooks/useInterval' -import { useAppKitAccount } from '@reown/appkit/react' -import { DAO_NETWORK, LIQUIDITY_PROTOCOL, getMyList, useEnvWeb3, useGdContextProvider } from '@gooddollar/web3sdk' -import { useG$Price } from '@gooddollar/web3sdk-v2' export default function useFuseGovernanceStake() { const { address } = useAppKitAccount() - const { web3 } = useGdContextProvider() - const [mainnetWeb3] = useEnvWeb3(DAO_NETWORK.MAINNET, web3) - const [fuseWeb3] = useEnvWeb3(DAO_NETWORK.FUSE, web3) - const gdPrice = useG$Price() + const fuseProvider = useReadOnlyProvider(FUSE_CHAIN_ID) + const stakingAddress = getFuseOldGovernanceStakingAddress() const [stakeAmount = 0, loading, error, refetch] = usePromise(async () => { - if (!address || !mainnetWeb3 || !fuseWeb3) return 0 + if (!address || !fuseProvider) { + return 0 + } + + const contract = new Contract(stakingAddress, ERC20_ABI, fuseProvider) + const [balance, decimals] = await Promise.all([contract.balanceOf(address), contract.decimals()]) - const stakes = await getMyList(mainnetWeb3, fuseWeb3, address, gdPrice) - return stakes - .filter((stake) => stake.protocol === LIQUIDITY_PROTOCOL.GOODDAO) - .reduce((sum, stake) => sum + parseFloat(stake.stake.amount.toExact()), 0) - }, [address, mainnetWeb3, fuseWeb3, gdPrice]) + return parseFloat(formatUnits(balance, decimals)) + }, [address, fuseProvider, stakingAddress]) useInterval( () => { @@ -36,7 +39,8 @@ export default function useFuseGovernanceStake() { loading, error, refetch, + stakingAddress, }), - [stakeAmount, loading, error, refetch] + [stakeAmount, loading, error, refetch, stakingAddress] ) } diff --git a/src/hooks/useStakeMigration.ts b/src/hooks/useStakeMigration.ts index 15a678a19..8ca4629a9 100644 --- a/src/hooks/useStakeMigration.ts +++ b/src/hooks/useStakeMigration.ts @@ -5,7 +5,7 @@ import { Web3Provider } from '@ethersproject/providers' import { ERC20_ABI } from 'constants/abis/erc20' import { FUSE_CHAIN_ID, - FUSE_GOVERNANCE_STAKING_V2, + getFuseOldGovernanceStakingAddress, getStakeMigrationApiToken, getStakeMigrationApiUrl, getStakeMigrationOperator, @@ -89,9 +89,11 @@ export default function useStakeMigration() { setMigrating(true) + const stakingAddress = getFuseOldGovernanceStakingAddress() + try { - const readContract = getContract(FUSE_GOVERNANCE_STAKING_V2, ERC20_ABI, library) - const writeContract = getContract(FUSE_GOVERNANCE_STAKING_V2, ERC20_ABI, library, address) + const readContract = getContract(stakingAddress, ERC20_ABI, library) + const writeContract = getContract(stakingAddress, ERC20_ABI, library, address) const stakeBalance: { toString: () => string } = await readContract.balanceOf(address) if (stakeBalance.toString() === '0') { @@ -115,6 +117,8 @@ export default function useStakeMigration() { } }, [address, library, chainId, operator, refetch]) + const stakingAddress = getFuseOldGovernanceStakingAddress() + return useMemo( () => ({ stakeAmount, @@ -128,8 +132,20 @@ export default function useStakeMigration() { operator, apiConfigured, onFuse, - stakingAddress: FUSE_GOVERNANCE_STAKING_V2, + stakingAddress, }), - [stakeAmount, hasStake, stakeLoading, migrating, error, migrate, refetch, operator, apiConfigured, onFuse] + [ + stakeAmount, + hasStake, + stakeLoading, + migrating, + error, + migrate, + refetch, + operator, + apiConfigured, + onFuse, + stakingAddress, + ] ) }