diff --git a/.env.example b/.env.example index abd40e043..86c3476f9 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,10 @@ 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= REACT_APP_MAINNET_RPC= REACT_APP_FUSE_RPC= REACT_APP_CELO_RPC= 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" + } + } +} diff --git a/src/components/FuseGovernanceMigrationPrompt/index.tsx b/src/components/FuseGovernanceMigrationPrompt/index.tsx new file mode 100644 index 000000000..28c9ea13d --- /dev/null +++ b/src/components/FuseGovernanceMigrationPrompt/index.tsx @@ -0,0 +1,278 @@ +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 { ActionOrSwitchButton } from 'components/gd/Button/ActionOrSwitchButton' +import useSendAnalyticsData from 'hooks/useSendAnalyticsData' +import useStakeMigration, { StakeMigrationPendingError } from 'hooks/useStakeMigration' +import { useAppKitAccount } from '@reown/appkit/react' +import Loader from 'components/Loader' + +type Step = 'summary' | 'migrating' | 'success' | 'error' + +const PopoverBanner = styled.div` + margin: 12px 0 20px; + border: 1px solid ${({ theme }) => theme.color.border2}; + background: ${({ theme }) => theme.color.main}; + border-radius: 10px; + padding: 16px; + display: flex; + align-items: center; + 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: 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; + } +` + +const ModalButton = styled(ButtonAction)` + min-width: unset; + width: 100%; +` + +export default function FuseGovernanceMigrationPrompt() { + const { i18n } = useLingui() + const { address } = useAppKitAccount() + const sendData = useSendAnalyticsData() + 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() + + const showPrompt = useMemo(() => hasStake && !completed, [hasStake, completed]) + + useEffect(() => { + if (!address) { + setCompleted(false) + setIsOpen(false) + setStep('summary') + setErrorMessage(undefined) + 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]) + + const openModal = useCallback(() => { + setIsOpen(true) + setStep('summary') + setErrorMessage(undefined) + sendData({ event: 'stake_migration', action: 'prompt_migrate_click', network: 'fuse' }) + }, [sendData]) + + const onDismiss = useCallback(() => { + if (!migrating) { + setIsOpen(false) + if (step === 'success') { + setCompleted(true) + } + } + }, [migrating, step]) + + const onMigrate = useCallback(async () => { + setErrorMessage(undefined) + setStep('migrating') + sendData({ event: 'stake_migration', action: 'migration_start', network: 'fuse' }) + + try { + await migrate() + + 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.`) + + 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 === '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`We could not finish migrating your Fuse stake. If you already approved, wait a minute and try again.` + )} +
+ {errorMessage &&
{errorMessage}
} +
+ + {i18n._(t`Try again`)} + +
+ + )} + + {step === 'success' && ( + <> +
+ {i18n._( + t`Your Fuse governance stake was migrated to Celo Savings. It may take a moment for balances to update.` + )} +
+
+ + {i18n._(t`Done`)} + +
+ + )} +
+
+ + ) +} diff --git a/src/constants/stakeMigration.ts b/src/constants/stakeMigration.ts new file mode 100644 index 000000000..c39848951 --- /dev/null +++ b/src/constants/stakeMigration.ts @@ -0,0 +1,63 @@ +import deployment from '@gooddollar/goodprotocol/releases/deployment.json' +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 +} + +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/useFuseGovernanceStake.ts b/src/hooks/useFuseGovernanceStake.ts new file mode 100644 index 000000000..f05f7c5bd --- /dev/null +++ b/src/hooks/useFuseGovernanceStake.ts @@ -0,0 +1,46 @@ +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' + +export default function useFuseGovernanceStake() { + const { address } = useAppKitAccount() + const fuseProvider = useReadOnlyProvider(FUSE_CHAIN_ID) + const stakingAddress = getFuseOldGovernanceStakingAddress() + + const [stakeAmount = 0, loading, error, refetch] = usePromise(async () => { + if (!address || !fuseProvider) { + return 0 + } + + const contract = new Contract(stakingAddress, ERC20_ABI, fuseProvider) + const [balance, decimals] = await Promise.all([contract.balanceOf(address), contract.decimals()]) + + return parseFloat(formatUnits(balance, decimals)) + }, [address, fuseProvider, stakingAddress]) + + useInterval( + () => { + refetch() + }, + address ? 30000 : null, + false + ) + + return useMemo( + () => ({ + stakeAmount, + hasStake: stakeAmount > 0, + loading, + error, + refetch, + stakingAddress, + }), + [stakeAmount, loading, error, refetch, stakingAddress] + ) +} diff --git a/src/hooks/useStakeMigration.ts b/src/hooks/useStakeMigration.ts new file mode 100644 index 000000000..8ca4629a9 --- /dev/null +++ b/src/hooks/useStakeMigration.ts @@ -0,0 +1,151 @@ +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, + getFuseOldGovernanceStakingAddress, + 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) + + const stakingAddress = getFuseOldGovernanceStakingAddress() + + try { + 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') { + 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]) + + const stakingAddress = getFuseOldGovernanceStakingAddress() + + return useMemo( + () => ({ + stakeAmount, + hasStake, + stakeLoading, + migrating, + error, + setError, + migrate, + refetch, + operator, + apiConfigured, + onFuse, + stakingAddress, + }), + [ + stakeAmount, + hasStake, + stakeLoading, + migrating, + error, + migrate, + refetch, + operator, + apiConfigured, + onFuse, + stakingAddress, + ] + ) +} diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index bb295670d..8be224108 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 "" @@ -2725,6 +2725,14 @@ msgstr "Goedkeur" msgid "APPROVE" msgstr "GOEDKEUR" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "misluk om te laai" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Likiditeit Verskaffer" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "maksimum" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Beursie balans" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 974bf25aa..4b8f66d82 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 "" @@ -2725,6 +2725,14 @@ msgstr "الموافقة" msgid "APPROVE" msgstr "يوافق" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "الموافقة" msgid "APPROVING" msgstr "الموافقة" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "فشل التحميل" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "رسوم مزود السيولة" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "ماكس" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "تم إرسال المعاملة" msgid "Transaction was sent to the blockchain" msgstr "تم إرسال المعاملة إلى blockchain" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "رصيد المحفظة" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "تحتاج إلى توقيع المعاملة في محفظتك" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "سوف تتلقى:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 049f91c82..e42b5b299 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 "" @@ -2725,6 +2725,14 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 d0c98e847..1df25b469 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 95b3bd8a5..c2f428857 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 d7175a49b..acf218870 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 "" @@ -2725,6 +2725,14 @@ msgstr "Genehmigen" msgid "APPROVE" msgstr "GENEHMIGEN" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "Laden fehlgeschlagen" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Liquiditätsanbietergebühr" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "Max" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Geldbörsenbetrag" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 ce63275a1..dc9a86640 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 12725f82a..4488bdd35 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 75652452b..b7d463bab 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 "" @@ -87,6 +87,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -103,7 +111,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -125,6 +133,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 +158,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 +290,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" @@ -324,6 +344,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -377,7 +401,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 +425,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 +466,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 "" @@ -461,12 +489,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +511,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -517,8 +581,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 +594,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 +647,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 +717,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 +725,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 +758,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 "" @@ -736,6 +808,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -802,11 +878,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 +891,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 +916,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 +934,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 "" @@ -900,6 +976,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -917,6 +997,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 "" @@ -951,6 +1035,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -1010,6 +1098,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -1032,6 +1128,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -1052,6 +1152,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 761c7da83..ccc83dbb5 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 "" @@ -2725,6 +2725,14 @@ msgstr "Aprobar" msgid "APPROVE" msgstr "APROBAR" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "falló al cargar" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Tarifa de proveedor de liquidez" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Balance de billetera" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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á:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 cf1185778..52eb093e0 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 abef5076c..5422a2918 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 "" @@ -2725,6 +2725,14 @@ msgstr "Approuver" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "échec du chargement" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Frais de fournisseur de liquidité" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 7c758ef3c..66a743c5d 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 "" @@ -2725,6 +2725,14 @@ msgstr "לאשׁר" msgid "APPROVE" msgstr "לְאַשֵׁר" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "אישור" msgid "APPROVING" msgstr "אישור" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "נכשלה בטעינה" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "דמי ספק נזילות" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "מקס" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "העסקה הוגשה" msgid "Transaction was sent to the blockchain" msgstr "העסקה נשלחה אל בלוקשין" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "מאזן ארנק" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "אתה צריך לחתום על העסקה בארנק שלך" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "אתה תקבל:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 620da888f..dc33e7b45 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 "" @@ -1480,6 +1480,14 @@ msgstr "मंजूर" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -1496,7 +1504,7 @@ msgstr "का अनुमोदन" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -1518,6 +1526,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 +1551,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 +1687,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" @@ -1729,6 +1749,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "लोड करने में विफल" @@ -1782,7 +1806,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 +1830,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 +1875,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 "" @@ -1870,12 +1898,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "तरलता प्रदाता शुल्क" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +1920,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -1930,8 +1994,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 +2013,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 +2070,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 +2140,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 +2148,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 +2181,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 "" @@ -2159,6 +2231,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -2233,11 +2309,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 +2322,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 +2351,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 +2369,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 "" @@ -2335,6 +2411,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -2352,6 +2432,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 "" @@ -2398,6 +2482,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -2473,6 +2561,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -2495,6 +2591,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -2515,6 +2615,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 e26d939c8..00eed3f3f 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 85e4d4040..75ff16fe3 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 "" @@ -2725,6 +2725,14 @@ msgstr "Approva" msgid "APPROVE" msgstr "APPROVARE" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "impossibile caricare" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Commissione per fornitori di liquidità" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "max." msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Bilancia del portafoglio." msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 fd430756b..a7daa90da 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 "" @@ -2725,6 +2725,14 @@ msgstr "承認する" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "承認" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "読み込みに失敗しました" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "流動性プロバイダー手数料" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 fc4172e22..3495e9bbc 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 "" @@ -2725,6 +2725,14 @@ msgstr "승인" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "승인" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "불러 오지 못했습니다" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "유동성 제공자 수수료" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 1ffb47d85..47557d531 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 0decf2c86..3be800190 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 4e9cab36f..675b1a2a5 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 5bad56f4f..b8e94ed9a 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 "" @@ -2725,6 +2725,14 @@ msgstr "Aprovar" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "Falha ao carregar" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa do provedor de liquidez" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 9acada77b..8482fa8f7 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 94535ae93..93e3889da 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 "" @@ -2725,6 +2725,14 @@ msgstr "Aproba" msgid "APPROVE" msgstr "APROBA" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "incarcarea a esuat" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Taxa furnizorului de lichiditate" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "Max." msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Balanța portofelului" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 ae63e2b57..14d748f7d 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 "" @@ -2725,6 +2725,14 @@ msgstr "Утвердить" msgid "APPROVE" msgstr "УТВЕРДИТЬ" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "Утверждаю" msgid "APPROVING" msgstr "Одобрение" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "ошибка загрузки" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Комиссия поставщика ликвидности" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "Максимум" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "Представленная транзакция" msgid "Transaction was sent to the blockchain" msgstr "Транзакция была отправлена в блокчане" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Баланс кошелька" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "Вам нужно подписать транзакцию в вашем кошельке" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "Вы получите:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 94e28bbfe..31b034777 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 8e20131c9..bd358599f 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 0e97c5bd4..555665002 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 9734589d1..830ccad07 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 "" @@ -2725,6 +2725,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 d09a69af5..d1472f203 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 "" @@ -2725,6 +2725,14 @@ msgstr "Phê duyệt" msgid "APPROVE" msgstr "CHẤP THUẬN" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,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 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "không tải được" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "Phí nhà cung cấp thanh khoản" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "tối đa" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,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:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "Ví thăng bằng" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,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:172 +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:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 47167b242..830175940 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 "" @@ -2725,6 +2725,14 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "批准中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "加载失败" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP奖励" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被发送到区块链" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "钱包平衡" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在钱包中签署交易" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "您将收到:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 bae442fad..1c333e48f 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 "" @@ -2725,6 +2725,14 @@ msgstr "批准" msgid "APPROVE" msgstr "批准" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2741,7 +2749,7 @@ msgstr "批準中" msgid "APPROVING" msgstr "批准" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2763,6 +2771,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 +2796,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 +2932,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" @@ -2974,6 +2994,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "加載失敗" @@ -3027,7 +3051,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 +3075,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 +3120,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 "" @@ -3115,12 +3143,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "LP獎勵" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +3165,38 @@ msgstr "最大限度" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -3175,8 +3239,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 +3258,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 +3315,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 +3385,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 +3393,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 +3426,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 "" @@ -3404,6 +3476,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -3478,11 +3554,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 +3567,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 +3596,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 +3614,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 "" @@ -3580,6 +3656,10 @@ msgstr "交易提交" msgid "Transaction was sent to the blockchain" msgstr "交易被發送到區塊鏈" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3597,6 +3677,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 "" @@ -3643,6 +3727,10 @@ msgstr "錢包平衡" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3718,6 +3806,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3740,6 +3836,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "您需要在錢包中籤署交易" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "您將收到:" @@ -3760,6 +3860,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: 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 26a10f5b8..5614bee2a 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 "" @@ -2196,6 +2196,14 @@ msgstr "" msgid "APPROVE" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:218 +msgid "Approve and migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:230 +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 "" @@ -2212,7 +2220,7 @@ msgstr "" msgid "APPROVING" msgstr "" -#: src/pages/gd/Stake/index.tsx:77 +#: src/pages/gd/Stake/index.tsx:78 msgid "APY" msgstr "" @@ -2234,6 +2242,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 +2267,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 +2403,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" @@ -2445,6 +2465,10 @@ msgstr "" #~ msgid "Donate" #~ msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:269 +msgid "Done" +msgstr "" + #: src/components/Gas/index.tsx:12 msgid "failed to load" msgstr "" @@ -2498,7 +2522,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 +2546,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 +2591,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 "" @@ -2586,12 +2614,16 @@ msgstr "" msgid "Liquidity Provider Fee" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:197 +msgid "Loading your Fuse stake..." +msgstr "" + #: src/components/Gas/index.tsx:13 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 +2636,38 @@ msgstr "" msgid "Maximum sold" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:176 +msgid "Migrate" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:190 +msgid "Migrate Fuse stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:187 +msgid "Migrating your stake" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:185 +msgid "Migration complete" +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:154 +msgid "Migration failed. Please try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:151 +msgid "Migration is already running. Wait about {0} seconds and try again." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:206 +msgid "Migration is not configured for this environment." +msgstr "" + +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:189 +msgid "Migration issue" +msgstr "" + #: src/pages/gd/Swap/SwapConfirmModal/index.tsx:228 #: src/pages/gd/Swap/SwapDetails/index.tsx:42 msgid "Minimum received" @@ -2646,8 +2710,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 +2729,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 +2786,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 +2856,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 +2864,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 +2897,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 "" @@ -2875,6 +2947,10 @@ msgstr "" msgid "Switch to {requireChain}" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:232 +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 "" @@ -2949,11 +3025,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 +3038,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 +3067,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 +3085,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 "" @@ -3051,6 +3127,10 @@ msgstr "" msgid "Transaction was sent to the blockchain" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:254 +msgid "Try again" +msgstr "" + #: src/components/Savings/SavingsCard/index.tsx:47 #: src/pages/gd/Portfolio/index.tsx:208 msgid "TYPE" @@ -3068,6 +3148,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 "" @@ -3114,6 +3198,10 @@ msgstr "" msgid "Watch these indicators in the widget below:" msgstr "" +#: 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 "" + #: 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 "" @@ -3189,6 +3277,14 @@ 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/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 "" + #: src/pages/gd/Stake/StakeDeposit/index.tsx:381 msgid "" "You have just staked your G$s towards our GoodDAO,\n" @@ -3211,6 +3307,10 @@ msgstr "" msgid "You need to sign the transaction in your wallet" msgstr "" +#: src/components/FuseGovernanceMigrationPrompt/index.tsx:172 +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 "" @@ -3231,6 +3331,10 @@ msgstr "" msgid "Your current savings balance." msgstr "" +#: 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 "" + #: src/components/Liquidity/AdvancedLiquidityDetails.tsx:26 msgid "Your Pool Share" msgstr "" 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 && ( <> { envPrefix: 'REACT_APP_', server: { https, + watch: { + ignored: ['**/.yalc/**', '**/node_modules/**', '**/.git/**'], + }, }, plugins: [ visualizer({