From 6d0613553bd9d709ecfb482435e13eb5140e081a Mon Sep 17 00:00:00 2001 From: Slava Date: Fri, 8 Nov 2024 23:04:05 +0300 Subject: [PATCH 01/13] chore: merge lingui translations --- .husky/pre-commit | 2 +- apps/bob-pay/lingui.config.js | 17 +- apps/bob-pay/package.json | 2 - apps/bob-pay/src/i18n/appRouterI18n.tsx | 2 +- apps/evm/lingui.config.js | 17 +- apps/evm/package.json | 4 +- .../hooks/tests/useGatewayForm.test.ts | 1 + apps/evm/src/i18n/appRouterI18n.tsx | 2 +- lingui.config.js | 18 +- locales/en.po | 1768 +++++++++++++++++ locales/zh.po | 1766 ++++++++++++++++ package.json | 8 +- pnpm-lock.yaml | 21 +- 13 files changed, 3578 insertions(+), 50 deletions(-) create mode 100644 locales/en.po create mode 100644 locales/zh.po diff --git a/.husky/pre-commit b/.husky/pre-commit index 028b445f6..7b57e79d6 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -6,4 +6,4 @@ if [ -t 2 ]; then exec >/dev/tty 2>&1 fi -pnpm lint-staged -c .lintstagedrc && pnpm files:check +pnpm lingui:extract && git add locales/en.po locales/zh.po && pnpm lint-staged -c .lintstagedrc && pnpm files:check diff --git a/apps/bob-pay/lingui.config.js b/apps/bob-pay/lingui.config.js index 82f1610ab..b1b2f696f 100644 --- a/apps/bob-pay/lingui.config.js +++ b/apps/bob-pay/lingui.config.js @@ -1,14 +1,3 @@ -/** @type {import('@lingui/conf').LinguiConfig} */ -module.exports = { - locales: ['en', 'zh'], - sourceLocale: 'en', - fallbackLocales: { - default: 'en' - }, - catalogs: [ - { - path: 'src/locales/{locale}', - include: ['src/'] - } - ] -}; +const linguiConfig = require('../../lingui.config'); + +module.exports = linguiConfig; diff --git a/apps/bob-pay/package.json b/apps/bob-pay/package.json index 3c7276f89..bf43b456f 100644 --- a/apps/bob-pay/package.json +++ b/apps/bob-pay/package.json @@ -54,8 +54,6 @@ "yup": "^0.32.11" }, "devDependencies": { - "@lingui/cli": "^4.11.0", - "@lingui/conf": "^4.11.0", "@lingui/loader": "^4.11.0", "@lingui/macro": "^4.11.0", "@lingui/swc-plugin": "4.0.8", diff --git a/apps/bob-pay/src/i18n/appRouterI18n.tsx b/apps/bob-pay/src/i18n/appRouterI18n.tsx index 41599028c..6850e301d 100644 --- a/apps/bob-pay/src/i18n/appRouterI18n.tsx +++ b/apps/bob-pay/src/i18n/appRouterI18n.tsx @@ -12,7 +12,7 @@ type SupportedLocales = string; async function loadCatalog(locale: SupportedLocales): Promise<{ [k: string]: Messages; }> { - const { messages } = await import(`../locales/${locale}.po`); + const { messages } = await import(`../../../../locales/${locale}.po`); return { [locale]: messages }; } diff --git a/apps/evm/lingui.config.js b/apps/evm/lingui.config.js index 82f1610ab..b1b2f696f 100644 --- a/apps/evm/lingui.config.js +++ b/apps/evm/lingui.config.js @@ -1,14 +1,3 @@ -/** @type {import('@lingui/conf').LinguiConfig} */ -module.exports = { - locales: ['en', 'zh'], - sourceLocale: 'en', - fallbackLocales: { - default: 'en' - }, - catalogs: [ - { - path: 'src/locales/{locale}', - include: ['src/'] - } - ] -}; +const linguiConfig = require('../../lingui.config'); + +module.exports = linguiConfig; diff --git a/apps/evm/package.json b/apps/evm/package.json index 53afb8ff6..6f1fea3d4 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -59,12 +59,10 @@ "yup": "^0.32.11" }, "devDependencies": { - "@gobob/test-utils": "workspace:^", - "@lingui/cli": "^4.11.0", - "@lingui/conf": "^4.11.0", "@lingui/loader": "^4.11.0", "@lingui/macro": "^4.11.0", "@lingui/swc-plugin": "4.0.8", + "@gobob/test-utils": "workspace:^", "@types/big.js": "^6.2.0", "@types/negotiator": "^0.6.3", "@types/node": "^20", diff --git a/apps/evm/src/app/[lang]/(bridge)/hooks/tests/useGatewayForm.test.ts b/apps/evm/src/app/[lang]/(bridge)/hooks/tests/useGatewayForm.test.ts index fed494c53..94563ab91 100644 --- a/apps/evm/src/app/[lang]/(bridge)/hooks/tests/useGatewayForm.test.ts +++ b/apps/evm/src/app/[lang]/(bridge)/hooks/tests/useGatewayForm.test.ts @@ -4,6 +4,7 @@ import { useAccount, useIsContract } from '@gobob/wagmi'; import { useAccount as useSatsAccount } from '@gobob/sats-wagmi'; import { useGatewayForm } from '../useGatewayForm'; + import { BRIDGE_AMOUNT, BRIDGE_ASSET, BRIDGE_RECIPIENT } from '@/lib/form/bridge'; vi.mock(import('@gobob/wagmi'), async (importOriginal) => { diff --git a/apps/evm/src/i18n/appRouterI18n.tsx b/apps/evm/src/i18n/appRouterI18n.tsx index 41599028c..6850e301d 100644 --- a/apps/evm/src/i18n/appRouterI18n.tsx +++ b/apps/evm/src/i18n/appRouterI18n.tsx @@ -12,7 +12,7 @@ type SupportedLocales = string; async function loadCatalog(locale: SupportedLocales): Promise<{ [k: string]: Messages; }> { - const { messages } = await import(`../locales/${locale}.po`); + const { messages } = await import(`../../../../locales/${locale}.po`); return { [locale]: messages }; } diff --git a/lingui.config.js b/lingui.config.js index 43e83ba5b..d40187955 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -1,4 +1,20 @@ /** @type {import('@lingui/conf').LinguiConfig} */ module.exports = { - extends: ['apps/evm/lingui.config.js'] + locales: ['en', 'zh'], + sourceLocale: 'en', + fallbackLocales: { + default: 'en' + }, + // catalogs: [ + // { + // path: 'locales/{locale}', + // include: ['apps/evm/src', 'apps/bob-pay/src'] + // } + // ], + catalogs: [ + { + path: '/locales/{locale}', + include: ['/apps/evm/src', '/apps/bob-pay/src'] + } + ] }; diff --git a/locales/en.po b/locales/en.po new file mode 100644 index 000000000..3945a6520 --- /dev/null +++ b/locales/en.po @@ -0,0 +1,1768 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2024-11-08 20:04+0300\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:80 +msgid ", due to the challenge period" +msgstr ", due to the challenge period" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:49 +msgid "{0} ago" +msgstr "{0} ago" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 +msgid "{0} remaining" +msgstr "{0} remaining" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 +msgid "{0} until next draw" +msgstr "{0} until next draw" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:40 +msgid "{0} until quest ends" +msgstr "{0} until quest ends" + +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 +msgid "{0} until voting round ends" +msgstr "{0} until voting round ends" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 +msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." +msgstr "* The multipliers displayed are subject to change based on the payout structure of the respective projects." + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 +msgid "< 1 minute" +msgstr "< 1 minute" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 +msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" +msgstr "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 +msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" +msgstr "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 +msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." +msgstr "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 +msgid "2 hours" +msgstr "2 hours" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:218 +msgid "3rd Party" +msgstr "3rd Party" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:20 +#: apps/bob-pay/src/app/[lang]/404/page.tsx:14 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:20 +#: apps/evm/src/app/[lang]/404/page.tsx:14 +msgid "404 Error" +msgstr "404 Error" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 +msgid "7 days" +msgstr "7 days" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 +#: apps/evm/src/components/Layout/Header.tsx:112 +#: apps/evm/src/components/Layout/Sidebar.tsx:73 +msgid "About" +msgstr "About" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:106 +msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." +msgstr "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:94 +msgid "Advanced Fee Settings" +msgstr "Advanced Fee Settings" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 +msgid "All Apps" +msgstr "All Apps" + +#: apps/evm/src/components/LoginSection/LoginSection.tsx:11 +msgid "Already harvesting?" +msgstr "Already harvesting?" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 +#: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 +msgid "Amount" +msgstr "Amount" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:26 +msgid "An Exclusive Bitcoin Staking and DeFi Campaign" +msgstr "An Exclusive Bitcoin Staking and DeFi Campaign" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 +msgid "and that you have read and understood our" +msgstr "and that you have read and understood our" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:180 +msgid "Apply" +msgstr "Apply" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:523 +msgid "Approve" +msgstr "Approve" + +#: apps/evm/src/app/[lang]/apps/page.tsx:14 +#: apps/evm/src/components/Layout/Header.tsx:72 +#: apps/evm/src/components/Layout/Sidebar.tsx:47 +msgid "Apps" +msgstr "Apps" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 +msgid "Apps Used" +msgstr "Apps Used" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 +msgid "Asset" +msgstr "Asset" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 +msgid "Asset Details" +msgstr "Asset Details" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 +msgid "Audited by" +msgstr "Audited by" + +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 +msgid "Authorize Wallet" +msgstr "Authorize Wallet" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "Babylon points" +msgstr "Babylon points" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 +msgid "Balance" +msgstr "Balance" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 +msgid "Base Assets" +msgstr "Base Assets" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 +msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" +msgstr "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" + +#: apps/evm/src/components/Logo/Logo.tsx:37 +msgid "BOB" +msgstr "BOB" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:215 +msgid "BOB Bridge" +msgstr "BOB Bridge" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:22 +msgid "BOB Ecosystem on OKX Cryptopedia" +msgstr "BOB Ecosystem on OKX Cryptopedia" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:92 +msgid "BOB Fusion: The Final Season" +msgstr "BOB Fusion: The Final Season" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 +msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" +msgstr "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 +msgid "BOB Gateway is live!" +msgstr "BOB Gateway is live!" + +#: apps/bob-pay/src/app/[lang]/layout.tsx:27 +#: apps/bob-pay/src/app/[lang]/layout.tsx:46 +#: apps/evm/src/app/[lang]/layout.tsx:30 +#: apps/evm/src/app/[lang]/layout.tsx:49 +msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" +msgstr "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:36 +msgid "BOB Pay is currently in testing. Please try it at your own risk." +msgstr "BOB Pay is currently in testing. Please try it at your own risk." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 +msgid "BOB TVL Progress" +msgstr "BOB TVL Progress" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:25 +msgid "BOB Wallet" +msgstr "BOB Wallet" + +#: apps/bob-pay/src/app/[lang]/page.tsx:13 +#: apps/evm/src/app/[lang]/(bridge)/bridge/page.tsx:14 +#: apps/evm/src/app/[lang]/page.tsx:15 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 +#: apps/evm/src/components/Layout/Header.tsx:69 +#: apps/evm/src/components/Layout/Sidebar.tsx:44 +msgid "Bridge" +msgstr "Bridge" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:524 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 +msgid "Bridge Asset" +msgstr "Bridge Asset" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 +msgid "Bridge Assets" +msgstr "Bridge Assets" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 +msgid "Bridge BTC LSTs to BOB" +msgstr "Bridge BTC LSTs to BOB" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:519 +msgid "Bridge Disabled" +msgstr "Bridge Disabled" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:208 +msgid "bridge network" +msgstr "bridge network" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:192 +msgid "Bridge to BOB" +msgstr "Bridge to BOB" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 +msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." +msgstr "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 +msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." +msgstr "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 +msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." +msgstr "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 +msgid "BTC LST Lending" +msgstr "BTC LST Lending" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 +msgid "By clicking ‘Connect’ you acknowledge and agree to the" +msgstr "By clicking ‘Connect’ you acknowledge and agree to the" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:51 +msgid "By logging in, you agree to our" +msgstr "By logging in, you agree to our" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 +msgid "Cancel" +msgstr "Cancel" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 +msgid "Cannot stake into {assetName} due to insufficient liquidity." +msgstr "Cannot stake into {assetName} due to insufficient liquidity." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 +msgid "Category" +msgstr "Category" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:521 +msgid "Checking Allowance" +msgstr "Checking Allowance" + +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 +msgid "choose available wallets" +msgstr "choose available wallets" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 +msgid "Chose any of the existing liquid staking provider to mint your BTC LST." +msgstr "Chose any of the existing liquid staking provider to mint your BTC LST." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 +msgid "Click the <0/> icon next to your favourite apps" +msgstr "Click the <0/> icon next to your favourite apps" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:108 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 +msgid "Close" +msgstr "Close" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:106 +msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" +msgstr "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:87 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:83 +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:42 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 +msgid "Coming Soon" +msgstr "Coming Soon" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 +msgid "Coming SoonSteps" +msgstr "Coming SoonSteps" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 +msgid "Common Prefix auditor" +msgstr "Common Prefix auditor" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 +msgid "Community Voting" +msgstr "Community Voting" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 +msgid "Community Voting Information" +msgstr "Community Voting Information" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:56 +msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." +msgstr "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 +msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" +msgstr "Congratulations you won!<0/>Take a screenshot to share with your friends!" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:94 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:107 +msgid "Connect BTC Wallet" +msgstr "Connect BTC Wallet" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 +msgid "Connect BTC wallet to access fee rate settings." +msgstr "Connect BTC wallet to access fee rate settings." + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:141 +msgid "Connect request is already pending" +msgstr "Connect request is already pending" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:77 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:63 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:220 +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 +msgid "Connect Wallet" +msgstr "Connect Wallet" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:302 +msgid "Connect your Bitcoin Wallet (Optional)" +msgstr "Connect your Bitcoin Wallet (Optional)" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:287 +msgid "Connect your EVM Wallet (Mandatory)" +msgstr "Connect your EVM Wallet (Mandatory)" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 +msgid "Connected with <0>{wallet}" +msgstr "Connected with <0>{wallet}" + +#: apps/bob-pay/src/app/[lang]/receive/Receive.tsx:70 +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 +msgid "Copy Address" +msgstr "Copy Address" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 +msgid "Copy referral URL" +msgstr "Copy referral URL" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 +msgid "Create Account" +msgstr "Create Account" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:63 +msgid "Current Harvest" +msgstr "Current Harvest" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:70 +msgid "Current Leaderboard Rank" +msgstr "Current Leaderboard Rank" + +#: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:33 +msgid "Current Spice" +msgstr "Current Spice" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 +msgid "Current TVL:" +msgstr "Current TVL:" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 +msgid "Day" +msgstr "Day" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 +msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." +msgstr "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:132 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 +msgid "Deposit" +msgstr "Deposit" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 +msgid "Deposit any eligible BTC LSTs into a lending market on BOB." +msgstr "Deposit any eligible BTC LSTs into a lending market on BOB." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 +msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." +msgstr "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 +msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" +msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 +msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." +msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." + +#: apps/evm/src/components/Layout/Header.tsx:109 +#: apps/evm/src/components/Layout/Sidebar.tsx:70 +msgid "Dev" +msgstr "Dev" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 +msgid "DEX *" +msgstr "DEX *" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 +msgid "DEX Liquidity Provisioning" +msgstr "DEX Liquidity Provisioning" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:76 +msgid "Disconnected" +msgstr "Disconnected" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 +msgid "Discover All Apps" +msgstr "Discover All Apps" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:31 +msgid "Docs" +msgstr "Docs" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:196 +msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." +msgstr "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 +msgid "Don't show this message again" +msgstr "Don't show this message again" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 +msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." +msgstr "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 +msgid "Earned Spice" +msgstr "Earned Spice" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 +msgid "enable ETH top-up for transaction fees on BOB network" +msgstr "enable ETH top-up for transaction fees on BOB network" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 +msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." +msgstr "Ensure that you are transferring from the BOB Network to avoid any loss of funds." + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 +msgid "Enter Address" +msgstr "Enter Address" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:549 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 +msgid "Enter destination address" +msgstr "Enter destination address" + +#: apps/evm/src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 +msgid "Enter referral code (optional)" +msgstr "Enter referral code (optional)" + +#: apps/evm/src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 +msgid "Enter your access code (optional):" +msgstr "Enter your access code (optional):" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:137 +msgid "Estimated within 1 hour" +msgstr "Estimated within 1 hour" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:129 +msgid "Estimated within 30 minutes" +msgstr "Estimated within 30 minutes" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:121 +msgid "Estimated within the next block" +msgstr "Estimated within the next block" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:144 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:180 +msgid "Failed to connect to {0}" +msgstr "Failed to connect to {0}" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:107 +msgid "Failed to finalize." +msgstr "Failed to finalize." + +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 +msgid "Failed to get estimated fee" +msgstr "Failed to get estimated fee" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 +msgid "Failed to send {amount} {0}" +msgstr "Failed to send {amount} {0}" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:69 +msgid "Failed to submit proof." +msgstr "Failed to submit proof." + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 +msgid "Failed to submit transaction" +msgstr "Failed to submit transaction" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:87 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:113 +msgid "Failed to withdraw to L2. Please try again." +msgstr "Failed to withdraw to L2. Please try again." + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:91 +msgid "Failed to withdraw USDT to L1. Please try again." +msgstr "Failed to withdraw USDT to L1. Please try again." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 +msgid "Featured Assets" +msgstr "Featured Assets" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 +msgid "Fee" +msgstr "Fee" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 +msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." +msgstr "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:77 +msgid "Fetching bridging operations..." +msgstr "Fetching bridging operations..." + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 +msgid "Final Leaderboard Rank" +msgstr "Final Leaderboard Rank" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:47 +msgid "Finalize" +msgstr "Finalize" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 +msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." +msgstr "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:120 +msgid "Follow us on X" +msgstr "Follow us on X" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:40 +msgid "Follow us on X for updates" +msgstr "Follow us on X for updates" + +#: apps/evm/src/app/[lang]/fusion/page.tsx:16 +#: apps/evm/src/components/Layout/Header.tsx:83 +#: apps/evm/src/components/Layout/Sidebar.tsx:58 +msgid "Fusion" +msgstr "Fusion" + +#: apps/evm/src/components/Logo/Logo.tsx:41 +msgid "FUSION" +msgstr "FUSION" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 +msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." +msgstr "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 +msgid "Fusion season three" +msgstr "Fusion season three" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 +msgid "Fusion Users:" +msgstr "Fusion Users:" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 +msgid "Gas Token" +msgstr "Gas Token" + +#: apps/evm/src/app/[lang]/geoblock/page.tsx:14 +msgid "Geoblock" +msgstr "Geoblock" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 +msgid "Get" +msgstr "Get" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 +msgid "Get ETH for transaction fees on BOB" +msgstr "Get ETH for transaction fees on BOB" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 +msgid "Get tickets" +msgstr "Get tickets" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:195 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:209 +msgid "go back" +msgstr "go back" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:30 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:30 +msgid "Go Back" +msgstr "Go Back" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:91 +msgid "Got it!" +msgstr "Got it!" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 +msgid "Grab the final opportunity to harvest Spice. Join Season 3." +msgstr "Grab the final opportunity to harvest Spice. Join Season 3." + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 +msgid "Harvest {pointsMissing} more Spice to play" +msgstr "Harvest {pointsMissing} more Spice to play" + +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:95 +msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." +msgstr "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 +msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" +msgstr "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" + +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:88 +msgid "Hero dots" +msgstr "Hero dots" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 +msgid "Holding" +msgstr "Holding" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 +msgid "Hot Strategies" +msgstr "Hot Strategies" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 +msgid "How to vote:" +msgstr "How to vote:" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 +msgid "Hybrid L2" +msgstr "Hybrid L2" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 +msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." +msgstr "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 +msgid "Incentives" +msgstr "Incentives" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:115 +msgid "Invalid referral code. You can try again, or proceed without one." +msgstr "Invalid referral code. You can try again, or proceed without one." + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 +msgid "Last 24 Hours" +msgstr "Last 24 Hours" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 +msgid "Last 7 Days" +msgstr "Last 7 Days" + +#: apps/evm/src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 +msgid "Last Week's Winners" +msgstr "Last Week's Winners" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 +msgid "Leaderboard" +msgstr "Leaderboard" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:105 +msgid "Learn More" +msgstr "Learn More" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 +msgid "Learn more about {0}" +msgstr "Learn more about {0}" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 +msgid "Lending" +msgstr "Lending" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 +msgid "Lending protocol points" +msgstr "Lending protocol points" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 +msgid "Lending rate of BTC LSTs" +msgstr "Lending rate of BTC LSTs" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 +msgid "Lending rate of satUSD" +msgstr "Lending rate of satUSD" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 +msgid "Lending, Restaking, CDP *" +msgstr "Lending, Restaking, CDP *" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 +msgid "Liquid Staking" +msgstr "Liquid Staking" + +#: apps/bob-pay/src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:19 +msgid "Loading transactions..." +msgstr "Loading transactions..." + +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:51 +msgid "Loading..." +msgstr "Loading..." + +#: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:89 +msgid "Locked Amount" +msgstr "Locked Amount" + +#: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:80 +msgid "Locked Capital Breakdown" +msgstr "Locked Capital Breakdown" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 +msgid "Log in" +msgstr "Log in" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 +msgid "Log in to View Dashboard" +msgstr "Log in to View Dashboard" + +#: apps/bob-pay/src/app/[lang]/login/page.tsx:14 +msgid "Login" +msgstr "Login" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 +msgid "Login to play" +msgstr "Login to play" + +#: apps/evm/src/components/LoginSection/LoginSection.tsx:14 +msgid "Login with wallet" +msgstr "Login with wallet" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 +msgid "Lottery" +msgstr "Lottery" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "LST provider points" +msgstr "LST provider points" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 +msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." +msgstr "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 +msgid "Maximum points will be received by providing BTC LST liquidity." +msgstr "Maximum points will be received by providing BTC LST liquidity." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 +msgid "Mint and Lend satUSD" +msgstr "Mint and Lend satUSD" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 +msgid "Mint more BTC LSTs with these borrowed assets." +msgstr "Mint more BTC LSTs with these borrowed assets." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 +msgid "Mint satUSD and supply it into a lending market on BOB" +msgstr "Mint satUSD and supply it into a lending market on BOB" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 +msgid "Multipliers" +msgstr "Multipliers" + +#: apps/evm/src/components/Layout/Header.tsx:115 +#: apps/evm/src/components/Layout/Sidebar.tsx:61 +msgid "Multisig" +msgstr "Multisig" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 +msgid "My Apps" +msgstr "My Apps" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 +msgid "My Total Harvest" +msgstr "My Total Harvest" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 +msgid "Name" +msgstr "Name" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 +msgid "navigate to {name} app page" +msgstr "navigate to {name} app page" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 +msgid "Navigate to bridge page" +msgstr "Navigate to bridge page" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 +msgid "navigate to Common Prefix audit" +msgstr "navigate to Common Prefix audit" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:46 +msgid "navigate to discord" +msgstr "navigate to discord" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:90 +msgid "navigate to ecosystem section in fusion page" +msgstr "navigate to ecosystem section in fusion page" + +#: apps/evm/src/components/Logo/Logo.tsx:30 +msgid "navigate to home page" +msgstr "navigate to home page" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 +msgid "navigate to OtterSec audit" +msgstr "navigate to OtterSec audit" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 +msgid "navigate to Trails of Bits audit" +msgstr "navigate to Trails of Bits audit" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:37 +msgid "navigate to X social" +msgstr "navigate to X social" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:47 +msgid "Need support? Enter our Discord." +msgstr "Need support? Enter our Discord." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 +msgid "Network Fee" +msgstr "Network Fee" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 +msgid "Network Fee Rate" +msgstr "Network Fee Rate" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:49 +msgid "New Quests Coming Soon" +msgstr "New Quests Coming Soon" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 +msgid "new tickets drop in {0}" +msgstr "new tickets drop in {0}" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:70 +msgid "No assets shown" +msgstr "No assets shown" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:96 +msgid "No bridging operations found" +msgstr "No bridging operations found" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 +msgid "No new goal at the moment. Stay tuned for updates!" +msgstr "No new goal at the moment. Stay tuned for updates!" + +#: apps/bob-pay/src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:29 +msgid "No transactions found" +msgstr "No transactions found" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 +msgid "Not your lucky day... yet!" +msgstr "Not your lucky day... yet!" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:30 +msgid "OKX Cryptopedia" +msgstr "OKX Cryptopedia" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 +msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." +msgstr "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 +msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." +msgstr "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." + +#: apps/evm/src/components/Layout/Header.tsx:57 +msgid "open drawer" +msgstr "open drawer" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 +msgid "Optional: It's possible to repeat steps 2-4 multiple times." +msgstr "Optional: It's possible to repeat steps 2-4 multiple times." + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 +msgid "or" +msgstr "or" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 +msgid "OtterSec auditor" +msgstr "OtterSec auditor" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:62 +msgid "Pending" +msgstr "Pending" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 +msgid "Play" +msgstr "Play" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:93 +msgid "Please confirm allowance approval for {0} in your wallet" +msgstr "Please confirm allowance approval for {0} in your wallet" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 +msgid "Please confirm the transaction in your wallet" +msgstr "Please confirm the transaction in your wallet" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:91 +msgid "Please confirm transaction in your wallet" +msgstr "Please confirm transaction in your wallet" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:73 +msgid "Please connect a wallet" +msgstr "Please connect a wallet" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 +msgid "Please note:" +msgstr "Please note:" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:102 +msgid "POWERED BY BTC & ETH" +msgstr "POWERED BY BTC & ETH" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 +msgid "Preparing..." +msgstr "Preparing..." + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:272 +msgid "Privacy policy" +msgstr "Privacy policy" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 +msgid "Protocol Fee" +msgstr "Protocol Fee" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:41 +msgid "Prove" +msgstr "Prove" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 +msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" +msgstr "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 +msgid "Provide liquidity into Oku DEX" +msgstr "Provide liquidity into Oku DEX" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:49 +msgid "Quests" +msgstr "Quests" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 +msgid "Quests Completed" +msgstr "Quests Completed" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 +msgid "Quests Only" +msgstr "Quests Only" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 +msgid "Read it now." +msgstr "Read it now." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 +msgid "Read more here" +msgstr "Read more here" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 +msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." +msgstr "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." + +#: apps/bob-pay/src/app/[lang]/receive/page.tsx:14 +#: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:27 +#: apps/bob-pay/src/components/Layout/Header.tsx:38 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:113 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 +msgid "Receive" +msgstr "Receive" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 +msgid "Receive {0}" +msgstr "Receive {0}" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 +msgid "Receive {ticker}" +msgstr "Receive {ticker}" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:224 +msgid "Recipient" +msgstr "Recipient" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 +msgid "referral table" +msgstr "referral table" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 +msgid "Referred by" +msgstr "Referred by" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 +msgid "Released: BOB's Hybrid L2 vision paper" +msgstr "Released: BOB's Hybrid L2 vision paper" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 +msgid "Remove vote" +msgstr "Remove vote" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 +msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." +msgstr "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 +msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." +msgstr "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 +msgid "Restaking" +msgstr "Restaking" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 +msgid "Rewards" +msgstr "Rewards" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 +msgid "Satoshi protocol points" +msgstr "Satoshi protocol points" + +#: apps/bob-pay/src/app/[lang]/send/components/ScannerModal/ScannerModal.tsx:19 +msgid "Scan QR Code" +msgstr "Scan QR Code" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:77 +msgid "Season 1 & 2 (Completed)" +msgstr "Season 1 & 2 (Completed)" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 +msgid "Season 1 & 2 Total Spice (Completed):" +msgstr "Season 1 & 2 Total Spice (Completed):" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:88 +msgid "Season 2 Final Rank" +msgstr "Season 2 Final Rank" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:57 +msgid "Season 3 (Ongoing)" +msgstr "Season 3 (Ongoing)" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 +msgid "Season 3 Harvested Spice" +msgstr "Season 3 Harvested Spice" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 +msgid "Season Three" +msgstr "Season Three" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:217 +msgid "Select Bitcoin Wallet" +msgstr "Select Bitcoin Wallet" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:203 +msgid "Select EVM Wallet" +msgstr "Select EVM Wallet" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 +msgid "select gas token" +msgstr "select gas token" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 +msgid "Select Network" +msgstr "Select Network" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:172 +msgid "select network to bridge from" +msgstr "select network to bridge from" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:182 +msgid "select network to bridge to" +msgstr "select network to bridge to" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 +msgid "Select Strategy" +msgstr "Select Strategy" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 +msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." +msgstr "Select the wrapped Bitcoin asset and the amount that you want to bridge." + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 +msgid "Select Token" +msgstr "Select Token" + +#: apps/bob-pay/src/app/[lang]/send/page.tsx:14 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 +#: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 +#: apps/bob-pay/src/components/Layout/Header.tsx:38 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 +msgid "Send" +msgstr "Send" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 +msgid "Send {0}" +msgstr "Send {0}" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 +msgid "Send {ticker}" +msgstr "Send {ticker}" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 +msgid "Share on X" +msgstr "Share on X" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 +msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" +msgstr "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" + +#: apps/evm/src/components/Layout/Header.tsx:90 +msgid "Show secondary navigation" +msgstr "Show secondary navigation" + +#: apps/evm/src/app/[lang]/sign-up/page.tsx:14 +msgid "Sign-Up" +msgstr "Sign-Up" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 +msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." +msgstr "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:112 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:29 +msgid "Something went wrong. Please try again later." +msgstr "Something went wrong. Please try again later." + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:72 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:43 +#: apps/evm/src/components/SignUpButton/SignUpButton.tsx:29 +msgid "Something went wrong. Please try connecting your wallet again." +msgstr "Something went wrong. Please try connecting your wallet again." + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:23 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:23 +msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" +msgstr "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 +msgid "Spice" +msgstr "Spice" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 +msgid "Spice + Bedrock Diamonds + Babylon Points" +msgstr "Spice + Bedrock Diamonds + Babylon Points" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 +msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" +msgstr "Spice + Pell Points + Bedrock Diamond + Babylon Points" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 +msgid "Spice + Pell Points + Solv XP + Babylon Points" +msgstr "Spice + Pell Points + Solv XP + Babylon Points" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 +msgid "Spice + Segment Points + Supply APR" +msgstr "Spice + Segment Points + Supply APR" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 +msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" +msgstr "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 +msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" +msgstr "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 +msgid "Spice + Shoebill Points + Supply APR" +msgstr "Spice + Shoebill Points + Supply APR" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 +msgid "Spice + Solv XP + Babylon Points" +msgstr "Spice + Solv XP + Babylon Points" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 +msgid "Spice Earned Across Apps" +msgstr "Spice Earned Across Apps" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 +msgid "Spice Multiplier" +msgstr "Spice Multiplier" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 +msgid "Spice Per Hour" +msgstr "Spice Per Hour" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "Spice points (Lower)" +msgstr "Spice points (Lower)" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 +msgid "Spice points (Medium)" +msgstr "Spice points (Medium)" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +msgid "Spice rewards (Higher)" +msgstr "Spice rewards (Higher)" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 +msgid "Spice rewards (Medium)" +msgstr "Spice rewards (Medium)" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 +#: apps/evm/src/app/[lang]/(bridge)/stake/page.tsx:14 +#: apps/evm/src/app/[lang]/(bridge)/stake/Stake.tsx:103 +#: apps/evm/src/components/Layout/Header.tsx:80 +#: apps/evm/src/components/Layout/Sidebar.tsx:55 +msgid "Stake" +msgstr "Stake" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 +msgid "Staking Token" +msgstr "Staking Token" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 +msgid "Start Harvesting" +msgstr "Start Harvesting" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:127 +msgid "Start Harvesting Spice" +msgstr "Start Harvesting Spice" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 +msgid "Step One" +msgstr "Step One" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 +msgid "Step Two" +msgstr "Step Two" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:100 +msgid "Successfully finalized transaction" +msgstr "Successfully finalized transaction" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 +msgid "Successfully sent {amount} {0}" +msgstr "Successfully sent {amount} {0}" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:62 +msgid "Successfully submitted ${0} proof" +msgstr "Successfully submitted ${0} proof" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 +msgid "Successfully transfered {0} {1}" +msgstr "Successfully transfered {0} {1}" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 +msgid "Supply seSOLVBTCBBN into Segment to earn interest." +msgstr "Supply seSOLVBTCBBN into Segment to earn interest." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 +msgid "Supply seUNIBTC into Segment to earn interest." +msgstr "Supply seUNIBTC into Segment to earn interest." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 +msgid "Supply tBTC into Segment to earn interest." +msgstr "Supply tBTC into Segment to earn interest." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 +msgid "Supply tBTC into Shoebill to earn interest." +msgstr "Supply tBTC into Shoebill to earn interest." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 +msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." +msgstr "Supply the newly minted satUSD into a <0>lending protocol on BOB." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 +msgid "Supply wBTC into Segment to earn interest." +msgstr "Supply wBTC into Segment to earn interest." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 +msgid "Supply wBTC into Shoebill to earn interest." +msgstr "Supply wBTC into Shoebill to earn interest." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 +msgid "Support your favourite BOB apps" +msgstr "Support your favourite BOB apps" + +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:84 +msgid "Switch to {capitalizedName}" +msgstr "Switch to {capitalizedName}" + +#: apps/evm/src/components/Layout/Header.tsx:106 +#: apps/evm/src/components/Layout/Sidebar.tsx:67 +msgid "T&Cs" +msgstr "T&Cs" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:35 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:35 +msgid "Take em home" +msgstr "Take em home" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:61 +msgid "Terms and Conditions" +msgstr "Terms and Conditions" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:264 +msgid "Terms of Service" +msgstr "Terms of Service" + +#: apps/evm/src/components/Logo/Logo.tsx:47 +msgid "Testnet" +msgstr "Testnet" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:31 +msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." +msgstr "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 +msgid "The fastest and easiest way to bridge BTC to BOB." +msgstr "The fastest and easiest way to bridge BTC to BOB." + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 +msgid "The final season" +msgstr "The final season" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:99 +msgid "THE FIRST HYBRID L2" +msgstr "THE FIRST HYBRID L2" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 +msgid "The leaderboard resets for the new season" +msgstr "The leaderboard resets for the new season" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 +msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." +msgstr "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 +msgid "The number of BOB ecosystem apps that you have harvested Spice with" +msgstr "The number of BOB ecosystem apps that you have harvested Spice with" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 +msgid "The number of Intract and Galxe quests that you have completed" +msgstr "The number of Intract and Galxe quests that you have completed" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:61 +msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" +msgstr "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 +msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." +msgstr "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 +msgid "" +"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" +"still confirm your transaction within a reasonable time." +msgstr "" +"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" +"still confirm your transaction within a reasonable time." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:172 +msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." +msgstr "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:163 +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 +msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." +msgstr "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 +msgid "There are no apps to be displayed" +msgstr "There are no apps to be displayed" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 +msgid "There is currently no available liquidity to onramp BTC into {assetName}." +msgstr "There is currently no available liquidity to onramp BTC into {assetName}." + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:23 +msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." +msgstr "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 +msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." +msgstr "This is the final amount you will receive after deducting the Protocol fees from your input amount." + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:17 +msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." +msgstr "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 +msgid "Time left until voting round ends" +msgstr "Time left until voting round ends" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 +msgid "To cast your vote, please log in" +msgstr "To cast your vote, please log in" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:123 +msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." +msgstr "To stay up-to date with the BOB ecosystem follow @build_on_bob." + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 +msgid "Top up Gas" +msgstr "Top up Gas" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:39 +msgid "Total Assets" +msgstr "Total Assets" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:81 +msgid "Total Harvest" +msgstr "Total Harvest" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 +msgid "Total Referrals Earnings:" +msgstr "Total Referrals Earnings:" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 +msgid "Total Spice Harvested" +msgstr "Total Spice Harvested" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 +msgid "Trails of Bits auditor" +msgstr "Trails of Bits auditor" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 +msgid "Transaction submitted" +msgstr "Transaction submitted" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:50 +msgid "Transaction Submitted" +msgstr "Transaction Submitted" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 +msgid "Transfer time" +msgstr "Transfer time" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 +msgid "TVL" +msgstr "TVL" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:150 +msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." +msgstr "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 +msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." +msgstr "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:230 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:71 +msgid "Unknown" +msgstr "Unknown" + +#: apps/evm/src/app/[lang]/(bridge)/stake/Stake.tsx:106 +msgid "Unstake" +msgstr "Unstake" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:181 +msgid "USDT can only be withdrawn to Ethereum." +msgstr "USDT can only be withdrawn to Ethereum." + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:173 +msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" +msgstr "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 +msgid "Use any of the <0>supported bridges." +msgstr "Use any of the <0>supported bridges." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 +msgid "Use Apps" +msgstr "Use Apps" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 +msgid "Use BTC LSTs as collateral to borrow other assets" +msgstr "Use BTC LSTs as collateral to borrow other assets" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 +msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." +msgstr "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 +msgid "Use the deposited satUSD as collateral to borrow any BTC LST." +msgstr "Use the deposited satUSD as collateral to borrow any BTC LST." + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 +msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." +msgstr "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 +msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." +msgstr "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:110 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:27 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 +msgid "User rejected the request" +msgstr "User rejected the request" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 +msgid "Username" +msgstr "Username" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:223 +msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." +msgstr "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:29 +msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." +msgstr "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:106 +msgid "View All Transactions" +msgstr "View All Transactions" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:78 +msgid "View Intract" +msgstr "View Intract" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 +msgid "View Multipliers" +msgstr "View Multipliers" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:78 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 +msgid "View Quests" +msgstr "View Quests" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 +msgid "Vote" +msgstr "Vote" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 +msgid "Vote for maximum three projects per week" +msgstr "Vote for maximum three projects per week" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 +msgid "Vote for maximum three projects per week by clicking on the flame icon." +msgstr "Vote for maximum three projects per week by clicking on the flame icon." + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 +msgid "Votes Left:" +msgstr "Votes Left:" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 +msgid "Voting limit exceeded" +msgstr "Voting limit exceeded" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:54 +msgid "Waiting for approval" +msgstr "Waiting for approval" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:52 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 +msgid "Waiting for confirmation" +msgstr "Waiting for confirmation" + +#: apps/bob-pay/src/app/[lang]/wallet/page.tsx:14 +#: apps/evm/src/app/[lang]/wallet/page.tsx:15 +#: apps/evm/src/components/Layout/Header.tsx:76 +#: apps/evm/src/components/Layout/Sidebar.tsx:51 +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 +msgid "Wallet" +msgstr "Wallet" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 +msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." +msgstr "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:14 +msgid "We're Sorry" +msgstr "We're Sorry" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 +msgid "Website" +msgstr "Website" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 +msgid "Welcome to BOB Fusion" +msgstr "Welcome to BOB Fusion" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 +msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." +msgstr "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 +msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." +msgstr "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 +msgid "Withdraw" +msgstr "Withdraw" + +#: apps/evm/src/components/WithdrawAlert/WithdrawAlert.tsx:33 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:161 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:211 +msgid "Withdraw Assets" +msgstr "Withdraw Assets" + +#: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:26 +msgid "Withdraw Locked Assets" +msgstr "Withdraw Locked Assets" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:138 +msgid "Withdraw to L1 failed. Please try again." +msgstr "Withdraw to L1 failed. Please try again." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 +msgid "Yield Assets" +msgstr "Yield Assets" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 +msgid "You" +msgstr "You" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 +msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." +msgstr "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 +msgid "You can change your votes at any time before the end of the weekly voting period" +msgstr "You can change your votes at any time before the end of the weekly voting period" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 +msgid "You Have 0 Tickets" +msgstr "You Have 0 Tickets" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:83 +msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." +msgstr "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 +msgid "You need at least {0} Spice to participate in Lottery." +msgstr "You need at least {0} Spice to participate in Lottery." + +#: apps/evm/src/components/WithdrawAlert/WithdrawAlert.tsx:30 +msgid "You still have assets locked in Season One. Please redeem your funds" +msgstr "You still have assets locked in Season One. Please redeem your funds" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 +msgid "You will need to actively monitor your position, especially if it has a small range." +msgstr "You will need to actively monitor your position, especially if it has a small range." + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 +msgid "You will receive" +msgstr "You will receive" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 +msgid "You will stake" +msgstr "You will stake" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 +msgid "You're Ready to Play!" +msgstr "You're Ready to Play!" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 +msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." +msgstr "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 +msgid "Your Active Referrals" +msgstr "Your Active Referrals" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 +msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." +msgstr "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:78 +msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." +msgstr "Your assets will be delivered shortly, with an estimated arrival time of aprox." + +#: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 +msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" +msgstr "Your available balance may differ from your wallet balance due to network fees and available liquidity" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:80 +msgid "Your funds are safe!" +msgstr "Your funds are safe!" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 +msgid "Your performance in seasons 1 & 2" +msgstr "Your performance in seasons 1 & 2" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 +msgid "Your Referral Code" +msgstr "Your Referral Code" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:53 +msgid "Your Spice Harvest Overview" +msgstr "Your Spice Harvest Overview" diff --git a/locales/zh.po b/locales/zh.po new file mode 100644 index 000000000..33596a8cf --- /dev/null +++ b/locales/zh.po @@ -0,0 +1,1766 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2024-11-08 20:04+0300\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: zh\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:80 +msgid ", due to the challenge period" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:49 +msgid "{0} ago" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 +msgid "{0} remaining" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 +msgid "{0} until next draw" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:40 +msgid "{0} until quest ends" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 +msgid "{0} until voting round ends" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 +msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 +msgid "< 1 minute" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 +msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 +msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 +msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 +msgid "2 hours" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:218 +msgid "3rd Party" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:20 +#: apps/bob-pay/src/app/[lang]/404/page.tsx:14 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:20 +#: apps/evm/src/app/[lang]/404/page.tsx:14 +msgid "404 Error" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 +msgid "7 days" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 +#: apps/evm/src/components/Layout/Header.tsx:112 +#: apps/evm/src/components/Layout/Sidebar.tsx:73 +msgid "About" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:106 +msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:94 +msgid "Advanced Fee Settings" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 +msgid "All Apps" +msgstr "" + +#: apps/evm/src/components/LoginSection/LoginSection.tsx:11 +msgid "Already harvesting?" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 +#: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 +msgid "Amount" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:26 +msgid "An Exclusive Bitcoin Staking and DeFi Campaign" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 +msgid "and that you have read and understood our" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:180 +msgid "Apply" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:523 +msgid "Approve" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/page.tsx:14 +#: apps/evm/src/components/Layout/Header.tsx:72 +#: apps/evm/src/components/Layout/Sidebar.tsx:47 +msgid "Apps" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 +msgid "Apps Used" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 +msgid "Asset" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 +msgid "Asset Details" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 +msgid "Audited by" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 +msgid "Authorize Wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "Babylon points" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 +msgid "Balance" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 +msgid "Base Assets" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 +msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" +msgstr "" + +#: apps/evm/src/components/Logo/Logo.tsx:37 +msgid "BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:215 +msgid "BOB Bridge" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:22 +msgid "BOB Ecosystem on OKX Cryptopedia" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:92 +msgid "BOB Fusion: The Final Season" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 +msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 +msgid "BOB Gateway is live!" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/layout.tsx:27 +#: apps/bob-pay/src/app/[lang]/layout.tsx:46 +#: apps/evm/src/app/[lang]/layout.tsx:30 +#: apps/evm/src/app/[lang]/layout.tsx:49 +msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:36 +msgid "BOB Pay is currently in testing. Please try it at your own risk." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 +msgid "BOB TVL Progress" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:25 +msgid "BOB Wallet" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/page.tsx:13 +#: apps/evm/src/app/[lang]/(bridge)/bridge/page.tsx:14 +#: apps/evm/src/app/[lang]/page.tsx:15 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 +#: apps/evm/src/components/Layout/Header.tsx:69 +#: apps/evm/src/components/Layout/Sidebar.tsx:44 +msgid "Bridge" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:524 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 +msgid "Bridge Asset" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 +msgid "Bridge Assets" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 +msgid "Bridge BTC LSTs to BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:519 +msgid "Bridge Disabled" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:208 +msgid "bridge network" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:192 +msgid "Bridge to BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 +msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 +msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 +msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 +msgid "BTC LST Lending" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 +msgid "By clicking ‘Connect’ you acknowledge and agree to the" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:51 +msgid "By logging in, you agree to our" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 +msgid "Cancel" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 +msgid "Cannot stake into {assetName} due to insufficient liquidity." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 +msgid "Category" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:521 +msgid "Checking Allowance" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 +msgid "choose available wallets" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 +msgid "Chose any of the existing liquid staking provider to mint your BTC LST." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 +msgid "Click the <0/> icon next to your favourite apps" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:108 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 +msgid "Close" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:106 +msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:87 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:83 +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:42 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 +msgid "Coming Soon" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 +msgid "Coming SoonSteps" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 +msgid "Common Prefix auditor" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 +msgid "Community Voting" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 +msgid "Community Voting Information" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:56 +msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 +msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:94 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:107 +msgid "Connect BTC Wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 +msgid "Connect BTC wallet to access fee rate settings." +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:141 +msgid "Connect request is already pending" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:77 +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:63 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:220 +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 +msgid "Connect Wallet" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:302 +msgid "Connect your Bitcoin Wallet (Optional)" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:287 +msgid "Connect your EVM Wallet (Mandatory)" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 +msgid "Connected with <0>{wallet}" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/receive/Receive.tsx:70 +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 +msgid "Copy Address" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 +msgid "Copy referral URL" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 +msgid "Create Account" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:63 +msgid "Current Harvest" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:70 +msgid "Current Leaderboard Rank" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:33 +msgid "Current Spice" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 +msgid "Current TVL:" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 +msgid "Day" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 +msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:132 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 +msgid "Deposit" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 +msgid "Deposit any eligible BTC LSTs into a lending market on BOB." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 +msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 +msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 +msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." +msgstr "" + +#: apps/evm/src/components/Layout/Header.tsx:109 +#: apps/evm/src/components/Layout/Sidebar.tsx:70 +msgid "Dev" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 +msgid "DEX *" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 +msgid "DEX Liquidity Provisioning" +msgstr "" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:76 +msgid "Disconnected" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 +msgid "Discover All Apps" +msgstr "" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:31 +msgid "Docs" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:196 +msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 +msgid "Don't show this message again" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 +msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 +msgid "Earned Spice" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 +msgid "enable ETH top-up for transaction fees on BOB network" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 +msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 +msgid "Enter Address" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:549 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 +msgid "Enter destination address" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 +msgid "Enter referral code (optional)" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 +msgid "Enter your access code (optional):" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:137 +msgid "Estimated within 1 hour" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:129 +msgid "Estimated within 30 minutes" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:121 +msgid "Estimated within the next block" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:144 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:180 +msgid "Failed to connect to {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:107 +msgid "Failed to finalize." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 +msgid "Failed to get estimated fee" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 +msgid "Failed to send {amount} {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:69 +msgid "Failed to submit proof." +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 +msgid "Failed to submit transaction" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:87 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:113 +msgid "Failed to withdraw to L2. Please try again." +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:91 +msgid "Failed to withdraw USDT to L1. Please try again." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 +msgid "Featured Assets" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 +msgid "Fee" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 +msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:77 +msgid "Fetching bridging operations..." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 +msgid "Final Leaderboard Rank" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:47 +msgid "Finalize" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 +msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:120 +msgid "Follow us on X" +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:40 +msgid "Follow us on X for updates" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/page.tsx:16 +#: apps/evm/src/components/Layout/Header.tsx:83 +#: apps/evm/src/components/Layout/Sidebar.tsx:58 +msgid "Fusion" +msgstr "" + +#: apps/evm/src/components/Logo/Logo.tsx:41 +msgid "FUSION" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 +msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 +msgid "Fusion season three" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 +msgid "Fusion Users:" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 +msgid "Gas Token" +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/page.tsx:14 +msgid "Geoblock" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 +msgid "Get" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 +msgid "Get ETH for transaction fees on BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 +msgid "Get tickets" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:195 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:209 +msgid "go back" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:30 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:30 +msgid "Go Back" +msgstr "" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:91 +msgid "Got it!" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 +msgid "Grab the final opportunity to harvest Spice. Join Season 3." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 +msgid "Harvest {pointsMissing} more Spice to play" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:95 +msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 +msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:88 +msgid "Hero dots" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 +msgid "Holding" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 +msgid "Hot Strategies" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 +msgid "How to vote:" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 +msgid "Hybrid L2" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 +msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 +msgid "Incentives" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:115 +msgid "Invalid referral code. You can try again, or proceed without one." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 +msgid "Last 24 Hours" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 +msgid "Last 7 Days" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 +msgid "Last Week's Winners" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 +msgid "Leaderboard" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:105 +msgid "Learn More" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 +msgid "Learn more about {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 +msgid "Lending" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 +msgid "Lending protocol points" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 +msgid "Lending rate of BTC LSTs" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 +msgid "Lending rate of satUSD" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 +msgid "Lending, Restaking, CDP *" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 +msgid "Liquid Staking" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:19 +msgid "Loading transactions..." +msgstr "" + +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:51 +msgid "Loading..." +msgstr "" + +#: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:89 +msgid "Locked Amount" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:80 +msgid "Locked Capital Breakdown" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 +msgid "Log in" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 +msgid "Log in to View Dashboard" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/login/page.tsx:14 +msgid "Login" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 +msgid "Login to play" +msgstr "" + +#: apps/evm/src/components/LoginSection/LoginSection.tsx:14 +msgid "Login with wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 +msgid "Lottery" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "LST provider points" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 +msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 +msgid "Maximum points will be received by providing BTC LST liquidity." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 +msgid "Mint and Lend satUSD" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 +msgid "Mint more BTC LSTs with these borrowed assets." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 +msgid "Mint satUSD and supply it into a lending market on BOB" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 +msgid "Multipliers" +msgstr "" + +#: apps/evm/src/components/Layout/Header.tsx:115 +#: apps/evm/src/components/Layout/Sidebar.tsx:61 +msgid "Multisig" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 +msgid "My Apps" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 +msgid "My Total Harvest" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 +msgid "Name" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 +msgid "navigate to {name} app page" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 +msgid "Navigate to bridge page" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 +msgid "navigate to Common Prefix audit" +msgstr "" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:46 +msgid "navigate to discord" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:90 +msgid "navigate to ecosystem section in fusion page" +msgstr "" + +#: apps/evm/src/components/Logo/Logo.tsx:30 +msgid "navigate to home page" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 +msgid "navigate to OtterSec audit" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 +msgid "navigate to Trails of Bits audit" +msgstr "" + +#: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:37 +msgid "navigate to X social" +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:47 +msgid "Need support? Enter our Discord." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 +msgid "Network Fee" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 +msgid "Network Fee Rate" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:49 +msgid "New Quests Coming Soon" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 +msgid "new tickets drop in {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:70 +msgid "No assets shown" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:96 +msgid "No bridging operations found" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 +msgid "No new goal at the moment. Stay tuned for updates!" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:29 +msgid "No transactions found" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 +msgid "Not your lucky day... yet!" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:30 +msgid "OKX Cryptopedia" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 +msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 +msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." +msgstr "" + +#: apps/evm/src/components/Layout/Header.tsx:57 +msgid "open drawer" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 +msgid "Optional: It's possible to repeat steps 2-4 multiple times." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 +msgid "or" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 +msgid "OtterSec auditor" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:62 +msgid "Pending" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 +msgid "Play" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:93 +msgid "Please confirm allowance approval for {0} in your wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 +msgid "Please confirm the transaction in your wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:91 +msgid "Please confirm transaction in your wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:73 +msgid "Please connect a wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 +msgid "Please note:" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:102 +msgid "POWERED BY BTC & ETH" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 +msgid "Preparing..." +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:272 +msgid "Privacy policy" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 +msgid "Protocol Fee" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:41 +msgid "Prove" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 +msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 +msgid "Provide liquidity into Oku DEX" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:49 +msgid "Quests" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 +msgid "Quests Completed" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 +msgid "Quests Only" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 +msgid "Read it now." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 +msgid "Read more here" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 +msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." +msgstr "" + +#: apps/bob-pay/src/app/[lang]/receive/page.tsx:14 +#: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:27 +#: apps/bob-pay/src/components/Layout/Header.tsx:38 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:113 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 +msgid "Receive" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 +msgid "Receive {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 +msgid "Receive {ticker}" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:224 +msgid "Recipient" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 +msgid "referral table" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 +msgid "Referred by" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 +msgid "Released: BOB's Hybrid L2 vision paper" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 +msgid "Remove vote" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 +msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 +msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 +msgid "Restaking" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 +#: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 +msgid "Rewards" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 +msgid "Satoshi protocol points" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/components/ScannerModal/ScannerModal.tsx:19 +msgid "Scan QR Code" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:77 +msgid "Season 1 & 2 (Completed)" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 +msgid "Season 1 & 2 Total Spice (Completed):" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:88 +msgid "Season 2 Final Rank" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:57 +msgid "Season 3 (Ongoing)" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 +msgid "Season 3 Harvested Spice" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 +msgid "Season Three" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:217 +msgid "Select Bitcoin Wallet" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:203 +msgid "Select EVM Wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 +msgid "select gas token" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 +msgid "Select Network" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:172 +msgid "select network to bridge from" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:182 +msgid "select network to bridge to" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 +msgid "Select Strategy" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 +msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 +msgid "Select Token" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/page.tsx:14 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 +#: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 +#: apps/bob-pay/src/components/Layout/Header.tsx:38 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 +msgid "Send" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 +msgid "Send {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 +msgid "Send {ticker}" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 +msgid "Share on X" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 +msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" +msgstr "" + +#: apps/evm/src/components/Layout/Header.tsx:90 +msgid "Show secondary navigation" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/page.tsx:14 +msgid "Sign-Up" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 +msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:112 +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:29 +msgid "Something went wrong. Please try again later." +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:72 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:43 +#: apps/evm/src/components/SignUpButton/SignUpButton.tsx:29 +msgid "Something went wrong. Please try connecting your wallet again." +msgstr "" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:23 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:23 +msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 +msgid "Spice" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 +msgid "Spice + Bedrock Diamonds + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 +msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 +msgid "Spice + Pell Points + Solv XP + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 +msgid "Spice + Segment Points + Supply APR" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 +msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 +msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 +msgid "Spice + Shoebill Points + Supply APR" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 +msgid "Spice + Solv XP + Babylon Points" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 +msgid "Spice Earned Across Apps" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 +msgid "Spice Multiplier" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 +msgid "Spice Per Hour" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 +msgid "Spice points (Lower)" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 +msgid "Spice points (Medium)" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 +msgid "Spice rewards (Higher)" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 +msgid "Spice rewards (Medium)" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 +#: apps/evm/src/app/[lang]/(bridge)/stake/page.tsx:14 +#: apps/evm/src/app/[lang]/(bridge)/stake/Stake.tsx:103 +#: apps/evm/src/components/Layout/Header.tsx:80 +#: apps/evm/src/components/Layout/Sidebar.tsx:55 +msgid "Stake" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 +msgid "Staking Token" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 +msgid "Start Harvesting" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:127 +msgid "Start Harvesting Spice" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 +msgid "Step One" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 +msgid "Step Two" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:100 +msgid "Successfully finalized transaction" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 +#: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 +msgid "Successfully sent {amount} {0}" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:62 +msgid "Successfully submitted ${0} proof" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 +msgid "Successfully transfered {0} {1}" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 +msgid "Supply seSOLVBTCBBN into Segment to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 +msgid "Supply seUNIBTC into Segment to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 +msgid "Supply tBTC into Segment to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 +msgid "Supply tBTC into Shoebill to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 +msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 +msgid "Supply wBTC into Segment to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 +msgid "Supply wBTC into Shoebill to earn interest." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 +msgid "Support your favourite BOB apps" +msgstr "" + +#: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:84 +msgid "Switch to {capitalizedName}" +msgstr "" + +#: apps/evm/src/components/Layout/Header.tsx:106 +#: apps/evm/src/components/Layout/Sidebar.tsx:67 +msgid "T&Cs" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:35 +#: apps/evm/src/app/[lang]/404/NotFound.tsx:35 +msgid "Take em home" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/login/Login.tsx:61 +msgid "Terms and Conditions" +msgstr "" + +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:264 +msgid "Terms of Service" +msgstr "" + +#: apps/evm/src/components/Logo/Logo.tsx:47 +msgid "Testnet" +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:31 +msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 +msgid "The fastest and easiest way to bridge BTC to BOB." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 +msgid "The final season" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:99 +msgid "THE FIRST HYBRID L2" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 +msgid "The leaderboard resets for the new season" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 +msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 +msgid "The number of BOB ecosystem apps that you have harvested Spice with" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 +msgid "The number of Intract and Galxe quests that you have completed" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:61 +msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 +msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 +msgid "" +"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" +"still confirm your transaction within a reasonable time." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:172 +msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:163 +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 +msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 +msgid "There are no apps to be displayed" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 +msgid "There is currently no available liquidity to onramp BTC into {assetName}." +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:23 +msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 +msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:17 +msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 +msgid "Time left until voting round ends" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 +msgid "To cast your vote, please log in" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 +#: apps/evm/src/app/[lang]/fusion/Fusion.tsx:123 +msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 +msgid "Top up Gas" +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:39 +msgid "Total Assets" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:81 +msgid "Total Harvest" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 +msgid "Total Referrals Earnings:" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 +msgid "Total Spice Harvested" +msgstr "" + +#: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 +msgid "Trails of Bits auditor" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 +msgid "Transaction submitted" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:50 +msgid "Transaction Submitted" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 +msgid "Transfer time" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 +msgid "TVL" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:150 +msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 +msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:230 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:71 +msgid "Unknown" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/Stake.tsx:106 +msgid "Unstake" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:181 +msgid "USDT can only be withdrawn to Ethereum." +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:173 +msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 +msgid "Use any of the <0>supported bridges." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 +msgid "Use Apps" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 +msgid "Use BTC LSTs as collateral to borrow other assets" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 +msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 +msgid "Use the deposited satUSD as collateral to borrow any BTC LST." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 +msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 +msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:110 +#: apps/evm/src/components/LoginButton/LoginButton.tsx:27 +#: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 +msgid "User rejected the request" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 +msgid "Username" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:223 +msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." +msgstr "" + +#: apps/evm/src/app/[lang]/wallet/Wallet.tsx:29 +msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:106 +msgid "View All Transactions" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:78 +msgid "View Intract" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 +msgid "View Multipliers" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:78 +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 +msgid "View Quests" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 +#: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 +msgid "Vote" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 +msgid "Vote for maximum three projects per week" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 +msgid "Vote for maximum three projects per week by clicking on the flame icon." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 +msgid "Votes Left:" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 +msgid "Voting limit exceeded" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:54 +msgid "Waiting for approval" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:52 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 +msgid "Waiting for confirmation" +msgstr "" + +#: apps/bob-pay/src/app/[lang]/wallet/page.tsx:14 +#: apps/evm/src/app/[lang]/wallet/page.tsx:15 +#: apps/evm/src/components/Layout/Header.tsx:76 +#: apps/evm/src/components/Layout/Sidebar.tsx:51 +#: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 +msgid "Wallet" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 +msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." +msgstr "" + +#: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:14 +msgid "We're Sorry" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 +msgid "Website" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 +msgid "Welcome to BOB Fusion" +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 +msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 +msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:135 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 +msgid "Withdraw" +msgstr "" + +#: apps/evm/src/components/WithdrawAlert/WithdrawAlert.tsx:33 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:161 +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:211 +msgid "Withdraw Assets" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:26 +msgid "Withdraw Locked Assets" +msgstr "" + +#: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:138 +msgid "Withdraw to L1 failed. Please try again." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 +msgid "Yield Assets" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 +msgid "You" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 +msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." +msgstr "" + +#: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 +msgid "You can change your votes at any time before the end of the weekly voting period" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 +msgid "You Have 0 Tickets" +msgstr "" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:83 +msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 +msgid "You need at least {0} Spice to participate in Lottery." +msgstr "" + +#: apps/evm/src/components/WithdrawAlert/WithdrawAlert.tsx:30 +msgid "You still have assets locked in Season One. Please redeem your funds" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 +msgid "You will need to actively monitor your position, especially if it has a small range." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 +msgid "You will receive" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 +msgid "You will stake" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 +msgid "You're Ready to Play!" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 +msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 +msgid "Your Active Referrals" +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 +msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:78 +msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." +msgstr "" + +#: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 +msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" +msgstr "" + +#: apps/evm/src/app/[lang]/nested-providers.tsx:80 +msgid "Your funds are safe!" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 +msgid "Your performance in seasons 1 & 2" +msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 +msgid "Your Referral Code" +msgstr "" + +#: apps/evm/src/components/Layout/FusionPopover.tsx:53 +msgid "Your Spice Harvest Overview" +msgstr "" diff --git a/package.json b/package.json index a8bd74d10..67774047b 100644 --- a/package.json +++ b/package.json @@ -26,9 +26,15 @@ "clean:node-modules": "rimraf ./packages/**/**/node_modules && rimraf ./apps/**/node_modules && rm -rf ./node_modules", "clean:lock": "rm ./pnpm-lock.yaml", "turbo:clean": "turbo clean && rimraf ./node_modules/.cache/turbo", - "turbo:graph": "pnpm build --graph=dependency-graph.png" + "turbo:graph": "pnpm build --graph=dependency-graph.png", + "lingui:extract": "lingui extract", + "lingui:extract:evm": "pnpm run --filter bob-evm lingui:extract", + "lingui:extract:bob-pay": "pnpm run --filter bob-pay lingui:extract" }, "devDependencies": { + "@lingui/cli": "^4.11.0", + "@lingui/conf": "^4.11.0", + "@lingui/swc-plugin": "4.0.8", "@commitlint/cli": "^17.8.1", "@commitlint/config-conventional": "^17.8.1", "@storybook/addon-essentials": "^7.6.19", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a2e74251..9e3da8ed4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,6 +18,15 @@ importers: '@commitlint/config-conventional': specifier: ^17.8.1 version: 17.8.1 + '@lingui/cli': + specifier: ^4.11.0 + version: 4.12.0(typescript@5.4.5) + '@lingui/conf': + specifier: ^4.11.0 + version: 4.12.0(typescript@5.4.5) + '@lingui/swc-plugin': + specifier: 4.0.8 + version: 4.0.8(@lingui/macro@4.12.0)(next@14.2.15) '@storybook/addon-essentials': specifier: ^7.6.19 version: 7.6.19(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -268,12 +277,6 @@ importers: specifier: ^0.32.11 version: 0.32.11 devDependencies: - '@lingui/cli': - specifier: ^4.11.0 - version: 4.12.0(typescript@5.4.5) - '@lingui/conf': - specifier: ^4.11.0 - version: 4.12.0(typescript@5.4.5) '@lingui/loader': specifier: ^4.11.0 version: 4.12.0(typescript@5.4.5)(webpack@5.92.0) @@ -461,12 +464,6 @@ importers: '@gobob/test-utils': specifier: workspace:^ version: link:../../packages/test-utils - '@lingui/cli': - specifier: ^4.11.0 - version: 4.12.0(typescript@5.4.5) - '@lingui/conf': - specifier: ^4.11.0 - version: 4.12.0(typescript@5.4.5) '@lingui/loader': specifier: ^4.11.0 version: 4.12.0(typescript@5.4.5)(webpack@5.92.0) From 09b4ff0fbcf000e176fdb79f55944bc42e4e70fe Mon Sep 17 00:00:00 2001 From: Slava Date: Fri, 8 Nov 2024 23:13:53 +0300 Subject: [PATCH 02/13] chore: lingui configs to imports --- .eslintignore | 3 ++- apps/bob-pay/lingui.config.js | 4 ++-- apps/evm/lingui.config.js | 4 ++-- lingui.config.js | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.eslintignore b/.eslintignore index a387833d4..f786840d3 100644 --- a/.eslintignore +++ b/.eslintignore @@ -10,4 +10,5 @@ build !.commitlintrc.cjs !.lintstagedrc !knip.config.js -!tsup.config.ts \ No newline at end of file +!tsup.config.ts +!lingui.config.js \ No newline at end of file diff --git a/apps/bob-pay/lingui.config.js b/apps/bob-pay/lingui.config.js index b1b2f696f..dea769eaa 100644 --- a/apps/bob-pay/lingui.config.js +++ b/apps/bob-pay/lingui.config.js @@ -1,3 +1,3 @@ -const linguiConfig = require('../../lingui.config'); +import linguiConfig from '../../lingui.config'; -module.exports = linguiConfig; +export default linguiConfig; diff --git a/apps/evm/lingui.config.js b/apps/evm/lingui.config.js index b1b2f696f..dea769eaa 100644 --- a/apps/evm/lingui.config.js +++ b/apps/evm/lingui.config.js @@ -1,3 +1,3 @@ -const linguiConfig = require('../../lingui.config'); +import linguiConfig from '../../lingui.config'; -module.exports = linguiConfig; +export default linguiConfig; diff --git a/lingui.config.js b/lingui.config.js index d40187955..c97381958 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -1,5 +1,5 @@ /** @type {import('@lingui/conf').LinguiConfig} */ -module.exports = { +export default { locales: ['en', 'zh'], sourceLocale: 'en', fallbackLocales: { From 0d3d0ffb206daa70cb403391ce3481d8c387af22 Mon Sep 17 00:00:00 2001 From: Slava Date: Fri, 8 Nov 2024 23:19:03 +0300 Subject: [PATCH 03/13] chore: cleanup lingui config --- lingui.config.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lingui.config.js b/lingui.config.js index c97381958..27a3b99ed 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -5,12 +5,6 @@ export default { fallbackLocales: { default: 'en' }, - // catalogs: [ - // { - // path: 'locales/{locale}', - // include: ['apps/evm/src', 'apps/bob-pay/src'] - // } - // ], catalogs: [ { path: '/locales/{locale}', From 7bcbdf56c17c16b8185854eb24f2ace943d617a3 Mon Sep 17 00:00:00 2001 From: Slava Date: Fri, 8 Nov 2024 23:26:06 +0300 Subject: [PATCH 04/13] chore: add evm zh translations --- locales/zh.po | 485 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 310 insertions(+), 175 deletions(-) diff --git a/locales/zh.po b/locales/zh.po index 33596a8cf..16807b73c 100644 --- a/locales/zh.po +++ b/locales/zh.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2024-11-08 20:04+0300\n" +"POT-Creation-Date: 2024-10-14 13:15+0300\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,6 +17,11 @@ msgstr "" msgid ", due to the challenge period" msgstr "" +#: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:171 +#~ msgid "{0}" +#~ msgstr "" + #: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:49 msgid "{0} ago" msgstr "" @@ -31,15 +36,15 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:40 msgid "{0} until quest ends" -msgstr "" +msgstr "距离任务结束还有{0}" #: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 msgid "{0} until voting round ends" -msgstr "" +msgstr "距离投票轮结束还有{0}" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -msgstr "" +msgstr "* 显示的倍数可能会根据相应项目的支付结构而变化。" #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 msgid "< 1 minute" @@ -49,6 +54,10 @@ msgstr "" msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:87 +#~ msgid "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" msgstr "" @@ -56,7 +65,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -msgstr "" +msgstr "<0>一键质押你的BTC 并在BOB上接收BTC LSTs。" #: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 msgid "2 hours" @@ -71,7 +80,7 @@ msgstr "" #: apps/evm/src/app/[lang]/404/NotFound.tsx:20 #: apps/evm/src/app/[lang]/404/page.tsx:14 msgid "404 Error" -msgstr "" +msgstr "404 错误" #: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 msgid "7 days" @@ -81,7 +90,7 @@ msgstr "" #: apps/evm/src/components/Layout/Header.tsx:112 #: apps/evm/src/components/Layout/Sidebar.tsx:73 msgid "About" -msgstr "" +msgstr "关于" #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:106 msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." @@ -93,11 +102,11 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 msgid "All Apps" -msgstr "" +msgstr "所有应用" #: apps/evm/src/components/LoginSection/LoginSection.tsx:11 msgid "Already harvesting?" -msgstr "" +msgstr "已经在收获?" #: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 @@ -110,6 +119,10 @@ msgstr "" msgid "An Exclusive Bitcoin Staking and DeFi Campaign" msgstr "" +#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 +#~ msgid "An exclusive quest campaign." +#~ msgstr "" + #: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 msgid "and that you have read and understood our" msgstr "" @@ -120,7 +133,7 @@ msgstr "" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:523 msgid "Approve" -msgstr "" +msgstr "通过" #: apps/evm/src/app/[lang]/apps/page.tsx:14 #: apps/evm/src/components/Layout/Header.tsx:72 @@ -130,12 +143,12 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 msgid "Apps Used" -msgstr "" +msgstr "已体验的应用" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 #: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 msgid "Asset" -msgstr "" +msgstr "资产" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 msgid "Asset Details" @@ -143,7 +156,7 @@ msgstr "" #: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 msgid "Audited by" -msgstr "" +msgstr "审计" #: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 msgid "Authorize Wallet" @@ -154,19 +167,27 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 msgid "Babylon points" -msgstr "" +msgstr "Babylon积分" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 msgid "Balance" -msgstr "" +msgstr "余额" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 msgid "Base Assets" -msgstr "" +msgstr "基础资产" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -msgstr "" +msgstr "以下是你从各个应用中收获的Spice。继续参与以增加你未来的收获!" + +#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 +#~ msgid "Binance campaign banner" +#~ msgstr "" + +#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 +#~ msgid "Bitcoin Staking with Binance" +#~ msgstr "" #: apps/evm/src/components/Logo/Logo.tsx:37 msgid "BOB" @@ -183,12 +204,16 @@ msgstr "" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 #: apps/evm/src/app/[lang]/fusion/Fusion.tsx:92 msgid "BOB Fusion: The Final Season" -msgstr "" +msgstr "BOB Fusion:最终季" #: apps/evm/src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" msgstr "" +#: apps/evm/src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:435 +#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." +#~ msgstr "" + #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 msgid "BOB Gateway is live!" msgstr "" @@ -206,11 +231,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 msgid "BOB TVL Progress" -msgstr "" +msgstr "BOB TVL进度" #: apps/evm/src/app/[lang]/wallet/Wallet.tsx:25 msgid "BOB Wallet" -msgstr "" +msgstr "BOB 钱包" #: apps/bob-pay/src/app/[lang]/page.tsx:13 #: apps/evm/src/app/[lang]/(bridge)/bridge/page.tsx:14 @@ -220,7 +245,7 @@ msgstr "" #: apps/evm/src/components/Layout/Header.tsx:69 #: apps/evm/src/components/Layout/Sidebar.tsx:44 msgid "Bridge" -msgstr "" +msgstr "桥" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:524 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 @@ -229,12 +254,12 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 msgid "Bridge Assets" -msgstr "" +msgstr "跨链资产" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 msgid "Bridge BTC LSTs to BOB" -msgstr "" +msgstr "将BTC LSTs跨链到BOB" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:519 msgid "Bridge Disabled" @@ -246,15 +271,15 @@ msgstr "" #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:192 msgid "Bridge to BOB" -msgstr "" +msgstr "跨链到BOB" #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -msgstr "" +msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -msgstr "" +msgstr "由于 Alex Lab 遭受了涉及 XLink 桥接的攻击,桥接 ALEX 已被禁用。有关更多信息,请参阅此 <0>公告。" #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." @@ -262,7 +287,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 msgid "BTC LST Lending" -msgstr "" +msgstr "BTC LST借贷" #: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 msgid "By clicking ‘Connect’ you acknowledge and agree to the" @@ -277,6 +302,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: apps/evm/src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:478 +#~ msgid "Cannot stake into {0} due to insufficient liquidity." +#~ msgstr "" + #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 msgid "Cannot stake into {assetName} due to insufficient liquidity." msgstr "" @@ -295,11 +324,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -msgstr "" +msgstr "选择任何现有的流动性质押提供商来铸造你的BTC LST。" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 msgid "Click the <0/> icon next to your favourite apps" -msgstr "" +msgstr "点击 <0/> 你喜爱应用旁边的图标" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:108 #: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 @@ -311,14 +340,14 @@ msgstr "" #: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:106 msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -msgstr "" +msgstr "结合比特币和以太坊的流动性和安全性。= 主网已上线!。" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:87 #: apps/evm/src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:83 #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:42 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 msgid "Coming Soon" -msgstr "" +msgstr "即将推出" #: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 msgid "Coming SoonSteps" @@ -331,15 +360,15 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 #: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 msgid "Community Voting" -msgstr "" +msgstr "社区投票" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 msgid "Community Voting Information" -msgstr "" +msgstr "社区投票信息" #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:56 msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -msgstr "" +msgstr "完成各种链上和链下任务,使用Intract和BOB Stake来额外收获62,500 Spice。" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" @@ -349,7 +378,7 @@ msgstr "" #: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:94 #: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:107 msgid "Connect BTC Wallet" -msgstr "" +msgstr "连接比特币钱包" #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 msgid "Connect BTC wallet to access fee rate settings." @@ -364,7 +393,7 @@ msgstr "" #: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:220 #: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 msgid "Connect Wallet" -msgstr "" +msgstr "连接钱包" #: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:302 msgid "Connect your Bitcoin Wallet (Optional)" @@ -385,23 +414,23 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 msgid "Copy referral URL" -msgstr "" +msgstr "复制推荐URL" #: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 msgid "Create Account" -msgstr "" +msgstr "创建账户" #: apps/evm/src/components/Layout/FusionPopover.tsx:63 msgid "Current Harvest" -msgstr "" +msgstr "当前收获" #: apps/evm/src/components/Layout/FusionPopover.tsx:70 msgid "Current Leaderboard Rank" -msgstr "" +msgstr "当前排行榜排名" #: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:33 msgid "Current Spice" -msgstr "" +msgstr "当前Spice" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 msgid "Current TVL:" @@ -409,11 +438,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 msgid "Day" -msgstr "" +msgstr "/天" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -msgstr "" +msgstr "将高优先级资产部署到高优先级DeFi协议中,以最大化你的Spice收获。" #: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:132 #: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 @@ -422,32 +451,32 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -msgstr "" +msgstr "将任何符合条件的BTC LSTs存入BOB上的借贷市场。" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -msgstr "" +msgstr "将BTC LSTs存入BOB上的借贷市场,并使用它们作为抵押品借其他资产。" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -msgstr "" +msgstr "将你的BTC LSTs存入 <0>将你的BTC LSTs存入 以铸造satUSD,并将其存入BOB上的借贷市场" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -msgstr "" +msgstr "将你的BTC LSTs存入 <0>Satoshi协议 以铸造satUSD。" #: apps/evm/src/components/Layout/Header.tsx:109 #: apps/evm/src/components/Layout/Sidebar.tsx:70 msgid "Dev" -msgstr "" +msgstr "开发者" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 msgid "DEX *" -msgstr "" +msgstr "去中心化交易所(DEX) *" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 msgid "DEX Liquidity Provisioning" -msgstr "" +msgstr "为DEX提供流动性" #: apps/evm/src/app/[lang]/nested-providers.tsx:76 msgid "Disconnected" @@ -455,7 +484,7 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 msgid "Discover All Apps" -msgstr "" +msgstr "探索全部应用" #: apps/evm/src/components/SocialsGroup/SocialsGroup.tsx:31 msgid "Docs" @@ -463,11 +492,15 @@ msgstr "" #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:196 msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -msgstr "" +msgstr "想要退出?你可以将资金从合约中提取到以太坊钱包。请注意,提取资产后你将不再赚取Spice。<0>不过,你已收获的Spice都会保留。" #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 msgid "Don't show this message again" -msgstr "" +msgstr "不再显示此消息" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:100 +#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." +#~ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." @@ -503,6 +536,10 @@ msgstr "" msgid "Enter your access code (optional):" msgstr "" +#: apps/evm/src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:484 +#~ msgid "Estimated Fee" +#~ msgstr "" + #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:137 msgid "Estimated within 1 hour" msgstr "" @@ -551,7 +588,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 msgid "Featured Assets" -msgstr "" +msgstr "特色资产" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 msgid "Fee" @@ -565,9 +602,13 @@ msgstr "" msgid "Fetching bridging operations..." msgstr "" +#: apps/evm/src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:163 +#~ msgid "Fetching staking strategies..." +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 msgid "Final Leaderboard Rank" -msgstr "" +msgstr "最终排行榜排名" #: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:47 msgid "Finalize" @@ -575,7 +616,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -msgstr "" +msgstr "按照 <0>本指南 的步骤为Oku上的DEX池提供流动性。" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 #: apps/evm/src/app/[lang]/fusion/Fusion.tsx:120 @@ -590,15 +631,15 @@ msgstr "" #: apps/evm/src/components/Layout/Header.tsx:83 #: apps/evm/src/components/Layout/Sidebar.tsx:58 msgid "Fusion" -msgstr "" +msgstr "Fusion" #: apps/evm/src/components/Logo/Logo.tsx:41 msgid "FUSION" -msgstr "" +msgstr "FUSION" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -msgstr "" +msgstr "Fusion第3季是你收获Spice的最后机会。质押比特币获得最高倍数,并通过推荐朋友赚取他们Spice收获的分成。" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 msgid "Fusion season three" @@ -637,7 +678,7 @@ msgstr "" #: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:30 #: apps/evm/src/app/[lang]/404/NotFound.tsx:30 msgid "Go Back" -msgstr "" +msgstr "返回" #: apps/evm/src/app/[lang]/nested-providers.tsx:91 msgid "Got it!" @@ -645,19 +686,35 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 msgid "Grab the final opportunity to harvest Spice. Join Season 3." -msgstr "" +msgstr "抓住最后收获Spice的机会!加入第3季!" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:80 +#~ msgid "Harvest {pointsMissing} more Spice to participate" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 +#~ msgid "Harvest {pointsMissing} more SPICE to participate" +#~ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 msgid "Harvest {pointsMissing} more Spice to play" msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 +#~ msgid "Harvest {pointsMissing} more SPICE to your account to participate" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 +#~ msgid "Harvest {pointsMissing} more SPICE to your account to play" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/Fusion.tsx:95 msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -msgstr "" +msgstr "通过存入BOB应用、投票和完成任务来收获Spice。密切关注特别活动" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -msgstr "" +msgstr "这里展示了你推荐的活跃用户及他们为你赚取的Spice。他们赚得越多,你获益越多!" #: apps/evm/src/app/[lang]/fusion/Fusion.tsx:88 msgid "Hero dots" @@ -665,15 +722,15 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 msgid "Holding" -msgstr "" +msgstr "持有" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 msgid "Hot Strategies" -msgstr "" +msgstr "热门策略" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 msgid "How to vote:" -msgstr "" +msgstr "如何投票:" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 msgid "Hybrid L2" @@ -681,7 +738,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -msgstr "" +msgstr "如果你已经在其他链上拥有BTC LSTs,你可以将它们跨链到BOB并开始收获Spice。" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 msgid "Incentives" @@ -691,26 +748,30 @@ msgstr "" msgid "Invalid referral code. You can try again, or proceed without one." msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:74 +#~ msgid "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 msgid "Last 24 Hours" -msgstr "" +msgstr "过去24小时" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 msgid "Last 7 Days" -msgstr "" +msgstr "过去7天" #: apps/evm/src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 msgid "Last Week's Winners" -msgstr "" +msgstr "上周获胜者" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 msgid "Leaderboard" -msgstr "" +msgstr "排行榜" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 #: apps/evm/src/app/[lang]/fusion/Fusion.tsx:105 msgid "Learn More" -msgstr "" +msgstr "了解更多" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 msgid "Learn more about {0}" @@ -728,19 +789,19 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 msgid "Lending protocol points" -msgstr "" +msgstr "借贷协议积分" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 msgid "Lending rate of BTC LSTs" -msgstr "" +msgstr "BTC LSTs的借贷利率" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 msgid "Lending rate of satUSD" -msgstr "" +msgstr "satUSD的借贷利率" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 msgid "Lending, Restaking, CDP *" -msgstr "" +msgstr "借贷、再质押、抵押债仓(CDP) *" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 @@ -757,19 +818,19 @@ msgstr "" #: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:89 msgid "Locked Amount" -msgstr "" +msgstr "锁定金额" #: apps/evm/src/components/WithdrawModal/DepositedAssets.tsx:80 msgid "Locked Capital Breakdown" -msgstr "" +msgstr "锁定资本明细" #: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 msgid "Log in" -msgstr "" +msgstr "登录" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 msgid "Log in to View Dashboard" -msgstr "" +msgstr "登录查看仪表板" #: apps/bob-pay/src/app/[lang]/login/page.tsx:14 msgid "Login" @@ -781,19 +842,23 @@ msgstr "" #: apps/evm/src/components/LoginSection/LoginSection.tsx:14 msgid "Login with wallet" -msgstr "" +msgstr "使用钱包登录" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 msgid "Lottery" msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:33 +#~ msgid "Lottery ticket" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 msgid "LST provider points" -msgstr "" +msgstr "LST 项目方积分" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." @@ -801,32 +866,32 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 msgid "Maximum points will be received by providing BTC LST liquidity." -msgstr "" +msgstr "提供BTC LST流动性将获得最高积分。" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 msgid "Mint and Lend satUSD" -msgstr "" +msgstr "铸造并借出satUSD" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 msgid "Mint more BTC LSTs with these borrowed assets." -msgstr "" +msgstr "用这些借到的资产铸造更多BTC LSTs。" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 msgid "Mint satUSD and supply it into a lending market on BOB" -msgstr "" +msgstr "铸造satUSD并将其供应到BOB上的借贷市场" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 msgid "Multipliers" -msgstr "" +msgstr "收益倍数" #: apps/evm/src/components/Layout/Header.tsx:115 #: apps/evm/src/components/Layout/Sidebar.tsx:61 msgid "Multisig" -msgstr "" +msgstr "多签" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 msgid "My Apps" -msgstr "" +msgstr "我的应用" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 msgid "My Total Harvest" @@ -834,7 +899,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 msgid "Name" -msgstr "" +msgstr "名称" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 msgid "navigate to {name} app page" @@ -842,7 +907,7 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 msgid "Navigate to bridge page" -msgstr "" +msgstr "导航至桥接页面" #: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 msgid "navigate to Common Prefix audit" @@ -895,7 +960,7 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/Wallet.tsx:70 msgid "No assets shown" -msgstr "" +msgstr "未显示的资产" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:96 msgid "No bridging operations found" @@ -903,12 +968,28 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 msgid "No new goal at the moment. Stay tuned for updates!" -msgstr "" +msgstr "目前暂无新目标。请保持关注更新!" #: apps/bob-pay/src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:29 msgid "No transactions found" msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 +#~ msgid "Not enough spice" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 +#~ msgid "Not enough Spice" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 +#~ msgid "Not enough SPICE" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/not-found/page.tsx:14 +#~ msgid "Not found" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 msgid "Not your lucky day... yet!" msgstr "" @@ -923,7 +1004,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -msgstr "" +msgstr "第3季结束后,你的得分将与第1季和第2季的得分合并,用于计算你的最终Spice收获。" #: apps/evm/src/components/Layout/Header.tsx:57 msgid "open drawer" @@ -932,11 +1013,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 msgid "Optional: It's possible to repeat steps 2-4 multiple times." -msgstr "" +msgstr "可选:可以多次重复步骤2-4。" #: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 msgid "or" -msgstr "" +msgstr "或" #: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 msgid "OtterSec auditor" @@ -965,15 +1046,15 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/Wallet.tsx:73 msgid "Please connect a wallet" -msgstr "" +msgstr "请连接钱包" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 msgid "Please note:" -msgstr "" +msgstr "请注意:" #: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:102 msgid "POWERED BY BTC & ETH" -msgstr "" +msgstr "比特币 + 以太坊共同驱动" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 @@ -994,24 +1075,24 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -msgstr "" +msgstr "为 <0>Oku DEX 上的任何AMM池提供流动性,以赚取交易费用和激励" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 msgid "Provide liquidity into Oku DEX" -msgstr "" +msgstr "为Oku DEX提供流动性" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:49 msgid "Quests" -msgstr "" +msgstr "任务" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 msgid "Quests Completed" -msgstr "" +msgstr "完成的任务" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 msgid "Quests Only" -msgstr "" +msgstr "仅任务" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 msgid "Read it now." @@ -1019,7 +1100,7 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 msgid "Read more here" -msgstr "" +msgstr "点此了解更多" #: apps/evm/src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." @@ -1032,15 +1113,15 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 msgid "Receive" -msgstr "" +msgstr "接收" #: apps/evm/src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 msgid "Receive {0}" -msgstr "" +msgstr "接收 {0}" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 msgid "Receive {ticker}" -msgstr "" +msgstr "接收 {ticker}" #: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 @@ -1083,11 +1164,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 msgid "Rewards" -msgstr "" +msgstr "奖励" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 msgid "Satoshi protocol points" -msgstr "" +msgstr "Satoshi协议积分" #: apps/bob-pay/src/app/[lang]/send/components/ScannerModal/ScannerModal.tsx:19 msgid "Scan QR Code" @@ -1095,27 +1176,27 @@ msgstr "" #: apps/evm/src/components/Layout/FusionPopover.tsx:77 msgid "Season 1 & 2 (Completed)" -msgstr "" +msgstr "第1季和第2季(已完成)" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 msgid "Season 1 & 2 Total Spice (Completed):" -msgstr "" +msgstr "第1季和第2季总Spice(已完成):" #: apps/evm/src/components/Layout/FusionPopover.tsx:88 msgid "Season 2 Final Rank" -msgstr "" +msgstr "第2季最终排名" #: apps/evm/src/components/Layout/FusionPopover.tsx:57 msgid "Season 3 (Ongoing)" -msgstr "" +msgstr "第3季(进行中)" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 msgid "Season 3 Harvested Spice" -msgstr "" +msgstr "第3季收获的Spice" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 msgid "Season Three" -msgstr "" +msgstr "第三季" #: apps/evm/src/connect-ui/component/ConnectModal/ConnectModal.tsx:217 msgid "Select Bitcoin Wallet" @@ -1147,7 +1228,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -msgstr "" +msgstr "选择你想跨链的BTC包装资产和数量。" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 msgid "Select Token" @@ -1161,7 +1242,7 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 msgid "Send" -msgstr "" +msgstr "发送" #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 msgid "Send {0}" @@ -1169,7 +1250,7 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 msgid "Send {ticker}" -msgstr "" +msgstr "发送 {ticker}" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 msgid "Share on X" @@ -1177,7 +1258,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -msgstr "" +msgstr "与朋友分享此链接,当他们注册时,你将获得他们Spice收获的15%作为奖励,以及他们推荐的任何人的Spice收获的7%" #: apps/evm/src/components/Layout/Header.tsx:90 msgid "Show secondary navigation" @@ -1206,11 +1287,11 @@ msgstr "" #: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:23 #: apps/evm/src/app/[lang]/404/NotFound.tsx:23 msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "" +msgstr "抱歉,这个页面有误或已经不存在,也许这些链接可以帮助到您" #: apps/evm/src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 msgid "Spice" -msgstr "" +msgstr "Spice" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 msgid "Spice + Bedrock Diamonds + Babylon Points" @@ -1248,31 +1329,31 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 msgid "Spice Earned Across Apps" -msgstr "" +msgstr "已体验应用的Spice收益" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 msgid "Spice Multiplier" -msgstr "" +msgstr "Spice" #: apps/evm/src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 msgid "Spice Per Hour" -msgstr "" +msgstr "每小时Spice" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 msgid "Spice points (Lower)" -msgstr "" +msgstr "Spice积分(较低)" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 msgid "Spice points (Medium)" -msgstr "" +msgstr "Spice积分(中等)" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 msgid "Spice rewards (Higher)" -msgstr "" +msgstr "Spice积分(较高)" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 msgid "Spice rewards (Medium)" -msgstr "" +msgstr "Spice积分(中等)" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 #: apps/evm/src/app/[lang]/(bridge)/stake/page.tsx:14 @@ -1280,7 +1361,11 @@ msgstr "" #: apps/evm/src/components/Layout/Header.tsx:80 #: apps/evm/src/components/Layout/Sidebar.tsx:55 msgid "Stake" -msgstr "" +msgstr "質押" + +#: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 +#~ msgid "Stake with" +#~ msgstr "" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 msgid "Staking Token" @@ -1289,20 +1374,24 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 msgid "Start Harvesting" -msgstr "" +msgstr "开始收获" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 #: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:127 msgid "Start Harvesting Spice" -msgstr "" +msgstr "开始收获Spice" #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 msgid "Step One" -msgstr "" +msgstr "第一步" + +#: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 +#~ msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." +#~ msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 msgid "Step Two" -msgstr "" +msgstr "第二步" #: apps/evm/src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:100 msgid "Successfully finalized transaction" @@ -1339,7 +1428,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -msgstr "" +msgstr "将新铸造的satUSD供应到 <0>BOB上的借贷协议 。" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 msgid "Supply wBTC into Segment to earn interest." @@ -1351,7 +1440,7 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 msgid "Support your favourite BOB apps" -msgstr "" +msgstr "支持你喜爱的BOB应用" #: apps/evm/src/connect-ui/component/AuthButton/AuthButton.tsx:84 msgid "Switch to {capitalizedName}" @@ -1360,12 +1449,12 @@ msgstr "" #: apps/evm/src/components/Layout/Header.tsx:106 #: apps/evm/src/components/Layout/Sidebar.tsx:67 msgid "T&Cs" -msgstr "" +msgstr "条款与条件" #: apps/bob-pay/src/app/[lang]/404/NotFound.tsx:35 #: apps/evm/src/app/[lang]/404/NotFound.tsx:35 msgid "Take em home" -msgstr "" +msgstr "回到主页" #: apps/bob-pay/src/app/[lang]/login/Login.tsx:61 msgid "Terms and Conditions" @@ -1390,11 +1479,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 msgid "The final season" -msgstr "" +msgstr "最终季 - 不容错过!" #: apps/evm/src/app/[lang]/sign-up/SignUp.tsx:99 msgid "THE FIRST HYBRID L2" -msgstr "" +msgstr "首个混合型二层" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 msgid "The leaderboard resets for the new season" @@ -1406,11 +1495,15 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 msgid "The number of BOB ecosystem apps that you have harvested Spice with" -msgstr "" +msgstr "你已经使用过的BOB生态系统应用数量" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 msgid "The number of Intract and Galxe quests that you have completed" -msgstr "" +msgstr "在Intract和Galxe上完成的任务" + +#: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:55 +#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" +#~ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:61 msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" @@ -1435,9 +1528,23 @@ msgstr "" msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." msgstr "" +#: src/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:171 +#~ msgid "" +#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" +#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." +#~ msgstr "" + +#: src/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 +#~ msgid "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." +#~ msgstr "" + #: apps/evm/src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 msgid "There are no apps to be displayed" -msgstr "" +msgstr "暂无可显示的应用" + +#: apps/evm/src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:503 +#~ msgid "There is currently no available liquidity to onramp BTC into {0}." +#~ msgstr "" #: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 msgid "There is currently no available liquidity to onramp BTC into {assetName}." @@ -1451,6 +1558,10 @@ msgstr "" msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." msgstr "" +#: apps/evm/src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:494 +#~ msgid "This is the final amount you will stake after deducting the Protocol fees from your input amount." +#~ msgstr "" + #: apps/evm/src/app/[lang]/geoblock/Geoblock.tsx:17 msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." msgstr "" @@ -1472,21 +1583,25 @@ msgstr "" msgid "Top up Gas" msgstr "" +#: apps/evm/src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:429 +#~ msgid "Top-up Gas" +#~ msgstr "" + #: apps/evm/src/app/[lang]/wallet/Wallet.tsx:39 msgid "Total Assets" -msgstr "" +msgstr "总资产" #: apps/evm/src/components/Layout/FusionPopover.tsx:81 msgid "Total Harvest" -msgstr "" +msgstr "总收获" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 msgid "Total Referrals Earnings:" -msgstr "" +msgstr "推荐获得的总Spice" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 msgid "Total Spice Harvested" -msgstr "" +msgstr "总收获的Spice" #: apps/evm/src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 msgid "Trails of Bits auditor" @@ -1506,11 +1621,15 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 msgid "TVL" -msgstr "" +msgstr "总锁仓价值(TVL)" #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:150 msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -msgstr "" +msgstr "很抱歉,目前智能账户还不能跨链到BOB。我们正在努力开发这项功能,请持续关注我们的更新。" + +#: apps/evm/src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 +#~ msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." +#~ msgstr "" #: apps/evm/src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." @@ -1533,34 +1652,42 @@ msgstr "" msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 +#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 +#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 msgid "Use any of the <0>supported bridges." -msgstr "" +msgstr "使用任何 <0>支持的跨链桥。" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 msgid "Use Apps" -msgstr "" +msgstr "体验应用" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 msgid "Use BTC LSTs as collateral to borrow other assets" -msgstr "" +msgstr "使用BTC LSTs作为抵押品借其他资产" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -msgstr "" +msgstr "使用存入的BTC LSTs作为抵押品借wBTC、tBTC或FBTC。" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -msgstr "" +msgstr "使用存入的satUSD作为抵押品借任何BTC LST。" #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -msgstr "" +msgstr "在应用中使用你跨链的资产以最大化你的Spice收获。<0/>提示:某些类型的应用提供更高的倍数。浏览\"热门策略\"部分以了解更多。" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 #: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -msgstr "" +msgstr "用你的Spice总数来支持你最喜爱的BOB构建者。获胜者将每周公布。" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:110 #: apps/evm/src/components/LoginButton/LoginButton.tsx:27 @@ -1578,7 +1705,7 @@ msgstr "" #: apps/evm/src/app/[lang]/wallet/Wallet.tsx:29 msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -msgstr "" +msgstr "查看您在 BOB 网络上的钱包概况。" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:106 msgid "View All Transactions" @@ -1590,29 +1717,29 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 msgid "View Multipliers" -msgstr "" +msgstr "查看倍数" #: apps/evm/src/app/[lang]/fusion/components/Quest/Quest.tsx:78 #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 msgid "View Quests" -msgstr "" +msgstr "查看任务" #: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 #: apps/evm/src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 msgid "Vote" -msgstr "" +msgstr "投票" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 msgid "Vote for maximum three projects per week" -msgstr "" +msgstr "每周最多可以为三个项目投票" #: apps/evm/src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 msgid "Vote for maximum three projects per week by clicking on the flame icon." -msgstr "" +msgstr "通过点击火焰图标,每周最多可为三个项目投票" #: apps/evm/src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 msgid "Votes Left:" -msgstr "" +msgstr "剩余投票次数:" #: apps/evm/src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 msgid "Voting limit exceeded" @@ -1633,7 +1760,7 @@ msgstr "" #: apps/evm/src/components/Layout/Sidebar.tsx:51 #: apps/evm/src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 msgid "Wallet" -msgstr "" +msgstr "钱包" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." @@ -1650,15 +1777,15 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 #: apps/evm/src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 msgid "Welcome to BOB Fusion" -msgstr "" +msgstr "欢迎回到BOB Fusion" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -msgstr "" +msgstr "当你为一个项目投票时,你的Spice总数将被计入他们的得票总数。<0/><1/>每周得票最多的项目将获得Spice奖励,他们可以将这些奖励分配给用户。" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -msgstr "" +msgstr "投票时,你不会失去任何收获。你的Spice总数仅用于计算你的投票权重。" #: apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx:135 #: apps/evm/src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 @@ -1669,11 +1796,11 @@ msgstr "" #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:161 #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:211 msgid "Withdraw Assets" -msgstr "" +msgstr "提取资产" #: apps/evm/src/components/WithdrawModal/WithdrawModal.tsx:26 msgid "Withdraw Locked Assets" -msgstr "" +msgstr "提取锁定资产" #: apps/evm/src/components/WithdrawModal/WithdrawForm.tsx:138 msgid "Withdraw to L1 failed. Please try again." @@ -1681,7 +1808,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 msgid "Yield Assets" -msgstr "" +msgstr "收益资产" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 msgid "You" @@ -1693,7 +1820,7 @@ msgstr "" #: apps/evm/src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 msgid "You can change your votes at any time before the end of the weekly voting period" -msgstr "" +msgstr "你可以在每周投票期结束前随时更改你的投票" #: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 msgid "You Have 0 Tickets" @@ -1713,7 +1840,7 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 msgid "You will need to actively monitor your position, especially if it has a small range." -msgstr "" +msgstr "请密切关注你的仓位,尤其是当设定的价格范围较窄时。" #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 #: apps/evm/src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 @@ -1733,9 +1860,17 @@ msgstr "" msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." msgstr "" +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 +#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" +#~ msgstr "" + +#: apps/evm/src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 +#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" +#~ msgstr "" + #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 msgid "Your Active Referrals" -msgstr "" +msgstr "已推荐的活跃用户" #: apps/evm/src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." @@ -1755,11 +1890,11 @@ msgstr "" #: apps/evm/src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 msgid "Your performance in seasons 1 & 2" -msgstr "" +msgstr "你在第1季和第2季的表现" #: apps/evm/src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 msgid "Your Referral Code" -msgstr "" +msgstr "你的推荐码" #: apps/evm/src/components/Layout/FusionPopover.tsx:53 msgid "Your Spice Harvest Overview" From d72999e251659b15e4f5139b547fdb370cf90d69 Mon Sep 17 00:00:00 2001 From: Slava Date: Fri, 8 Nov 2024 23:31:49 +0300 Subject: [PATCH 05/13] chore: remove old translation files --- apps/bob-pay/src/locales/en.po | 1859 ------------------------ apps/bob-pay/src/locales/zh-chatgpt.po | 1261 ---------------- apps/bob-pay/src/locales/zh.po | 1855 ----------------------- apps/evm/src/locales/en.po | 1849 ----------------------- apps/evm/src/locales/zh-chatgpt.po | 1261 ---------------- apps/evm/src/locales/zh.po | 1845 ----------------------- 6 files changed, 9930 deletions(-) delete mode 100644 apps/bob-pay/src/locales/en.po delete mode 100644 apps/bob-pay/src/locales/zh-chatgpt.po delete mode 100644 apps/bob-pay/src/locales/zh.po delete mode 100644 apps/evm/src/locales/en.po delete mode 100644 apps/evm/src/locales/zh-chatgpt.po delete mode 100644 apps/evm/src/locales/zh.po diff --git a/apps/bob-pay/src/locales/en.po b/apps/bob-pay/src/locales/en.po deleted file mode 100644 index 906879a98..000000000 --- a/apps/bob-pay/src/locales/en.po +++ /dev/null @@ -1,1859 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-12 00:19+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 -#~ msgid ", due to the challenge period" -#~ msgstr ", due to the challenge period" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:171 -#~ msgid "{0}" -#~ msgstr "{0}" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:50 -#~ msgid "{0} ago" -#~ msgstr "{0} ago" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 -#~ msgid "{0} remaining" -#~ msgstr "{0} remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 -#~ msgid "{0} until next draw" -#~ msgstr "{0} until next draw" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:40 -#~ msgid "{0} until quest ends" -#~ msgstr "{0} until quest ends" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 -#~ msgid "{0} until voting round ends" -#~ msgstr "{0} until voting round ends" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -#~ msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -#~ msgstr "* The multipliers displayed are subject to change based on the payout structure of the respective projects." - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 -#~ msgid "< 1 minute" -#~ msgstr "< 1 minute" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 -#~ msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:87 -#~ msgid "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 -#~ msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -#~ msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -#~ msgstr "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -#~ msgid "2 hours" -#~ msgstr "2 hours" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:209 -#~ msgid "3rd Party" -#~ msgstr "3rd Party" - -#: src/app/[lang]/404/NotFound.tsx:20 -#: src/app/[lang]/404/page.tsx:14 -msgid "404 Error" -msgstr "404 Error" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -#~ msgid "7 days" -#~ msgstr "7 days" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 -#: src/components/Layout/Header.tsx:112 -#: src/components/Layout/Sidebar.tsx:73 -#~ msgid "About" -#~ msgstr "About" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:105 -#~ msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." -#~ msgstr "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:93 -#~ msgid "Advanced Fee Settings" -#~ msgstr "Advanced Fee Settings" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 -#~ msgid "All Apps" -#~ msgstr "All Apps" - -#: src/components/LoginSection/LoginSection.tsx:11 -#~ msgid "Already harvesting?" -#~ msgstr "Already harvesting?" - -#: src/app/[lang]/send/Send.tsx:376 -msgid "Amount" -msgstr "Amount" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -#~ msgid "An exclusive quest campaign." -#~ msgstr "An exclusive quest campaign." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:267 -#~ msgid "and that you have read and understood our" -#~ msgstr "and that you have read and understood our" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:179 -#~ msgid "Apply" -#~ msgstr "Apply" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:509 -#~ msgid "Approve" -#~ msgstr "Approve" - -#: src/app/[lang]/apps/page.tsx:14 -#: src/components/Layout/Header.tsx:72 -#: src/components/Layout/Sidebar.tsx:47 -#~ msgid "Apps" -#~ msgstr "Apps" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 -#~ msgid "Apps Used" -#~ msgstr "Apps Used" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -#~ msgid "Asset" -#~ msgstr "Asset" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 -#~ msgid "Asset Details" -#~ msgstr "Asset Details" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 -#~ msgid "Audited by" -#~ msgstr "Audited by" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -#~ msgid "Authorize Wallet" -#~ msgstr "Authorize Wallet" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "Babylon points" -#~ msgstr "Babylon points" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -#~ msgid "Balance" -#~ msgstr "Balance" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -#~ msgid "Base Assets" -#~ msgstr "Base Assets" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -#~ msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -#~ msgstr "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -#~ msgid "Binance campaign banner" -#~ msgstr "Binance campaign banner" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -#~ msgid "Bitcoin Staking with Binance" -#~ msgstr "Bitcoin Staking with Binance" - -#: src/components/Logo/Logo.tsx:37 -#~ msgid "BOB" -#~ msgstr "BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:206 -#~ msgid "BOB Bridge" -#~ msgstr "BOB Bridge" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:92 -#~ msgid "BOB Fusion: The Final Season" -#~ msgstr "BOB Fusion: The Final Season" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -#~ msgstr "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:435 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." -#~ msgstr "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 -#~ msgid "BOB Gateway is live!" -#~ msgstr "BOB Gateway is live!" - -#: src/app/[lang]/layout.tsx:27 -#: src/app/[lang]/layout.tsx:46 -msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" -msgstr "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" - -#: src/app/[lang]/login/Login.tsx:36 -msgid "BOB Pay is currently in testing. Please try it at your own risk." -msgstr "BOB Pay is currently in testing. Please try it at your own risk." - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 -#~ msgid "BOB TVL Progress" -#~ msgstr "BOB TVL Progress" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -#~ msgid "BOB Wallet" -#~ msgstr "BOB Wallet" - -#: src/app/[lang]/page.tsx:13 -msgid "Bridge" -msgstr "Bridge" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:510 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#~ msgid "Bridge Asset" -#~ msgstr "Bridge Asset" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 -#~ msgid "Bridge Assets" -#~ msgstr "Bridge Assets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -#~ msgid "Bridge BTC LSTs to BOB" -#~ msgstr "Bridge BTC LSTs to BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:505 -#~ msgid "Bridge Disabled" -#~ msgstr "Bridge Disabled" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:199 -#~ msgid "bridge network" -#~ msgstr "bridge network" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -#~ msgid "Bridge to BOB" -#~ msgstr "Bridge to BOB" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 -#~ msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -#~ msgstr "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 -#~ msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -#~ msgstr "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -#~ msgid "BTC LST Lending" -#~ msgstr "BTC LST Lending" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:259 -#~ msgid "By clicking ‘Connect’ you acknowledge and agree to the" -#~ msgstr "By clicking ‘Connect’ you acknowledge and agree to the" - -#: src/app/[lang]/login/Login.tsx:51 -msgid "By logging in, you agree to our" -msgstr "By logging in, you agree to our" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 -#~ msgid "Cancel" -#~ msgstr "Cancel" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:478 -#~ msgid "Cannot stake into {0} due to insufficient liquidity." -#~ msgstr "Cannot stake into {0} due to insufficient liquidity." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 -#~ msgid "Cannot stake into {assetName} due to insufficient liquidity." -#~ msgstr "Cannot stake into {assetName} due to insufficient liquidity." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 -#~ msgid "Category" -#~ msgstr "Category" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:507 -#~ msgid "Checking Allowance" -#~ msgstr "Checking Allowance" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:33 -#~ msgid "choose available wallets" -#~ msgstr "choose available wallets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -#~ msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -#~ msgstr "Chose any of the existing liquid staking provider to mint your BTC LST." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -#~ msgid "Click the <0/> icon next to your favourite apps" -#~ msgstr "Click the <0/> icon next to your favourite apps" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:109 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 -#~ msgid "Close" -#~ msgstr "Close" - -#: src/app/[lang]/sign-up/SignUp.tsx:106 -#~ msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -#~ msgstr "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" - -#: src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:86 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:42 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -#~ msgid "Coming Soon" -#~ msgstr "Coming Soon" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -#~ msgid "Coming SoonSteps" -#~ msgstr "Coming SoonSteps" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 -#~ msgid "Common Prefix auditor" -#~ msgstr "Common Prefix auditor" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 -#~ msgid "Community Voting" -#~ msgstr "Community Voting" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -#~ msgid "Community Voting Information" -#~ msgstr "Community Voting Information" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:56 -#~ msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -#~ msgstr "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 -#~ msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" -#~ msgstr "Congratulations you won!<0/>Take a screenshot to share with your friends!" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:94 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:107 -#~ msgid "Connect BTC Wallet" -#~ msgstr "Connect BTC Wallet" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 -#~ msgid "Connect BTC wallet to access fee rate settings." -#~ msgstr "Connect BTC wallet to access fee rate settings." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:142 -#~ msgid "Connect request is already pending" -#~ msgstr "Connect request is already pending" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:221 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -#~ msgid "Connect Wallet" -#~ msgstr "Connect Wallet" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:303 -#~ msgid "Connect your Bitcoin Wallet (Optional)" -#~ msgstr "Connect your Bitcoin Wallet (Optional)" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:288 -#~ msgid "Connect your EVM Wallet (Mandatory)" -#~ msgstr "Connect your EVM Wallet (Mandatory)" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -#~ msgid "Connected with <0>{wallet}" -#~ msgstr "Connected with <0>{wallet}" - -#: src/app/[lang]/receive/Receive.tsx:70 -msgid "Copy Address" -msgstr "Copy Address" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 -#~ msgid "Copy referral URL" -#~ msgstr "Copy referral URL" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -#~ msgid "Create Account" -#~ msgstr "Create Account" - -#: src/components/Layout/FusionPopover.tsx:63 -#~ msgid "Current Harvest" -#~ msgstr "Current Harvest" - -#: src/components/Layout/FusionPopover.tsx:70 -#~ msgid "Current Leaderboard Rank" -#~ msgstr "Current Leaderboard Rank" - -#: src/components/WithdrawModal/WithdrawModal.tsx:33 -#~ msgid "Current Spice" -#~ msgstr "Current Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 -#~ msgid "Current TVL:" -#~ msgstr "Current TVL:" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 -#~ msgid "Day" -#~ msgstr "Day" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -#~ msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -#~ msgstr "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:124 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:39 -#~ msgid "Deposit" -#~ msgstr "Deposit" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -#~ msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -#~ msgstr "Deposit any eligible BTC LSTs into a lending market on BOB." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -#~ msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -#~ msgstr "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -#~ msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -#~ msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -#~ msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -#~ msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." - -#: src/components/Layout/Header.tsx:109 -#: src/components/Layout/Sidebar.tsx:70 -#~ msgid "Dev" -#~ msgstr "Dev" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -#~ msgid "DEX *" -#~ msgstr "DEX *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -#~ msgid "DEX Liquidity Provisioning" -#~ msgstr "DEX Liquidity Provisioning" - -#: src/app/[lang]/nested-providers.tsx:67 -#~ msgid "Disconnected" -#~ msgstr "Disconnected" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -#~ msgid "Discover All Apps" -#~ msgstr "Discover All Apps" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -#~ msgid "Docs" -#~ msgstr "Docs" - -#: src/components/WithdrawModal/WithdrawForm.tsx:196 -#~ msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -#~ msgstr "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -#~ msgid "Don't show this message again" -#~ msgstr "Don't show this message again" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:100 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." -#~ msgstr "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." -#~ msgstr "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 -#~ msgid "Earned Spice" -#~ msgstr "Earned Spice" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 -#~ msgid "enable ETH top-up for transaction fees on BOB network" -#~ msgstr "enable ETH top-up for transaction fees on BOB network" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -#~ msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -#~ msgstr "Ensure that you are transferring from the BOB Network to avoid any loss of funds." - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 -#~ msgid "Enter Address" -#~ msgstr "Enter Address" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:535 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 -#~ msgid "Enter destination address" -#~ msgstr "Enter destination address" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -#~ msgid "Enter referral code (optional)" -#~ msgstr "Enter referral code (optional)" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -#~ msgid "Enter your access code (optional):" -#~ msgstr "Enter your access code (optional):" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:484 -#~ msgid "Estimated Fee" -#~ msgstr "Estimated Fee" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:136 -#~ msgid "Estimated within 1 hour" -#~ msgstr "Estimated within 1 hour" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:128 -#~ msgid "Estimated within 30 minutes" -#~ msgstr "Estimated within 30 minutes" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:120 -#~ msgid "Estimated within the next block" -#~ msgstr "Estimated within the next block" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:145 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:181 -#~ msgid "Failed to connect to {0}" -#~ msgstr "Failed to connect to {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:111 -#~ msgid "Failed to finalize." -#~ msgstr "Failed to finalize." - -#: src/app/[lang]/(bridge)/hooks/useGateway.ts:239 -#~ msgid "Failed to get estimated fee" -#~ msgstr "Failed to get estimated fee" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 -#~ msgid "Failed to send {amount} {0}" -#~ msgstr "Failed to send {amount} {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:73 -#~ msgid "Failed to submit proof." -#~ msgstr "Failed to submit proof." - -#: src/app/[lang]/send/Send.tsx:322 -msgid "Failed to submit transaction" -msgstr "Failed to submit transaction" - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -#: src/components/WithdrawModal/WithdrawForm.tsx:113 -#~ msgid "Failed to withdraw to L2. Please try again." -#~ msgstr "Failed to withdraw to L2. Please try again." - -#: src/components/WithdrawModal/WithdrawForm.tsx:91 -#~ msgid "Failed to withdraw USDT to L1. Please try again." -#~ msgstr "Failed to withdraw USDT to L1. Please try again." - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -#~ msgid "Featured Assets" -#~ msgstr "Featured Assets" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 -#~ msgid "Fee" -#~ msgstr "Fee" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 -#~ msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." -#~ msgstr "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:78 -#~ msgid "Fetching bridging operations..." -#~ msgstr "Fetching bridging operations..." - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:163 -#~ msgid "Fetching staking strategies..." -#~ msgstr "Fetching staking strategies..." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 -#~ msgid "Final Leaderboard Rank" -#~ msgstr "Final Leaderboard Rank" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:51 -#~ msgid "Finalize" -#~ msgstr "Finalize" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -#~ msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -#~ msgstr "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 -#: src/app/[lang]/fusion/Fusion.tsx:120 -#~ msgid "Follow us on X" -#~ msgstr "Follow us on X" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -#~ msgid "Follow us on X for updates" -#~ msgstr "Follow us on X for updates" - -#: src/app/[lang]/fusion/page.tsx:16 -#: src/components/Layout/Header.tsx:83 -#: src/components/Layout/Sidebar.tsx:58 -#~ msgid "Fusion" -#~ msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:41 -#~ msgid "FUSION" -#~ msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -#~ msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -#~ msgstr "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 -#~ msgid "Fusion season three" -#~ msgstr "Fusion season three" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 -#~ msgid "Fusion Users:" -#~ msgstr "Fusion Users:" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 -#~ msgid "Gas Token" -#~ msgstr "Gas Token" - -#: src/app/[lang]/geoblock/page.tsx:14 -#~ msgid "Geoblock" -#~ msgstr "Geoblock" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Get" -#~ msgstr "Get" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 -#~ msgid "Get ETH for transaction fees on BOB" -#~ msgstr "Get ETH for transaction fees on BOB" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 -#~ msgid "Get tickets" -#~ msgstr "Get tickets" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:196 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:210 -#~ msgid "go back" -#~ msgstr "go back" - -#: src/app/[lang]/404/NotFound.tsx:30 -msgid "Go Back" -msgstr "Go Back" - -#: src/app/[lang]/nested-providers.tsx:82 -#~ msgid "Got it!" -#~ msgstr "Got it!" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 -#~ msgid "Grab the final opportunity to harvest Spice. Join Season 3." -#~ msgstr "Grab the final opportunity to harvest Spice. Join Season 3." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:80 -#~ msgid "Harvest {pointsMissing} more Spice to participate" -#~ msgstr "Harvest {pointsMissing} more Spice to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to participate" -#~ msgstr "Harvest {pointsMissing} more SPICE to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 -#~ msgid "Harvest {pointsMissing} more Spice to play" -#~ msgstr "Harvest {pointsMissing} more Spice to play" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to participate" -#~ msgstr "Harvest {pointsMissing} more SPICE to your account to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to play" -#~ msgstr "Harvest {pointsMissing} more SPICE to your account to play" - -#: src/app/[lang]/fusion/Fusion.tsx:95 -#~ msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -#~ msgstr "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 -#~ msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -#~ msgstr "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" - -#: src/app/[lang]/fusion/Fusion.tsx:88 -#~ msgid "Hero dots" -#~ msgstr "Hero dots" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 -#~ msgid "Holding" -#~ msgstr "Holding" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -#~ msgid "Hot Strategies" -#~ msgstr "Hot Strategies" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -#~ msgid "How to vote:" -#~ msgstr "How to vote:" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 -#~ msgid "Hybrid L2" -#~ msgstr "Hybrid L2" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -#~ msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -#~ msgstr "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 -#~ msgid "Incentives" -#~ msgstr "Incentives" - -#: src/app/[lang]/sign-up/SignUp.tsx:115 -#~ msgid "Invalid referral code. You can try again, or proceed without one." -#~ msgstr "Invalid referral code. You can try again, or proceed without one." - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:74 -#~ msgid "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" -#~ msgstr "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -#~ msgid "Last 24 Hours" -#~ msgstr "Last 24 Hours" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -#~ msgid "Last 7 Days" -#~ msgstr "Last 7 Days" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -#~ msgid "Last Week's Winners" -#~ msgstr "Last Week's Winners" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 -#~ msgid "Leaderboard" -#~ msgstr "Leaderboard" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 -#: src/app/[lang]/fusion/Fusion.tsx:105 -#~ msgid "Learn More" -#~ msgstr "Learn More" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 -#~ msgid "Learn more about {0}" -#~ msgstr "Learn more about {0}" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 -#~ msgid "Lending" -#~ msgstr "Lending" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -#~ msgid "Lending protocol points" -#~ msgstr "Lending protocol points" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -#~ msgid "Lending rate of BTC LSTs" -#~ msgstr "Lending rate of BTC LSTs" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -#~ msgid "Lending rate of satUSD" -#~ msgstr "Lending rate of satUSD" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -#~ msgid "Lending, Restaking, CDP *" -#~ msgstr "Lending, Restaking, CDP *" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 -#~ msgid "Liquid Staking" -#~ msgstr "Liquid Staking" - -#: src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:19 -msgid "Loading transactions..." -msgstr "Loading transactions..." - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -#~ msgid "Loading..." -#~ msgstr "Loading..." - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -#~ msgid "Locked Amount" -#~ msgstr "Locked Amount" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -#~ msgid "Locked Capital Breakdown" -#~ msgstr "Locked Capital Breakdown" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -#~ msgid "Log in" -#~ msgstr "Log in" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 -#~ msgid "Log in to View Dashboard" -#~ msgstr "Log in to View Dashboard" - -#: src/app/[lang]/login/page.tsx:14 -msgid "Login" -msgstr "Login" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -#~ msgid "Login to play" -#~ msgstr "Login to play" - -#: src/components/LoginSection/LoginSection.tsx:14 -#~ msgid "Login with wallet" -#~ msgstr "Login with wallet" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 -#~ msgid "Lottery" -#~ msgstr "Lottery" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:33 -#~ msgid "Lottery ticket" -#~ msgstr "Lottery ticket" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "LST provider points" -#~ msgstr "LST provider points" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 -#~ msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." -#~ msgstr "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -#~ msgid "Maximum points will be received by providing BTC LST liquidity." -#~ msgstr "Maximum points will be received by providing BTC LST liquidity." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -#~ msgid "Mint and Lend satUSD" -#~ msgstr "Mint and Lend satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -#~ msgid "Mint more BTC LSTs with these borrowed assets." -#~ msgstr "Mint more BTC LSTs with these borrowed assets." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -#~ msgid "Mint satUSD and supply it into a lending market on BOB" -#~ msgstr "Mint satUSD and supply it into a lending market on BOB" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -#~ msgid "Multipliers" -#~ msgstr "Multipliers" - -#: src/components/Layout/Header.tsx:115 -#: src/components/Layout/Sidebar.tsx:61 -#~ msgid "Multisig" -#~ msgstr "Multisig" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 -#~ msgid "My Apps" -#~ msgstr "My Apps" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 -#~ msgid "My Total Harvest" -#~ msgstr "My Total Harvest" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 -#~ msgid "Name" -#~ msgstr "Name" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 -#~ msgid "navigate to {name} app page" -#~ msgstr "navigate to {name} app page" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -#~ msgid "Navigate to bridge page" -#~ msgstr "Navigate to bridge page" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 -#~ msgid "navigate to Common Prefix audit" -#~ msgstr "navigate to Common Prefix audit" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -#~ msgid "navigate to discord" -#~ msgstr "navigate to discord" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:85 -#~ msgid "navigate to ecosystem section in fusion page" -#~ msgstr "navigate to ecosystem section in fusion page" - -#: src/components/Logo/Logo.tsx:30 -#~ msgid "navigate to home page" -#~ msgstr "navigate to home page" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 -#~ msgid "navigate to OtterSec audit" -#~ msgstr "navigate to OtterSec audit" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 -#~ msgid "navigate to Trails of Bits audit" -#~ msgstr "navigate to Trails of Bits audit" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -#~ msgid "navigate to X social" -#~ msgstr "navigate to X social" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -#~ msgid "Need support? Enter our Discord." -#~ msgstr "Need support? Enter our Discord." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 -#~ msgid "Network Fee" -#~ msgstr "Network Fee" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 -#~ msgid "Network Fee Rate" -#~ msgstr "Network Fee Rate" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -#~ msgid "New Quests Coming Soon" -#~ msgstr "New Quests Coming Soon" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 -#~ msgid "new tickets drop in {0}" -#~ msgstr "new tickets drop in {0}" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -#~ msgid "No assets shown" -#~ msgstr "No assets shown" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:93 -#~ msgid "No bridging operations found" -#~ msgstr "No bridging operations found" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 -#~ msgid "No new goal at the moment. Stay tuned for updates!" -#~ msgstr "No new goal at the moment. Stay tuned for updates!" - -#: src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:29 -msgid "No transactions found" -msgstr "No transactions found" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough spice" -#~ msgstr "Not enough spice" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "Not enough Spice" -#~ msgstr "Not enough Spice" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough SPICE" -#~ msgstr "Not enough SPICE" - -#: src/app/[lang]/not-found/page.tsx:14 -#~ msgid "Not found" -#~ msgstr "Not found" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "Not your lucky day... yet!" -#~ msgstr "Not your lucky day... yet!" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:253 -#~ msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -#~ msgstr "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 -#~ msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -#~ msgstr "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." - -#: src/components/Layout/Header.tsx:57 -#~ msgid "open drawer" -#~ msgstr "open drawer" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -#~ msgid "Optional: It's possible to repeat steps 2-4 multiple times." -#~ msgstr "Optional: It's possible to repeat steps 2-4 multiple times." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -#~ msgid "or" -#~ msgstr "or" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 -#~ msgid "OtterSec auditor" -#~ msgstr "OtterSec auditor" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:63 -#~ msgid "Pending" -#~ msgstr "Pending" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -#~ msgid "Play" -#~ msgstr "Play" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:94 -#~ msgid "Please confirm allowance approval for {0} in your wallet" -#~ msgstr "Please confirm allowance approval for {0} in your wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 -#~ msgid "Please confirm the transaction in your wallet" -#~ msgstr "Please confirm the transaction in your wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:92 -#~ msgid "Please confirm transaction in your wallet" -#~ msgstr "Please confirm transaction in your wallet" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -#~ msgid "Please connect a wallet" -#~ msgstr "Please connect a wallet" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -#~ msgid "Please note:" -#~ msgstr "Please note:" - -#: src/app/[lang]/sign-up/SignUp.tsx:102 -#~ msgid "POWERED BY BTC & ETH" -#~ msgstr "POWERED BY BTC & ETH" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#~ msgid "Preparing..." -#~ msgstr "Preparing..." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:273 -#~ msgid "Privacy policy" -#~ msgstr "Privacy policy" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 -#~ msgid "Protocol Fee" -#~ msgstr "Protocol Fee" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:45 -#~ msgid "Prove" -#~ msgstr "Prove" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -#~ msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -#~ msgstr "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -#~ msgid "Provide liquidity into Oku DEX" -#~ msgstr "Provide liquidity into Oku DEX" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -#~ msgid "Quests" -#~ msgstr "Quests" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 -#~ msgid "Quests Completed" -#~ msgstr "Quests Completed" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -#~ msgid "Quests Only" -#~ msgstr "Quests Only" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 -#~ msgid "Read it now." -#~ msgstr "Read it now." - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -#~ msgid "Read more here" -#~ msgstr "Read more here" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 -#~ msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -#~ msgstr "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." - -#: src/app/[lang]/receive/page.tsx:14 -#: src/app/[lang]/wallet/components/Hero/Hero.tsx:38 -msgid "Receive" -msgstr "Receive" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -#~ msgid "Receive {0}" -#~ msgstr "Receive {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -#~ msgid "Receive {ticker}" -#~ msgstr "Receive {ticker}" - -#: src/app/[lang]/send/Send.tsx:367 -msgid "Recipient" -msgstr "Recipient" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 -#~ msgid "referral table" -#~ msgstr "referral table" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 -#~ msgid "Referred by" -#~ msgstr "Referred by" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 -#~ msgid "Released: BOB's Hybrid L2 vision paper" -#~ msgstr "Released: BOB's Hybrid L2 vision paper" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -#~ msgid "Remove vote" -#~ msgstr "Remove vote" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 -#~ msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." -#~ msgstr "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 -#~ msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." -#~ msgstr "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 -#~ msgid "Restaking" -#~ msgstr "Restaking" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -#~ msgid "Rewards" -#~ msgstr "Rewards" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -#~ msgid "Satoshi protocol points" -#~ msgstr "Satoshi protocol points" - -#: src/app/[lang]/send/components/ScannerModal/ScannerModal.tsx:19 -msgid "Scan QR Code" -msgstr "Scan QR Code" - -#: src/components/Layout/FusionPopover.tsx:77 -#~ msgid "Season 1 & 2 (Completed)" -#~ msgstr "Season 1 & 2 (Completed)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 -#~ msgid "Season 1 & 2 Total Spice (Completed):" -#~ msgstr "Season 1 & 2 Total Spice (Completed):" - -#: src/components/Layout/FusionPopover.tsx:88 -#~ msgid "Season 2 Final Rank" -#~ msgstr "Season 2 Final Rank" - -#: src/components/Layout/FusionPopover.tsx:57 -#~ msgid "Season 3 (Ongoing)" -#~ msgstr "Season 3 (Ongoing)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 -#~ msgid "Season 3 Harvested Spice" -#~ msgstr "Season 3 Harvested Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -#~ msgid "Season Three" -#~ msgstr "Season Three" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:218 -#~ msgid "Select Bitcoin Wallet" -#~ msgstr "Select Bitcoin Wallet" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:204 -#~ msgid "Select EVM Wallet" -#~ msgstr "Select EVM Wallet" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 -#~ msgid "select gas token" -#~ msgstr "select gas token" - -#: src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 -#~ msgid "Select Network" -#~ msgstr "Select Network" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:170 -#~ msgid "select network to bridge from" -#~ msgstr "select network to bridge from" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:180 -#~ msgid "select network to bridge to" -#~ msgstr "select network to bridge to" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 -#~ msgid "Select Strategy" -#~ msgstr "Select Strategy" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -#~ msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -#~ msgstr "Select the wrapped Bitcoin asset and the amount that you want to bridge." - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 -#~ msgid "Select Token" -#~ msgstr "Select Token" - -#: src/app/[lang]/send/page.tsx:14 -#: src/app/[lang]/send/Send.tsx:415 -#: src/app/[lang]/wallet/components/Hero/Hero.tsx:35 -msgid "Send" -msgstr "Send" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 -#~ msgid "Send {0}" -#~ msgstr "Send {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -#~ msgid "Send {ticker}" -#~ msgstr "Send {ticker}" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 -#~ msgid "Share on X" -#~ msgstr "Share on X" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 -#~ msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -#~ msgstr "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" - -#: src/components/Layout/Header.tsx:90 -#~ msgid "Show secondary navigation" -#~ msgstr "Show secondary navigation" - -#: src/app/[lang]/sign-up/page.tsx:14 -#~ msgid "Sign-Up" -#~ msgstr "Sign-Up" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 -#~ msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." -#~ msgstr "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:109 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 -#: src/components/LoginButton/LoginButton.tsx:29 -#~ msgid "Something went wrong. Please try again later." -#~ msgstr "Something went wrong. Please try again later." - -#: src/app/[lang]/sign-up/SignUp.tsx:72 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -#~ msgid "Something went wrong. Please try connecting your wallet again." -#~ msgstr "Something went wrong. Please try connecting your wallet again." - -#: src/app/[lang]/404/NotFound.tsx:23 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 -#~ msgid "Spice" -#~ msgstr "Spice" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 -#~ msgid "Spice + Bedrock Diamonds + Babylon Points" -#~ msgstr "Spice + Bedrock Diamonds + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 -#~ msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" -#~ msgstr "Spice + Pell Points + Bedrock Diamond + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 -#~ msgid "Spice + Pell Points + Solv XP + Babylon Points" -#~ msgstr "Spice + Pell Points + Solv XP + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 -#~ msgid "Spice + Segment Points + Supply APR" -#~ msgstr "Spice + Segment Points + Supply APR" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 -#~ msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" -#~ msgstr "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 -#~ msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" -#~ msgstr "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 -#~ msgid "Spice + Shoebill Points + Supply APR" -#~ msgstr "Spice + Shoebill Points + Supply APR" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 -#~ msgid "Spice + Solv XP + Babylon Points" -#~ msgstr "Spice + Solv XP + Babylon Points" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -#~ msgid "Spice Earned Across Apps" -#~ msgstr "Spice Earned Across Apps" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 -#~ msgid "Spice Multiplier" -#~ msgstr "Spice Multiplier" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 -#~ msgid "Spice Per Hour" -#~ msgstr "Spice Per Hour" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "Spice points (Lower)" -#~ msgstr "Spice points (Lower)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -#~ msgid "Spice points (Medium)" -#~ msgstr "Spice points (Medium)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#~ msgid "Spice rewards (Higher)" -#~ msgstr "Spice rewards (Higher)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -#~ msgid "Spice rewards (Medium)" -#~ msgstr "Spice rewards (Medium)" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#: src/app/[lang]/(bridge)/stake/page.tsx:14 -#: src/app/[lang]/(bridge)/stake/Stake.tsx:65 -#: src/components/Layout/Header.tsx:80 -#: src/components/Layout/Sidebar.tsx:55 -#~ msgid "Stake" -#~ msgstr "Stake" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Stake with" -#~ msgstr "Stake with" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 -#~ msgid "Staking Token" -#~ msgstr "Staking Token" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -#~ msgid "Start Harvesting" -#~ msgstr "Start Harvesting" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 -#: src/app/[lang]/sign-up/SignUp.tsx:127 -#~ msgid "Start Harvesting Spice" -#~ msgstr "Start Harvesting Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -#~ msgid "Step One" -#~ msgstr "Step One" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -#~ msgid "Step Two" -#~ msgstr "Step Two" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:104 -#~ msgid "Successfully finalized transaction" -#~ msgstr "Successfully finalized transaction" - -#: src/app/[lang]/send/Send.tsx:197 -msgid "Successfully sent {amount} {0}" -msgstr "Successfully sent {amount} {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:66 -#~ msgid "Successfully submitted ${0} proof" -#~ msgstr "Successfully submitted ${0} proof" - -#: src/app/[lang]/send/Send.tsx:227 -msgid "Successfully transfered {0} {1}" -msgstr "Successfully transfered {0} {1}" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 -#~ msgid "Supply seSOLVBTCBBN into Segment to earn interest." -#~ msgstr "Supply seSOLVBTCBBN into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 -#~ msgid "Supply seUNIBTC into Segment to earn interest." -#~ msgstr "Supply seUNIBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 -#~ msgid "Supply tBTC into Segment to earn interest." -#~ msgstr "Supply tBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 -#~ msgid "Supply tBTC into Shoebill to earn interest." -#~ msgstr "Supply tBTC into Shoebill to earn interest." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -#~ msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -#~ msgstr "Supply the newly minted satUSD into a <0>lending protocol on BOB." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 -#~ msgid "Supply wBTC into Segment to earn interest." -#~ msgstr "Supply wBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 -#~ msgid "Supply wBTC into Shoebill to earn interest." -#~ msgstr "Supply wBTC into Shoebill to earn interest." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -#~ msgid "Support your favourite BOB apps" -#~ msgstr "Support your favourite BOB apps" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:84 -#~ msgid "Switch to {capitalizedName}" -#~ msgstr "Switch to {capitalizedName}" - -#: src/components/Layout/Header.tsx:106 -#: src/components/Layout/Sidebar.tsx:67 -#~ msgid "T&Cs" -#~ msgstr "T&Cs" - -#: src/app/[lang]/404/NotFound.tsx:35 -msgid "Take em home" -msgstr "Take em home" - -#: src/app/[lang]/login/Login.tsx:61 -msgid "Terms and Conditions" -msgstr "Terms and Conditions" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:265 -#~ msgid "Terms of Service" -#~ msgstr "Terms of Service" - -#: src/components/Logo/Logo.tsx:47 -#~ msgid "Testnet" -#~ msgstr "Testnet" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -#~ msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -#~ msgstr "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 -#~ msgid "The fastest and easiest way to bridge BTC to BOB." -#~ msgstr "The fastest and easiest way to bridge BTC to BOB." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -#~ msgid "The final season" -#~ msgstr "The final season" - -#: src/app/[lang]/sign-up/SignUp.tsx:99 -#~ msgid "THE FIRST HYBRID L2" -#~ msgstr "THE FIRST HYBRID L2" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 -#~ msgid "The leaderboard resets for the new season" -#~ msgstr "The leaderboard resets for the new season" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 -#~ msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." -#~ msgstr "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 -#~ msgid "The number of BOB ecosystem apps that you have harvested Spice with" -#~ msgstr "The number of BOB ecosystem apps that you have harvested Spice with" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 -#~ msgid "The number of Intract and Galxe quests that you have completed" -#~ msgstr "The number of Intract and Galxe quests that you have completed" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:55 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" -#~ msgstr "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:61 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" -#~ msgstr "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 -#~ msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." -#~ msgstr "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 -#~ msgid "" -#~ "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -#~ "still confirm your transaction within a reasonable time." -#~ msgstr "" -#~ "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -#~ "still confirm your transaction within a reasonable time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:171 -#~ msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." -#~ msgstr "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 -#~ msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." -#~ msgstr "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." - -#: src/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:171 -#~ msgid "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." - -#: src/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#~ msgid "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -#~ msgid "There are no apps to be displayed" -#~ msgstr "There are no apps to be displayed" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:503 -#~ msgid "There is currently no available liquidity to onramp BTC into {0}." -#~ msgstr "There is currently no available liquidity to onramp BTC into {0}." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 -#~ msgid "There is currently no available liquidity to onramp BTC into {assetName}." -#~ msgstr "There is currently no available liquidity to onramp BTC into {assetName}." - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -#~ msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -#~ msgstr "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 -#~ msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." -#~ msgstr "This is the final amount you will receive after deducting the Protocol fees from your input amount." - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:494 -#~ msgid "This is the final amount you will stake after deducting the Protocol fees from your input amount." -#~ msgstr "This is the final amount you will stake after deducting the Protocol fees from your input amount." - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -#~ msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -#~ msgstr "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 -#~ msgid "Time left until voting round ends" -#~ msgstr "Time left until voting round ends" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -#~ msgid "To cast your vote, please log in" -#~ msgstr "To cast your vote, please log in" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:123 -#~ msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -#~ msgstr "To stay up-to date with the BOB ecosystem follow @build_on_bob." - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 -#~ msgid "Top up Gas" -#~ msgstr "Top up Gas" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:429 -#~ msgid "Top-up Gas" -#~ msgstr "Top-up Gas" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -#~ msgid "Total Assets" -#~ msgstr "Total Assets" - -#: src/components/Layout/FusionPopover.tsx:81 -#~ msgid "Total Harvest" -#~ msgstr "Total Harvest" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 -#~ msgid "Total Referrals Earnings:" -#~ msgstr "Total Referrals Earnings:" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 -#~ msgid "Total Spice Harvested" -#~ msgstr "Total Spice Harvested" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 -#~ msgid "Trails of Bits auditor" -#~ msgstr "Trails of Bits auditor" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -#~ msgid "Transaction submitted" -#~ msgstr "Transaction submitted" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:51 -#~ msgid "Transaction Submitted" -#~ msgstr "Transaction Submitted" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 -#~ msgid "Transfer time" -#~ msgstr "Transfer time" - -#: src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 -#~ msgid "TVL" -#~ msgstr "TVL" - -#: src/components/WithdrawModal/WithdrawForm.tsx:150 -#~ msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -#~ msgstr "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -#~ msgstr "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 -#~ msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." -#~ msgstr "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." - -#: src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:199 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:72 -#~ msgid "Unknown" -#~ msgstr "Unknown" - -#: src/app/[lang]/(bridge)/stake/Stake.tsx:68 -#~ msgid "Unstake" -#~ msgstr "Unstake" - -#: src/components/WithdrawModal/WithdrawForm.tsx:181 -#~ msgid "USDT can only be withdrawn to Ethereum." -#~ msgstr "USDT can only be withdrawn to Ethereum." - -#: src/components/WithdrawModal/WithdrawForm.tsx:173 -#~ msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -#~ msgstr "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" -#~ msgstr "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" -#~ msgstr "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -#~ msgid "Use any of the <0>supported bridges." -#~ msgstr "Use any of the <0>supported bridges." - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 -#~ msgid "Use Apps" -#~ msgstr "Use Apps" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -#~ msgid "Use BTC LSTs as collateral to borrow other assets" -#~ msgstr "Use BTC LSTs as collateral to borrow other assets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -#~ msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -#~ msgstr "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -#~ msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -#~ msgstr "Use the deposited satUSD as collateral to borrow any BTC LST." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -#~ msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -#~ msgstr "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 -#~ msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -#~ msgstr "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:107 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:138 -#~ msgid "User rejected the request" -#~ msgstr "User rejected the request" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 -#~ msgid "Username" -#~ msgstr "Username" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:214 -#~ msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -#~ msgstr "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." - -#: src/app/[lang]/wallet/Wallet.tsx:29 -#~ msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -#~ msgstr "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:103 -#~ msgid "View All Transactions" -#~ msgstr "View All Transactions" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#~ msgid "View Intract" -#~ msgstr "View Intract" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 -#~ msgid "View Multipliers" -#~ msgstr "View Multipliers" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 -#~ msgid "View Quests" -#~ msgstr "View Quests" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 -#~ msgid "Vote" -#~ msgstr "Vote" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -#~ msgid "Vote for maximum three projects per week" -#~ msgstr "Vote for maximum three projects per week" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -#~ msgid "Vote for maximum three projects per week by clicking on the flame icon." -#~ msgstr "Vote for maximum three projects per week by clicking on the flame icon." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -#~ msgid "Votes Left:" -#~ msgstr "Votes Left:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -#~ msgid "Voting limit exceeded" -#~ msgstr "Voting limit exceeded" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:55 -#~ msgid "Waiting for approval" -#~ msgstr "Waiting for approval" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:53 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -#~ msgid "Waiting for confirmation" -#~ msgstr "Waiting for confirmation" - -#: src/app/[lang]/wallet/page.tsx:14 -msgid "Wallet" -msgstr "Wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:82 -#~ msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -#~ msgstr "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -#~ msgid "We're Sorry" -#~ msgstr "We're Sorry" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 -#~ msgid "Website" -#~ msgstr "Website" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -#~ msgid "Welcome to BOB Fusion" -#~ msgstr "Welcome to BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -#~ msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -#~ msgstr "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -#~ msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -#~ msgstr "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:127 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:39 -#~ msgid "Withdraw" -#~ msgstr "Withdraw" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:161 -#: src/components/WithdrawModal/WithdrawForm.tsx:211 -#~ msgid "Withdraw Assets" -#~ msgstr "Withdraw Assets" - -#: src/components/WithdrawModal/WithdrawModal.tsx:26 -#~ msgid "Withdraw Locked Assets" -#~ msgstr "Withdraw Locked Assets" - -#: src/components/WithdrawModal/WithdrawForm.tsx:138 -#~ msgid "Withdraw to L1 failed. Please try again." -#~ msgstr "Withdraw to L1 failed. Please try again." - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -#~ msgid "Yield Assets" -#~ msgstr "Yield Assets" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 -#~ msgid "You" -#~ msgstr "You" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." -#~ msgstr "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -#~ msgid "You can change your votes at any time before the end of the weekly voting period" -#~ msgstr "You can change your votes at any time before the end of the weekly voting period" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 -#~ msgid "You Have 0 Tickets" -#~ msgstr "You Have 0 Tickets" - -#: src/app/[lang]/nested-providers.tsx:74 -#~ msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." -#~ msgstr "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "You need at least {0} Spice to participate in Lottery." -#~ msgstr "You need at least {0} Spice to participate in Lottery." - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -#~ msgid "You still have assets locked in Season One. Please redeem your funds" -#~ msgstr "You still have assets locked in Season One. Please redeem your funds" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -#~ msgid "You will need to actively monitor your position, especially if it has a small range." -#~ msgstr "You will need to actively monitor your position, especially if it has a small range." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 -#~ msgid "You will receive" -#~ msgstr "You will receive" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 -#~ msgid "You will stake" -#~ msgstr "You will stake" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 -#~ msgid "You're Ready to Play!" -#~ msgstr "You're Ready to Play!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 -#~ msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." -#~ msgstr "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" -#~ msgstr "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" -#~ msgstr "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 -#~ msgid "Your Active Referrals" -#~ msgstr "Your Active Referrals" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 -#~ msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -#~ msgstr "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:79 -#~ msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -#~ msgstr "Your assets will be delivered shortly, with an estimated arrival time of aprox." - -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 -#~ msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -#~ msgstr "Your available balance may differ from your wallet balance due to network fees and available liquidity" - -#: src/app/[lang]/nested-providers.tsx:71 -#~ msgid "Your funds are safe!" -#~ msgstr "Your funds are safe!" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 -#~ msgid "Your performance in seasons 1 & 2" -#~ msgstr "Your performance in seasons 1 & 2" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 -#~ msgid "Your Referral Code" -#~ msgstr "Your Referral Code" - -#: src/components/Layout/FusionPopover.tsx:53 -#~ msgid "Your Spice Harvest Overview" -#~ msgstr "Your Spice Harvest Overview" diff --git a/apps/bob-pay/src/locales/zh-chatgpt.po b/apps/bob-pay/src/locales/zh-chatgpt.po deleted file mode 100644 index dfcd5964f..000000000 --- a/apps/bob-pay/src/locales/zh-chatgpt.po +++ /dev/null @@ -1,1261 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-12 00:19+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/layout.tsx:29 -msgid "" -msgstr "" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:81 -msgid ", due to the challenge period" -msgstr ",由于挑战期" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:50 -msgid "{0} ago" -msgstr "{0} 前" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:46 -msgid "{0} remaining" -msgstr "剩余 {0}" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:35 -msgid "{0} until quest ends" -msgstr "任务结束还有 {0}" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:35 -msgid "{0} until voting round ends" -msgstr "投票轮结束还有 {0}" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -msgstr "* 显示的倍数可能会根据各项目的支付结构而改变。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -msgstr "<0>一键质押您的BTC,在BOB上接收BTC LSTs。" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:43 -msgid "2 hours" -msgstr "2小时" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:209 -msgid "3rd Party" -msgstr "第三方" - -#: src/app/[lang]/not-found.tsx:19 -msgid "404 Error" -msgstr "404 错误" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:43 -msgid "7 days" -msgstr "7天" - -#: src/components/Layout/Header.tsx:104 -#: src/components/Layout/Sidebar.tsx:73 -msgid "About" -msgstr "关于" - -#: src/components/LoginSection/LoginSection.tsx:11 -msgid "Already harvesting?" -msgstr "已经在收获了吗?" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:529 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:362 -msgid "Amount" -msgstr "数量" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -msgid "An exclusive quest campaign." -msgstr "独家任务活动。" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:260 -msgid "and that you have read and understood our" -msgstr "并且您已阅读并理解我们的" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:514 -msgid "Approve" -msgstr "批准" - -#: src/components/Layout/Header.tsx:70 -#: src/components/Layout/Sidebar.tsx:47 -msgid "Apps" -msgstr "应用程序" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:136 -msgid "Apps Used" -msgstr "使用的应用程序" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -msgid "Asset" -msgstr "资产" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:13 -msgid "Audited by" -msgstr "审计者" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -msgid "Authorize Wallet" -msgstr "授权钱包" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Babylon points" -msgstr "巴比伦积分" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -msgid "Balance" -msgstr "余额" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -msgid "Base Assets" -msgstr "基础资产" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -msgstr "以下是您从应用中收获的Spice。继续参与以增加您未来的收获!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -msgid "Binance campaign banner" -msgstr "币安活动横幅" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -msgid "Bitcoin Staking with Binance" -msgstr "使用币安进行比特币质押" - -#: src/components/Logo/Logo.tsx:35 -msgid "BOB" -msgstr "BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:206 -msgid "BOB Bridge" -msgstr "BOB桥" - -#: src/app/[lang]/fusion/Fusion.tsx:83 -#: src/components/BannerCarousel/FusionBanner.tsx:21 -msgid "BOB Fusion: The Final Season" -msgstr "BOB融合:最后一季" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:404 -msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -msgstr "BOB网关允许您将比特币上的BTC兑换为BOB上的ETH" - -#: src/components/BannerCarousel/OnrampBanner.tsx:17 -msgid "BOB Gateway is live!" -msgstr "BOB网关现已上线!" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:234 -msgid "BOB TVL Progress" -msgstr "BOB TVL进度" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -msgid "BOB Wallet" -msgstr "BOB钱包" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 -#: src/components/Layout/Header.tsx:67 -#: src/components/Layout/Sidebar.tsx:44 -msgid "Bridge" -msgstr "桥接" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:515 -msgid "Bridge Asset" -msgstr "桥接资产" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:129 -msgid "Bridge Assets" -msgstr "桥接资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -msgid "Bridge BTC LSTs to BOB" -msgstr "将BTC LST桥接到BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:510 -msgid "Bridge Disabled" -msgstr "桥接已禁用" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:199 -msgid "bridge network" -msgstr "桥接网络" - -#: src/components/WithdrawModal/WithdrawForm.tsx:188 -msgid "Bridge to BOB" -msgstr "桥接到BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeAlert.tsx:15 -msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -msgstr "ALEX桥接已被禁用,因为Alex Lab遭遇了涉及XLink桥的攻击。更多信息请参见此<0>公告。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:435 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:410 -msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -msgstr "BTC桥接当前不可用。原因可能是:{0}。请稍后再试。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -msgid "BTC LST Lending" -msgstr "BTC LST借贷" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 -msgid "By clicking ‘Connect’ you acknowledge and agree to the" -msgstr "点击‘连接’,即表示您确认并同意" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:244 -msgid "Cancel" -msgstr "取消" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:419 -msgid "Cannot stake into {0} due to insufficient liquidity." -msgstr "由于流动性不足,无法质押到{0}。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:512 -msgid "Checking Allowance" -msgstr "检查额度" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:33 -msgid "choose available wallets" -msgstr "选择可用的钱包" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -msgstr "选择任意现有的流动质押提供商来铸造您的BTC LST。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -msgid "Click the <0/> icon next to your favourite apps" -msgstr "点击您喜欢的应用旁边的<0/>图标" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:109 -#: src/components/TransactionModal/GatewayTransactionModal.tsx:74 -msgid "Close" -msgstr "关闭" - -#: src/app/[lang]/sign-up/SignUp.tsx:105 -msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -msgstr "结合比特币和以太坊的流动性和安全性。主网已上线!" - -#: src/app/[lang]/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:82 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -#: src/app/[lang]/stake/components/Unstake/ExternalStakeCard.tsx:86 -msgid "Coming Soon" -msgstr "即将推出" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -msgid "Coming SoonSteps" -msgstr "即将推出步骤" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:31 -msgid "Common Prefix auditor" -msgstr "通用前缀审计员" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:41 -msgid "Community Voting" -msgstr "社区投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -msgid "Community Voting Information" -msgstr "社区投票信息" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:45 -msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -msgstr "通过Intract和BOB质押门户完成各种链上和链下任务,收获额外的62,500 Spice。" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:138 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:92 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:104 -msgid "Connect BTC Wallet" -msgstr "连接BTC钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 -msgid "Connect request is already pending" -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:214 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -msgid "Connect Wallet" -msgstr "连接钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:296 -msgid "Connect your Bitcoin Wallet (Optional)" -msgstr "连接请求已在等待中" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:281 -msgid "Connect your EVM Wallet (Mandatory)" -msgstr "连接您的 EVM 钱包(必填)" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -msgid "Connected with <0>{wallet}" -msgstr "已连接到 <0>{wallet}" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 -msgid "Copy Address" -msgstr "复制地址" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:201 -msgid "Copy referral URL" -msgstr "复制推荐链接" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -msgid "Create Account" -msgstr "创建账户" - -#: src/components/Layout/FusionPopover.tsx:63 -msgid "Current Harvest" -msgstr "当前收获" - -#: src/components/Layout/FusionPopover.tsx:70 -msgid "Current Leaderboard Rank" -msgstr "当前排行榜排名" - -#: src/components/WithdrawModal/WithdrawModal.tsx:31 -msgid "Current Spice" -msgstr "当前Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:105 -msgid "Day" -msgstr "天" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -msgstr "将高优先级资产部署到高优先级的DeFi协议中,以最大化你的Spice收获。" - -#: src/app/[lang]/bridge/Bridge.tsx:126 -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:39 -msgid "Deposit" -msgstr "存款" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -msgstr "将任何符合条件的BTC LST存入BOB的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -msgstr "将BTC LST存入BOB的借贷市场,并将其作为抵押品借入其他资产。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -msgstr "将你的BTC LST存入<0>Satoshi Protocol铸造satUSD,并将其存入BOB的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -msgstr "将你的BTC LST存入<0>Satoshi Protocol铸造satUSD。" - -#: src/components/Layout/Header.tsx:101 -#: src/components/Layout/Sidebar.tsx:70 -msgid "Dev" -msgstr "开发" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -msgid "DEX *" -msgstr "去中心化交易所 *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -msgid "DEX Liquidity Provisioning" -msgstr "去中心化交易所流动性提供" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -msgid "Discover All Apps" -msgstr "发现所有应用" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -msgid "Docs" -msgstr "文档" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -msgstr "不相信比特币复兴?你可以将资金从合约中提取到以太坊钱包。如果你提取资产,将不再赚取Spice。<0>你将保留目前已收获的Spice。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -msgid "Don't show this message again" -msgstr "不再显示此消息" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -msgstr "确保你是从BOB网络进行转账,以避免资金损失。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:540 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:418 -msgid "Enter destination address" -msgstr "输入目的地址" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -msgid "Enter referral code (optional)" -msgstr "输入推荐码(可选)" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -msgid "Enter your access code (optional):" -msgstr "输入您的访问码(可选):" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:455 -msgid "Estimated Fee" -msgstr "预计费用" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:140 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:174 -msgid "Failed to connect to {0}" -msgstr "连接到 {0} 失败" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:110 -msgid "Failed to finalize." -msgstr "完成失败。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:109 -msgid "Failed to get estimated fee" -msgstr "未能获取预计费用" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:72 -msgid "Failed to submit proof." -msgstr "提交证明失败。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:83 -#: src/components/WithdrawModal/WithdrawForm.tsx:109 -msgid "Failed to withdraw to L2. Please try again." -msgstr "提款至L2失败。请再试一次。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -msgid "Failed to withdraw USDT to L1. Please try again." -msgstr "USDT提至L1失败。请再试一次。" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -msgid "Featured Assets" -msgstr "精选资产" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:71 -msgid "Fetching bridging operations..." -msgstr "正在获取桥接操作..." - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:153 -msgid "Fetching staking strategies..." -msgstr "正在获取质押策略..." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:60 -msgid "Final Leaderboard Rank" -msgstr "最终排行榜排名" - -#: src/app/[lang]/bridge/components/BridgeStatus/RelayStep.tsx:50 -msgid "Finalize" -msgstr "完成" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -msgstr "按照<0>本指南的步骤,为Oku上的DEX池提供流动性。" - -#: src/components/BannerCarousel/XBanner.tsx:17 -msgid "Follow us on X" -msgstr "在X上关注我们" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -msgid "Follow us on X for updates" -msgstr "在X上关注我们以获取更新" - -#: src/components/Layout/Header.tsx:81 -#: src/components/Layout/Sidebar.tsx:58 -msgid "Fusion" -msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:39 -msgid "FUSION" -msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -msgstr "Fusion第3季是你最后一次收获Spice的机会。抵押你的比特币以获得最高的倍增,并推荐朋友以获得他们收集的Spice份额。" - -#: src/components/BannerCarousel/FusionBanner.tsx:29 -msgid "Fusion season three" -msgstr "Fusion第三季" - -#: src/components/TransactionDetails/TransactionDetails.tsx:119 -msgid "Gas Token" -msgstr "Gas代币" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:409 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:388 -msgid "Get ETH for transaction fees on BOB" -msgstr "获取ETH支付BOB上的交易费用" - -#: src/app/[lang]/not-found.tsx:29 -msgid "Go Back" -msgstr "返回" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:255 -msgid "Grab the final opportunity to harvest Spice. Join Season 3." -msgstr "抓住最后的机会收获Spice。加入第3季吧。" - -#: src/app/[lang]/fusion/Fusion.tsx:86 -msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -msgstr "通过存入BOB应用程序、投票和完成任务来收获Spice。请留意特别活动。" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:55 -msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -msgstr "这是你的活跃推荐人及他们当前为你赚取的Spice。他们赚得越多,你受益越多!" - -#: src/app/[lang]/fusion/Fusion.tsx:79 -msgid "Hero dots" -msgstr "英雄点" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -msgid "Hot Strategies" -msgstr "热门策略" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -msgid "How to vote:" -msgstr "如何投票:" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -msgstr "如果你已经在其他链上持有BTC LST,你可以将它们桥接到BOB并开始收获Spice。" - -#: src/app/[lang]/sign-up/SignUp.tsx:114 -msgid "Invalid referral code. You can try again, or proceed without one." -msgstr "无效的推荐码。你可以再试一次,或者不使用推荐码继续。" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -msgid "Last 24 Hours" -msgstr "过去24小时" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -msgid "Last 7 Days" -msgstr "过去7天" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -msgid "Last Week's Winners" -msgstr "上周的获胜者" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -msgid "Leaderboard" -msgstr "排行榜" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:79 -#: src/app/[lang]/fusion/Fusion.tsx:96 -msgid "Learn More" -msgstr "了解更多" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -msgid "Lending protocol points" -msgstr "借贷协议点数" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -msgid "Lending rate of BTC LSTs" -msgstr "BTC LST的借贷利率" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -msgid "Lending rate of satUSD" -msgstr "satUSD的借贷利率" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -msgid "Lending, Restaking, CDP *" -msgstr "借贷,重新质押,CDP *" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -msgid "Loading..." -msgstr "加载中..." - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -msgid "Locked Amount" -msgstr "锁定金额" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -msgid "Locked Capital Breakdown" -msgstr "锁定资本明细" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -msgid "Log in" -msgstr "登录" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:251 -msgid "Log in to View Dashboard" -msgstr "登录以查看仪表板" - -#: src/components/LoginSection/LoginSection.tsx:14 -msgid "Login with wallet" -msgstr "使用钱包登录" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "LST provider points" -msgstr "LST提供者点数" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -msgid "Maximum points will be received by providing BTC LST liquidity." -msgstr "提供BTC LST流动性将获得最大点数。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -msgid "Mint and Lend satUSD" -msgstr "铸造并借出satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -msgid "Mint more BTC LSTs with these borrowed assets." -msgstr "用这些借来的资产铸造更多的BTC LST。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -msgid "Mint satUSD and supply it into a lending market on BOB" -msgstr "铸造satUSD并将其提供给BOB的借贷市场" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -msgid "Multipliers" -msgstr "倍增器" - -#: src/components/Layout/Header.tsx:107 -#: src/components/Layout/Sidebar.tsx:61 -msgid "Multisig" -msgstr "多签" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:143 -msgid "My Total Harvest" -msgstr "我的总收获" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -msgid "Name" -msgstr "名称" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -msgid "Navigate to bridge page" -msgstr "导航至桥接页面" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:26 -msgid "navigate to Common Prefix audit" -msgstr "导航至Common Prefix审计" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -msgid "navigate to discord" -msgstr "导航至Discord" - -#: src/components/BannerCarousel/BannerCarousel.tsx:99 -msgid "navigate to ecosystem section in fusion page" -msgstr "导航至Fusion页面中的生态系统部分" - -#: src/components/Logo/Logo.tsx:28 -msgid "navigate to home page" -msgstr "导航至主页" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:34 -msgid "navigate to OtterSec audit" -msgstr "导航至OtterSec审计" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:18 -msgid "navigate to Trails of Bits audit" -msgstr "导航至Trails of Bits审计" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -msgid "navigate to X social" -msgstr "导航至X社交" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -msgid "Need support? Enter our Discord." -msgstr "需要支持?进入我们的Discord。" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -msgid "No assets shown" -msgstr "没有显示资产" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:86 -msgid "No bridging operations found" -msgstr "未找到桥接操作" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:237 -msgid "No new goal at the moment. Stay tuned for updates!" -msgstr "目前没有新的目标。敬请关注更新!" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:246 -msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -msgstr "在BOB上,您可以链接您的EVM和BTC钱包。为了获得最佳功能,建议同时连接两个网络的钱包。" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:66 -msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -msgstr "完成后,你的第3季得分将与第1和第2季的得分一起计算,得出你最终的Spice收成。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -msgid "Optional: It's possible to repeat steps 2-4 multiple times." -msgstr "可选:步骤2-4可以多次重复。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -msgid "or" -msgstr "或" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:39 -msgid "OtterSec auditor" -msgstr "OtterSec审计员" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:63 -msgid "Pending" -msgstr "待处理" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:94 -msgid "Please confirm allowance approval for {0} in your wallet" -msgstr "请确认钱包中{0}的额度批准" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:65 -msgid "Please confirm the transaction in your wallet" -msgstr "请在你的钱包中确认交易" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:92 -msgid "Please confirm transaction in your wallet" -msgstr "请在你的钱包中确认交易" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -msgid "Please connect a wallet" -msgstr "请连接钱包" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -msgid "Please note:" -msgstr "请注意:" - -#: src/app/[lang]/sign-up/SignUp.tsx:101 -msgid "POWERED BY BTC & ETH" -msgstr "由BTC和ETH驱动" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 -msgid "Privacy policy" -msgstr "隐私政策" - -#: src/app/[lang]/bridge/components/BridgeStatus/ProveStep.tsx:44 -msgid "Prove" -msgstr "证明" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -msgstr "在<0>Oku DEX上向任意AMM池提供流动性,赚取交易费用和奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -msgid "Provide liquidity into Oku DEX" -msgstr "向Oku DEX提供流动性" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:82 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:41 -msgid "Quests" -msgstr "任务" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:167 -msgid "Quests Completed" -msgstr "已完成的任务" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:232 -msgid "Quests Only" -msgstr "仅任务" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -msgid "Read more here" -msgstr "在这里阅读更多" - -#: src/components/BannerCarousel/FusionBanner.tsx:25 -msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -msgstr "阅读BOB博客上的官方Fusion指南,立即开始收获Spice。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:371 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 -msgid "Receive" -msgstr "接收" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -msgid "Receive {0}" -msgstr "接收{0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -msgid "Receive {ticker}" -msgstr "接收{ticker}" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:539 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:417 -msgid "Recipient" -msgstr "接收人" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -msgid "Remove vote" -msgstr "移除投票" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:129 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -msgid "Rewards" -msgstr "奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -msgid "Satoshi protocol points" -msgstr "Satoshi协议点数" - -#: src/components/Layout/FusionPopover.tsx:77 -msgid "Season 1 & 2 (Completed)" -msgstr "第1季和第2季(已完成)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:111 -msgid "Season 1 & 2 Total Spice (Completed):" -msgstr "第1季和第2季的Spice总数(已完成):" - -#: src/components/Layout/FusionPopover.tsx:88 -msgid "Season 2 Final Rank" -msgstr "第2季最终排名" - -#: src/components/Layout/FusionPopover.tsx:57 -msgid "Season 3 (Ongoing)" -msgstr "第3季(进行中)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:99 -msgid "Season 3 Harvested Spice" -msgstr "第3季收获的Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -msgid "Season Three" -msgstr "第3季" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:211 -msgid "Select Bitcoin Wallet" -msgstr "选择比特币钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:197 -msgid "Select EVM Wallet" -msgstr "选择EVM钱包" - -#: src/components/TransactionDetails/TransactionDetails.tsx:122 -msgid "select gas token" -msgstr "选择Gas代币" - -#: src/app/[lang]/bridge/components/ChainSelect/ChainSelect.tsx:20 -msgid "Select Network" -msgstr "选择网络" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:170 -msgid "select network to bridge from" -msgstr "选择桥接源网络" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:180 -msgid "select network to bridge to" -msgstr "选择桥接目标网络" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -msgstr "选择包装的比特币资产和你想桥接的数量。" - -#: src/components/TransactionDetails/TransactionDetails.tsx:124 -msgid "Select Token" -msgstr "选择代币" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:257 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 -msgid "Send" -msgstr "发送" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -msgid "Send {ticker}" -msgstr "发送{ticker}" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:185 -msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -msgstr "将此链接分享给朋友,当他们注册时,你将获得他们Spice收成的15%作为奖励,以及他们推荐的任何人Spice收成的7%。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:111 -#: src/components/LoginButton/LoginButton.tsx:29 -msgid "Something went wrong. Please try again later." -msgstr "出了些问题。请稍后再试。" - -#: src/app/[lang]/sign-up/SignUp.tsx:71 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -msgid "Something went wrong. Please try connecting your wallet again." -msgstr "出了些问题。请尝试重新连接你的钱包。" - -#: src/app/[lang]/not-found.tsx:22 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "抱歉,您正在查找的页面不存在或已被移动。以下是一些有用的链接:" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:81 -msgid "Spice" -msgstr "Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -msgid "Spice Earned Across Apps" -msgstr "在应用中获得的Spice" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:122 -msgid "Spice Multiplier" -msgstr "Spice倍增器" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:116 -msgid "Spice Per Hour" -msgstr "每小时Spice" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Spice points (Lower)" -msgstr "Spice点数(较低)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -msgid "Spice points (Medium)" -msgstr "Spice点数(中等)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -msgid "Spice rewards (Higher)" -msgstr "Spice奖励(较高)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -msgid "Spice rewards (Medium)" -msgstr "Spice奖励(中等)" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:424 -#: src/components/Layout/Header.tsx:78 -#: src/components/Layout/Sidebar.tsx:55 -msgid "Stake" -msgstr "质押" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:82 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -msgid "Start Harvesting" -msgstr "开始收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:258 -#: src/app/[lang]/sign-up/SignUp.tsx:126 -msgid "Start Harvesting Spice" -msgstr "开始收获Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -msgid "Step One" -msgstr "第一步" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -msgstr "第一步 将你的资产桥接到BOB以开始收获Spice。<0/>提示:某些资产比其他资产获得更多的Spice。你可以通过点击“查看倍增器”按钮查看。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -msgid "Step Two" -msgstr "第二步" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:103 -msgid "Successfully finalized transaction" -msgstr "交易成功完成" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:65 -msgid "Successfully submitted ${0} proof" -msgstr "成功提交了${0}的证明" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -msgstr "将新铸造的satUSD提供给<0>BOB上的借贷协议。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -msgid "Support your favourite BOB apps" -msgstr "支持你最喜欢的BOB应用" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:82 -msgid "Switch to {capitalizedName}" -msgstr "切换到 {capitalizedName}" - -#: src/components/Layout/Header.tsx:98 -#: src/components/Layout/Sidebar.tsx:67 -msgid "T&Cs" -msgstr "条款和条件" - -#: src/app/[lang]/not-found.tsx:34 -msgid "Take em home" -msgstr "带他们回家" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 -msgid "Terms of Service" -msgstr "服务条款" - -#: src/components/Logo/Logo.tsx:45 -msgid "Testnet" -msgstr "测试网" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -msgstr "感谢您的理解,我们希望在更去中心化的未来能为您服务。BOB L2网络本身是完全去中心化的,无法被审查,所有代码都是开源的。" - -#: src/components/BannerCarousel/OnrampBanner.tsx:21 -msgid "The fastest and easiest way to bridge BTC to BOB." -msgstr "将BTC桥接到BOB的最快和最简单的方法。" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -msgid "The final season" -msgstr "最后一季" - -#: src/app/[lang]/sign-up/SignUp.tsx:98 -msgid "THE FIRST HYBRID L2" -msgstr "第一个混合L2" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:137 -msgid "The number of BOB ecosystem apps that you have harvested Spice with" -msgstr "您使用的BOB生态系统应用收获Spice的数量" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:168 -msgid "The number of Intract and Galxe quests that you have completed" -msgstr "您完成的Intract和Galxe任务的数量" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -msgid "There are no apps to be displayed" -msgstr "没有可显示的应用" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:444 -msgid "There is currently no available liquidity to onramp BTC into {0}." -msgstr "目前没有可用的流动性将BTC注入{0}。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -msgstr "这通常是为了遵守当地法律法规。网站托管者必须遵守规定,可能会被迫阻止某些国家。很遗憾,您的国家在该网站托管者的条款和条件下被列为限制国家。我们正在不断努力扩大我们的服务范围,向更多地区提供服务。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -msgstr "由于地理封锁,该网站在您的位置不可用。地理封锁是内容提供商根据用户的地理位置限制其内容访问的做法。" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -msgid "To cast your vote, please log in" -msgstr "要投票,请登录" - -#: src/components/BannerCarousel/XBanner.tsx:21 -msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -msgstr "要跟上BOB生态系统的最新动态,请关注@build_on_bob。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:402 -msgid "Top up Gas" -msgstr "充值Gas" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:378 -msgid "Top-up Gas" -msgstr "充值Gas" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -msgid "Total Assets" -msgstr "总资产" - -#: src/components/Layout/FusionPopover.tsx:81 -msgid "Total Harvest" -msgstr "总收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:63 -msgid "Total Referrals Earnings:" -msgstr "总推荐收入:" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:52 -msgid "Total Spice Harvested" -msgstr "总Spice收获" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:23 -msgid "Trails of Bits auditor" -msgstr "Bits小径审计员" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Transaction submitted" -msgstr "交易已提交" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:51 -msgid "Transaction Submitted" -msgstr "交易已提交" - -#: src/components/TransactionDetails/TransactionDetails.tsx:111 -msgid "Transfer time" -msgstr "转账时间" - -#: src/components/WithdrawModal/WithdrawForm.tsx:146 -msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -msgstr "不幸的是,无法使用智能账户桥接到BOB。我们正在努力在不久的将来添加对此的支持,请关注我们的未来更新。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:425 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:400 -msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -msgstr "不幸的是,目前不支持Taproot (P2TR)地址。请使用其他地址类型。" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:72 -msgid "Unknown" -msgstr "未知" - -#: src/components/WithdrawModal/WithdrawForm.tsx:177 -msgid "USDT can only be withdrawn to Ethereum." -msgstr "USDT只能提取到以太坊。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:169 -msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -msgstr "USDT只能提取到以太坊。当桥接到BOB时,系统会提示您签名两次:一次是将您的资产(不含USDT)桥接到BOB,一次是将USDT提取到以太坊。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -msgid "Use any of the <0>supported bridges." -msgstr "使用任何<0>支持的桥接。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:153 -msgid "Use Apps" -msgstr "使用应用" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -msgid "Use BTC LSTs as collateral to borrow other assets" -msgstr "将BTC LSTs作为抵押借入其他资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -msgstr "将存入的BTC LSTs作为抵押借入wBTC、tBTC或FBTC。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -msgstr "将存入的satUSD作为抵押借入任何BTC LST。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -msgstr "在应用中使用您的桥接资产以最大化您的Spice收获。<0/>提示:某些类型的应用提供更大的倍增器。探索“热门策略”部分以了解更多。" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:44 -msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -msgstr "利用您的Spice总量支持您最喜欢的BOB建设者。每周将公布获胜者。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:109 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:133 -msgid "User rejected the request" -msgstr "用户拒绝了请求" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:214 -msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -msgstr "使用官方桥接通常需要7天。为了更快的提现,我们建议使用第三方桥接。" - -#: src/app/[lang]/wallet/Wallet.tsx:29 -msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -msgstr "查看您在BOB网络上的钱包摘要。DeFi头寸可能无法被追踪。" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:96 -msgid "View All Transactions" -msgstr "查看所有交易" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:126 -msgid "View Multipliers" -msgstr "查看倍增器" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:60 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:179 -msgid "View Quests" -msgstr "查看任务" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:49 -msgid "Vote" -msgstr "投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -msgid "Vote for maximum three projects per week" -msgstr "每周最多投票给三个项目" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -msgid "Vote for maximum three projects per week by clicking on the flame icon." -msgstr "通过点击火焰图标,每周最多为三个项目投票。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -msgid "Votes Left:" -msgstr "剩余投票:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -msgid "Voting limit exceeded" -msgstr "超出投票限制" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:55 -msgid "Waiting for approval" -msgstr "等待批准" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:53 -#: src/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Waiting for confirmation" -msgstr "等待确认" - -#: src/components/Layout/Header.tsx:74 -#: src/components/Layout/Sidebar.tsx:51 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 -msgid "Wallet" -msgstr "钱包" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:82 -msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -msgstr "我们会相应地为您提供更新。您可以在桥接页面上监控进度;一旦过程完成,它将被标记为已完成。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -msgid "We're Sorry" -msgstr "我们很抱歉" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -msgid "Welcome to BOB Fusion" -msgstr "欢迎来到BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -msgstr "当您为一个项目投票时,您的Spice总量将被添加到他们的投票总数中。<0/><1/>每周获得最多投票的项目将获得Spice奖励,他们可以将其分配给用户。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -msgstr "当您投票时,您不会放弃任何收获。您的Spice总量仅用于计算您的投票权重。" - -#: src/app/[lang]/bridge/Bridge.tsx:129 -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:39 -msgid "Withdraw" -msgstr "提现" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:157 -#: src/components/WithdrawModal/WithdrawForm.tsx:207 -msgid "Withdraw Assets" -msgstr "提现资产" - -#: src/components/WithdrawModal/WithdrawForm.tsx:134 -msgid "Withdraw to L1 failed. Please try again." -msgstr "提现到L1失败。请再试一次。" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -msgid "Yield Assets" -msgstr "收益资产" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -msgid "You can change your votes at any time before the end of the weekly voting period" -msgstr "在每周投票期结束之前,您可以随时更改您的投票。" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -msgid "You still have assets locked in Season One. Please redeem your funds" -msgstr "您仍然有资产锁定在第一季。请赎回您的资金。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -msgid "You will need to actively monitor your position, especially if it has a small range." -msgstr "您需要积极监控您的头寸,特别是如果它的范围很小。" - -#: src/components/TransactionDetails/TransactionDetails.tsx:89 -msgid "You will receive" -msgstr "您将收到" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:51 -msgid "Your Active Referrals" -msgstr "您当前的推荐" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:55 -msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -msgstr "一旦您的BTC交易获得至少3个确认并且处理在我们的L2链上完成,您的资产将被交付。我们会相应地为您提供更新。您可以在桥接页面上监控进度。完成后将标记为已完成。" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:79 -msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -msgstr "您的资产将很快送达,预计到达时间为:" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:357 -msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -msgstr "由于网络费用和可用流动性,您的可用余额可能与您的钱包余额不同。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:184 -msgid "Your Referral Code" -msgstr "您的推荐代码" - -#: src/components/Layout/FusionPopover.tsx:53 -msgid "Your Spice Harvest Overview" -msgstr "您的Spice收获概览" diff --git a/apps/bob-pay/src/locales/zh.po b/apps/bob-pay/src/locales/zh.po deleted file mode 100644 index f2af34cab..000000000 --- a/apps/bob-pay/src/locales/zh.po +++ /dev/null @@ -1,1855 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-14 13:15+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 -#~ msgid ", due to the challenge period" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:171 -#~ msgid "{0}" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:50 -#~ msgid "{0} ago" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 -#~ msgid "{0} remaining" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 -#~ msgid "{0} until next draw" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:40 -#~ msgid "{0} until quest ends" -#~ msgstr "距离任务结束还有{0}" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 -#~ msgid "{0} until voting round ends" -#~ msgstr "距离投票轮结束还有{0}" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -#~ msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -#~ msgstr "* 显示的倍数可能会根据相应项目的支付结构而变化。" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 -#~ msgid "< 1 minute" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 -#~ msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:87 -#~ msgid "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 -#~ msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -#~ msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -#~ msgstr "<0>一键质押你的BTC 并在BOB上接收BTC LSTs。" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -#~ msgid "2 hours" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:209 -#~ msgid "3rd Party" -#~ msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:20 -#: src/app/[lang]/404/page.tsx:14 -msgid "404 Error" -msgstr "404 错误" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -#~ msgid "7 days" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 -#: src/components/Layout/Header.tsx:112 -#: src/components/Layout/Sidebar.tsx:73 -#~ msgid "About" -#~ msgstr "关于" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:105 -#~ msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:93 -#~ msgid "Advanced Fee Settings" -#~ msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 -#~ msgid "All Apps" -#~ msgstr "所有应用" - -#: src/components/LoginSection/LoginSection.tsx:11 -#~ msgid "Already harvesting?" -#~ msgstr "已经在收获?" - -#: src/app/[lang]/send/Send.tsx:376 -msgid "Amount" -msgstr "" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -#~ msgid "An exclusive quest campaign." -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:267 -#~ msgid "and that you have read and understood our" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:179 -#~ msgid "Apply" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:509 -#~ msgid "Approve" -#~ msgstr "通过" - -#: src/app/[lang]/apps/page.tsx:14 -#: src/components/Layout/Header.tsx:72 -#: src/components/Layout/Sidebar.tsx:47 -#~ msgid "Apps" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 -#~ msgid "Apps Used" -#~ msgstr "已体验的应用" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -#~ msgid "Asset" -#~ msgstr "资产" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 -#~ msgid "Asset Details" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 -#~ msgid "Audited by" -#~ msgstr "审计" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -#~ msgid "Authorize Wallet" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "Babylon points" -#~ msgstr "Babylon积分" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -#~ msgid "Balance" -#~ msgstr "余额" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -#~ msgid "Base Assets" -#~ msgstr "基础资产" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -#~ msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -#~ msgstr "以下是你从各个应用中收获的Spice。继续参与以增加你未来的收获!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -#~ msgid "Binance campaign banner" -#~ msgstr "" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -#~ msgid "Bitcoin Staking with Binance" -#~ msgstr "" - -#: src/components/Logo/Logo.tsx:37 -#~ msgid "BOB" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:206 -#~ msgid "BOB Bridge" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:92 -#~ msgid "BOB Fusion: The Final Season" -#~ msgstr "BOB Fusion:最终季" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -#~ msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:435 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 -#~ msgid "BOB Gateway is live!" -#~ msgstr "" - -#: src/app/[lang]/layout.tsx:27 -#: src/app/[lang]/layout.tsx:46 -msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" -msgstr "" - -#: src/app/[lang]/login/Login.tsx:36 -msgid "BOB Pay is currently in testing. Please try it at your own risk." -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 -#~ msgid "BOB TVL Progress" -#~ msgstr "BOB TVL进度" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -#~ msgid "BOB Wallet" -#~ msgstr "BOB 钱包" - -#: src/app/[lang]/page.tsx:13 -msgid "Bridge" -msgstr "桥" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:510 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#~ msgid "Bridge Asset" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 -#~ msgid "Bridge Assets" -#~ msgstr "跨链资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -#~ msgid "Bridge BTC LSTs to BOB" -#~ msgstr "将BTC LSTs跨链到BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:505 -#~ msgid "Bridge Disabled" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:199 -#~ msgid "bridge network" -#~ msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -#~ msgid "Bridge to BOB" -#~ msgstr "跨链到BOB" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 -#~ msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -#~ msgstr "由于 Alex Lab 遭受了涉及 XLink 桥接的攻击,桥接 ALEX 已被禁用。有关更多信息,请参阅此 <0>公告。" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 -#~ msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -#~ msgid "BTC LST Lending" -#~ msgstr "BTC LST借贷" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:259 -#~ msgid "By clicking ‘Connect’ you acknowledge and agree to the" -#~ msgstr "" - -#: src/app/[lang]/login/Login.tsx:51 -msgid "By logging in, you agree to our" -msgstr "" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 -#~ msgid "Cancel" -#~ msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:478 -#~ msgid "Cannot stake into {0} due to insufficient liquidity." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 -#~ msgid "Cannot stake into {assetName} due to insufficient liquidity." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 -#~ msgid "Category" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:507 -#~ msgid "Checking Allowance" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:33 -#~ msgid "choose available wallets" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -#~ msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -#~ msgstr "选择任何现有的流动性质押提供商来铸造你的BTC LST。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -#~ msgid "Click the <0/> icon next to your favourite apps" -#~ msgstr "点击 <0/> 你喜爱应用旁边的图标" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:109 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 -#~ msgid "Close" -#~ msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:106 -#~ msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -#~ msgstr "结合比特币和以太坊的流动性和安全性。= 主网已上线!。" - -#: src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:86 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:42 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -#~ msgid "Coming Soon" -#~ msgstr "即将推出" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -#~ msgid "Coming SoonSteps" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 -#~ msgid "Common Prefix auditor" -#~ msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 -#~ msgid "Community Voting" -#~ msgstr "社区投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -#~ msgid "Community Voting Information" -#~ msgstr "社区投票信息" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:56 -#~ msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -#~ msgstr "完成各种链上和链下任务,使用Intract和BOB Stake来额外收获62,500 Spice。" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 -#~ msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:94 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:107 -#~ msgid "Connect BTC Wallet" -#~ msgstr "连接比特币钱包" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 -#~ msgid "Connect BTC wallet to access fee rate settings." -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:142 -#~ msgid "Connect request is already pending" -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:221 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -#~ msgid "Connect Wallet" -#~ msgstr "连接钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:303 -#~ msgid "Connect your Bitcoin Wallet (Optional)" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:288 -#~ msgid "Connect your EVM Wallet (Mandatory)" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -#~ msgid "Connected with <0>{wallet}" -#~ msgstr "" - -#: src/app/[lang]/receive/Receive.tsx:70 -msgid "Copy Address" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 -#~ msgid "Copy referral URL" -#~ msgstr "复制推荐URL" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -#~ msgid "Create Account" -#~ msgstr "创建账户" - -#: src/components/Layout/FusionPopover.tsx:63 -#~ msgid "Current Harvest" -#~ msgstr "当前收获" - -#: src/components/Layout/FusionPopover.tsx:70 -#~ msgid "Current Leaderboard Rank" -#~ msgstr "当前排行榜排名" - -#: src/components/WithdrawModal/WithdrawModal.tsx:33 -#~ msgid "Current Spice" -#~ msgstr "当前Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 -#~ msgid "Current TVL:" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 -#~ msgid "Day" -#~ msgstr "/天" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -#~ msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -#~ msgstr "将高优先级资产部署到高优先级DeFi协议中,以最大化你的Spice收获。" - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:124 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:39 -#~ msgid "Deposit" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -#~ msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -#~ msgstr "将任何符合条件的BTC LSTs存入BOB上的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -#~ msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -#~ msgstr "将BTC LSTs存入BOB上的借贷市场,并使用它们作为抵押品借其他资产。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -#~ msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -#~ msgstr "将你的BTC LSTs存入 <0>将你的BTC LSTs存入 以铸造satUSD,并将其存入BOB上的借贷市场" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -#~ msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -#~ msgstr "将你的BTC LSTs存入 <0>Satoshi协议 以铸造satUSD。" - -#: src/components/Layout/Header.tsx:109 -#: src/components/Layout/Sidebar.tsx:70 -#~ msgid "Dev" -#~ msgstr "开发者" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -#~ msgid "DEX *" -#~ msgstr "去中心化交易所(DEX) *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -#~ msgid "DEX Liquidity Provisioning" -#~ msgstr "为DEX提供流动性" - -#: src/app/[lang]/nested-providers.tsx:67 -#~ msgid "Disconnected" -#~ msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -#~ msgid "Discover All Apps" -#~ msgstr "探索全部应用" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -#~ msgid "Docs" -#~ msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:196 -#~ msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -#~ msgstr "想要退出?你可以将资金从合约中提取到以太坊钱包。请注意,提取资产后你将不再赚取Spice。<0>不过,你已收获的Spice都会保留。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -#~ msgid "Don't show this message again" -#~ msgstr "不再显示此消息" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:100 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 -#~ msgid "Earned Spice" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 -#~ msgid "enable ETH top-up for transaction fees on BOB network" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -#~ msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -#~ msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 -#~ msgid "Enter Address" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:535 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 -#~ msgid "Enter destination address" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -#~ msgid "Enter referral code (optional)" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -#~ msgid "Enter your access code (optional):" -#~ msgstr "" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:484 -#~ msgid "Estimated Fee" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:136 -#~ msgid "Estimated within 1 hour" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:128 -#~ msgid "Estimated within 30 minutes" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:120 -#~ msgid "Estimated within the next block" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:145 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:181 -#~ msgid "Failed to connect to {0}" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:111 -#~ msgid "Failed to finalize." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/hooks/useGateway.ts:239 -#~ msgid "Failed to get estimated fee" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 -#~ msgid "Failed to send {amount} {0}" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:73 -#~ msgid "Failed to submit proof." -#~ msgstr "" - -#: src/app/[lang]/send/Send.tsx:322 -msgid "Failed to submit transaction" -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -#: src/components/WithdrawModal/WithdrawForm.tsx:113 -#~ msgid "Failed to withdraw to L2. Please try again." -#~ msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:91 -#~ msgid "Failed to withdraw USDT to L1. Please try again." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -#~ msgid "Featured Assets" -#~ msgstr "特色资产" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 -#~ msgid "Fee" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 -#~ msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:78 -#~ msgid "Fetching bridging operations..." -#~ msgstr "" - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:163 -#~ msgid "Fetching staking strategies..." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 -#~ msgid "Final Leaderboard Rank" -#~ msgstr "最终排行榜排名" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:51 -#~ msgid "Finalize" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -#~ msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -#~ msgstr "按照 <0>本指南 的步骤为Oku上的DEX池提供流动性。" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 -#: src/app/[lang]/fusion/Fusion.tsx:120 -#~ msgid "Follow us on X" -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -#~ msgid "Follow us on X for updates" -#~ msgstr "" - -#: src/app/[lang]/fusion/page.tsx:16 -#: src/components/Layout/Header.tsx:83 -#: src/components/Layout/Sidebar.tsx:58 -#~ msgid "Fusion" -#~ msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:41 -#~ msgid "FUSION" -#~ msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -#~ msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -#~ msgstr "Fusion第3季是你收获Spice的最后机会。质押比特币获得最高倍数,并通过推荐朋友赚取他们Spice收获的分成。" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 -#~ msgid "Fusion season three" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 -#~ msgid "Fusion Users:" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 -#~ msgid "Gas Token" -#~ msgstr "" - -#: src/app/[lang]/geoblock/page.tsx:14 -#~ msgid "Geoblock" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Get" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 -#~ msgid "Get ETH for transaction fees on BOB" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 -#~ msgid "Get tickets" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:196 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:210 -#~ msgid "go back" -#~ msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:30 -msgid "Go Back" -msgstr "返回" - -#: src/app/[lang]/nested-providers.tsx:82 -#~ msgid "Got it!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 -#~ msgid "Grab the final opportunity to harvest Spice. Join Season 3." -#~ msgstr "抓住最后收获Spice的机会!加入第3季!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:80 -#~ msgid "Harvest {pointsMissing} more Spice to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 -#~ msgid "Harvest {pointsMissing} more Spice to play" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to play" -#~ msgstr "" - -#: src/app/[lang]/fusion/Fusion.tsx:95 -#~ msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -#~ msgstr "通过存入BOB应用、投票和完成任务来收获Spice。密切关注特别活动" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 -#~ msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -#~ msgstr "这里展示了你推荐的活跃用户及他们为你赚取的Spice。他们赚得越多,你获益越多!" - -#: src/app/[lang]/fusion/Fusion.tsx:88 -#~ msgid "Hero dots" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 -#~ msgid "Holding" -#~ msgstr "持有" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -#~ msgid "Hot Strategies" -#~ msgstr "热门策略" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -#~ msgid "How to vote:" -#~ msgstr "如何投票:" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 -#~ msgid "Hybrid L2" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -#~ msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -#~ msgstr "如果你已经在其他链上拥有BTC LSTs,你可以将它们跨链到BOB并开始收获Spice。" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 -#~ msgid "Incentives" -#~ msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:115 -#~ msgid "Invalid referral code. You can try again, or proceed without one." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:74 -#~ msgid "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -#~ msgid "Last 24 Hours" -#~ msgstr "过去24小时" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -#~ msgid "Last 7 Days" -#~ msgstr "过去7天" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -#~ msgid "Last Week's Winners" -#~ msgstr "上周获胜者" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 -#~ msgid "Leaderboard" -#~ msgstr "排行榜" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 -#: src/app/[lang]/fusion/Fusion.tsx:105 -#~ msgid "Learn More" -#~ msgstr "了解更多" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 -#~ msgid "Learn more about {0}" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 -#~ msgid "Lending" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -#~ msgid "Lending protocol points" -#~ msgstr "借贷协议积分" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -#~ msgid "Lending rate of BTC LSTs" -#~ msgstr "BTC LSTs的借贷利率" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -#~ msgid "Lending rate of satUSD" -#~ msgstr "satUSD的借贷利率" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -#~ msgid "Lending, Restaking, CDP *" -#~ msgstr "借贷、再质押、抵押债仓(CDP) *" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 -#~ msgid "Liquid Staking" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:19 -msgid "Loading transactions..." -msgstr "" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -#~ msgid "Loading..." -#~ msgstr "" - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -#~ msgid "Locked Amount" -#~ msgstr "锁定金额" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -#~ msgid "Locked Capital Breakdown" -#~ msgstr "锁定资本明细" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -#~ msgid "Log in" -#~ msgstr "登录" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 -#~ msgid "Log in to View Dashboard" -#~ msgstr "登录查看仪表板" - -#: src/app/[lang]/login/page.tsx:14 -msgid "Login" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -#~ msgid "Login to play" -#~ msgstr "" - -#: src/components/LoginSection/LoginSection.tsx:14 -#~ msgid "Login with wallet" -#~ msgstr "使用钱包登录" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 -#~ msgid "Lottery" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:33 -#~ msgid "Lottery ticket" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "LST provider points" -#~ msgstr "LST 项目方积分" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 -#~ msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -#~ msgid "Maximum points will be received by providing BTC LST liquidity." -#~ msgstr "提供BTC LST流动性将获得最高积分。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -#~ msgid "Mint and Lend satUSD" -#~ msgstr "铸造并借出satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -#~ msgid "Mint more BTC LSTs with these borrowed assets." -#~ msgstr "用这些借到的资产铸造更多BTC LSTs。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -#~ msgid "Mint satUSD and supply it into a lending market on BOB" -#~ msgstr "铸造satUSD并将其供应到BOB上的借贷市场" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -#~ msgid "Multipliers" -#~ msgstr "收益倍数" - -#: src/components/Layout/Header.tsx:115 -#: src/components/Layout/Sidebar.tsx:61 -#~ msgid "Multisig" -#~ msgstr "多签" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 -#~ msgid "My Apps" -#~ msgstr "我的应用" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 -#~ msgid "My Total Harvest" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 -#~ msgid "Name" -#~ msgstr "名称" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 -#~ msgid "navigate to {name} app page" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -#~ msgid "Navigate to bridge page" -#~ msgstr "导航至桥接页面" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 -#~ msgid "navigate to Common Prefix audit" -#~ msgstr "" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -#~ msgid "navigate to discord" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:85 -#~ msgid "navigate to ecosystem section in fusion page" -#~ msgstr "" - -#: src/components/Logo/Logo.tsx:30 -#~ msgid "navigate to home page" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 -#~ msgid "navigate to OtterSec audit" -#~ msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 -#~ msgid "navigate to Trails of Bits audit" -#~ msgstr "" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -#~ msgid "navigate to X social" -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -#~ msgid "Need support? Enter our Discord." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 -#~ msgid "Network Fee" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 -#~ msgid "Network Fee Rate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -#~ msgid "New Quests Coming Soon" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 -#~ msgid "new tickets drop in {0}" -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -#~ msgid "No assets shown" -#~ msgstr "未显示的资产" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:93 -#~ msgid "No bridging operations found" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 -#~ msgid "No new goal at the moment. Stay tuned for updates!" -#~ msgstr "目前暂无新目标。请保持关注更新!" - -#: src/app/[lang]/wallet/components/TransactionList/TransactionList.tsx:29 -msgid "No transactions found" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough spice" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "Not enough Spice" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough SPICE" -#~ msgstr "" - -#: src/app/[lang]/not-found/page.tsx:14 -#~ msgid "Not found" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "Not your lucky day... yet!" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:253 -#~ msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 -#~ msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -#~ msgstr "第3季结束后,你的得分将与第1季和第2季的得分合并,用于计算你的最终Spice收获。" - -#: src/components/Layout/Header.tsx:57 -#~ msgid "open drawer" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -#~ msgid "Optional: It's possible to repeat steps 2-4 multiple times." -#~ msgstr "可选:可以多次重复步骤2-4。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -#~ msgid "or" -#~ msgstr "或" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 -#~ msgid "OtterSec auditor" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:63 -#~ msgid "Pending" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -#~ msgid "Play" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:94 -#~ msgid "Please confirm allowance approval for {0} in your wallet" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 -#~ msgid "Please confirm the transaction in your wallet" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:92 -#~ msgid "Please confirm transaction in your wallet" -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -#~ msgid "Please connect a wallet" -#~ msgstr "请连接钱包" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -#~ msgid "Please note:" -#~ msgstr "请注意:" - -#: src/app/[lang]/sign-up/SignUp.tsx:102 -#~ msgid "POWERED BY BTC & ETH" -#~ msgstr "比特币 + 以太坊共同驱动" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#~ msgid "Preparing..." -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:273 -#~ msgid "Privacy policy" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 -#~ msgid "Protocol Fee" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:45 -#~ msgid "Prove" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -#~ msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -#~ msgstr "为 <0>Oku DEX 上的任何AMM池提供流动性,以赚取交易费用和激励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -#~ msgid "Provide liquidity into Oku DEX" -#~ msgstr "为Oku DEX提供流动性" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -#~ msgid "Quests" -#~ msgstr "任务" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 -#~ msgid "Quests Completed" -#~ msgstr "完成的任务" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -#~ msgid "Quests Only" -#~ msgstr "仅任务" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 -#~ msgid "Read it now." -#~ msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -#~ msgid "Read more here" -#~ msgstr "点此了解更多" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 -#~ msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -#~ msgstr "" - -#: src/app/[lang]/receive/page.tsx:14 -#: src/app/[lang]/wallet/components/Hero/Hero.tsx:38 -msgid "Receive" -msgstr "接收" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -#~ msgid "Receive {0}" -#~ msgstr "接收 {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -#~ msgid "Receive {ticker}" -#~ msgstr "接收 {ticker}" - -#: src/app/[lang]/send/Send.tsx:367 -msgid "Recipient" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 -#~ msgid "referral table" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 -#~ msgid "Referred by" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 -#~ msgid "Released: BOB's Hybrid L2 vision paper" -#~ msgstr "" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -#~ msgid "Remove vote" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 -#~ msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 -#~ msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 -#~ msgid "Restaking" -#~ msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -#~ msgid "Rewards" -#~ msgstr "奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -#~ msgid "Satoshi protocol points" -#~ msgstr "Satoshi协议积分" - -#: src/app/[lang]/send/components/ScannerModal/ScannerModal.tsx:19 -msgid "Scan QR Code" -msgstr "" - -#: src/components/Layout/FusionPopover.tsx:77 -#~ msgid "Season 1 & 2 (Completed)" -#~ msgstr "第1季和第2季(已完成)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 -#~ msgid "Season 1 & 2 Total Spice (Completed):" -#~ msgstr "第1季和第2季总Spice(已完成):" - -#: src/components/Layout/FusionPopover.tsx:88 -#~ msgid "Season 2 Final Rank" -#~ msgstr "第2季最终排名" - -#: src/components/Layout/FusionPopover.tsx:57 -#~ msgid "Season 3 (Ongoing)" -#~ msgstr "第3季(进行中)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 -#~ msgid "Season 3 Harvested Spice" -#~ msgstr "第3季收获的Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -#~ msgid "Season Three" -#~ msgstr "第三季" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:218 -#~ msgid "Select Bitcoin Wallet" -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:204 -#~ msgid "Select EVM Wallet" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 -#~ msgid "select gas token" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 -#~ msgid "Select Network" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:170 -#~ msgid "select network to bridge from" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:180 -#~ msgid "select network to bridge to" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 -#~ msgid "Select Strategy" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -#~ msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -#~ msgstr "选择你想跨链的BTC包装资产和数量。" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 -#~ msgid "Select Token" -#~ msgstr "" - -#: src/app/[lang]/send/page.tsx:14 -#: src/app/[lang]/send/Send.tsx:415 -#: src/app/[lang]/wallet/components/Hero/Hero.tsx:35 -msgid "Send" -msgstr "发送" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 -#~ msgid "Send {0}" -#~ msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -#~ msgid "Send {ticker}" -#~ msgstr "发送 {ticker}" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 -#~ msgid "Share on X" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 -#~ msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -#~ msgstr "与朋友分享此链接,当他们注册时,你将获得他们Spice收获的15%作为奖励,以及他们推荐的任何人的Spice收获的7%" - -#: src/components/Layout/Header.tsx:90 -#~ msgid "Show secondary navigation" -#~ msgstr "" - -#: src/app/[lang]/sign-up/page.tsx:14 -#~ msgid "Sign-Up" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 -#~ msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:109 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 -#: src/components/LoginButton/LoginButton.tsx:29 -#~ msgid "Something went wrong. Please try again later." -#~ msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:72 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -#~ msgid "Something went wrong. Please try connecting your wallet again." -#~ msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:23 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "抱歉,这个页面有误或已经不存在,也许这些链接可以帮助到您" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 -#~ msgid "Spice" -#~ msgstr "Spice" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 -#~ msgid "Spice + Bedrock Diamonds + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 -#~ msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 -#~ msgid "Spice + Pell Points + Solv XP + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 -#~ msgid "Spice + Segment Points + Supply APR" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 -#~ msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 -#~ msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 -#~ msgid "Spice + Shoebill Points + Supply APR" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 -#~ msgid "Spice + Solv XP + Babylon Points" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -#~ msgid "Spice Earned Across Apps" -#~ msgstr "已体验应用的Spice收益" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 -#~ msgid "Spice Multiplier" -#~ msgstr "Spice" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 -#~ msgid "Spice Per Hour" -#~ msgstr "每小时Spice" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -#~ msgid "Spice points (Lower)" -#~ msgstr "Spice积分(较低)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -#~ msgid "Spice points (Medium)" -#~ msgstr "Spice积分(中等)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#~ msgid "Spice rewards (Higher)" -#~ msgstr "Spice积分(较高)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -#~ msgid "Spice rewards (Medium)" -#~ msgstr "Spice积分(中等)" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#: src/app/[lang]/(bridge)/stake/page.tsx:14 -#: src/app/[lang]/(bridge)/stake/Stake.tsx:65 -#: src/components/Layout/Header.tsx:80 -#: src/components/Layout/Sidebar.tsx:55 -#~ msgid "Stake" -#~ msgstr "質押" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Stake with" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 -#~ msgid "Staking Token" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -#~ msgid "Start Harvesting" -#~ msgstr "开始收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 -#: src/app/[lang]/sign-up/SignUp.tsx:127 -#~ msgid "Start Harvesting Spice" -#~ msgstr "开始收获Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -#~ msgid "Step One" -#~ msgstr "第一步" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -#~ msgid "Step Two" -#~ msgstr "第二步" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:104 -#~ msgid "Successfully finalized transaction" -#~ msgstr "" - -#: src/app/[lang]/send/Send.tsx:197 -msgid "Successfully sent {amount} {0}" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:66 -#~ msgid "Successfully submitted ${0} proof" -#~ msgstr "" - -#: src/app/[lang]/send/Send.tsx:227 -msgid "Successfully transfered {0} {1}" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 -#~ msgid "Supply seSOLVBTCBBN into Segment to earn interest." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 -#~ msgid "Supply seUNIBTC into Segment to earn interest." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 -#~ msgid "Supply tBTC into Segment to earn interest." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 -#~ msgid "Supply tBTC into Shoebill to earn interest." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -#~ msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -#~ msgstr "将新铸造的satUSD供应到 <0>BOB上的借贷协议 。" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 -#~ msgid "Supply wBTC into Segment to earn interest." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 -#~ msgid "Supply wBTC into Shoebill to earn interest." -#~ msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -#~ msgid "Support your favourite BOB apps" -#~ msgstr "支持你喜爱的BOB应用" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:84 -#~ msgid "Switch to {capitalizedName}" -#~ msgstr "" - -#: src/components/Layout/Header.tsx:106 -#: src/components/Layout/Sidebar.tsx:67 -#~ msgid "T&Cs" -#~ msgstr "条款与条件" - -#: src/app/[lang]/404/NotFound.tsx:35 -msgid "Take em home" -msgstr "回到主页" - -#: src/app/[lang]/login/Login.tsx:61 -msgid "Terms and Conditions" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:265 -#~ msgid "Terms of Service" -#~ msgstr "" - -#: src/components/Logo/Logo.tsx:47 -#~ msgid "Testnet" -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -#~ msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 -#~ msgid "The fastest and easiest way to bridge BTC to BOB." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -#~ msgid "The final season" -#~ msgstr "最终季 - 不容错过!" - -#: src/app/[lang]/sign-up/SignUp.tsx:99 -#~ msgid "THE FIRST HYBRID L2" -#~ msgstr "首个混合型二层" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 -#~ msgid "The leaderboard resets for the new season" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 -#~ msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 -#~ msgid "The number of BOB ecosystem apps that you have harvested Spice with" -#~ msgstr "你已经使用过的BOB生态系统应用数量" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 -#~ msgid "The number of Intract and Galxe quests that you have completed" -#~ msgstr "在Intract和Galxe上完成的任务" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:55 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:61 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 -#~ msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 -#~ msgid "" -#~ "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -#~ "still confirm your transaction within a reasonable time." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:171 -#~ msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 -#~ msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" - -#: src/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:171 -#~ msgid "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" - -#: src/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#~ msgid "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -#~ msgid "There are no apps to be displayed" -#~ msgstr "暂无可显示的应用" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:503 -#~ msgid "There is currently no available liquidity to onramp BTC into {0}." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 -#~ msgid "There is currently no available liquidity to onramp BTC into {assetName}." -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -#~ msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 -#~ msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." -#~ msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:494 -#~ msgid "This is the final amount you will stake after deducting the Protocol fees from your input amount." -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -#~ msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -#~ msgstr "" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 -#~ msgid "Time left until voting round ends" -#~ msgstr "" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -#~ msgid "To cast your vote, please log in" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:123 -#~ msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 -#~ msgid "Top up Gas" -#~ msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:429 -#~ msgid "Top-up Gas" -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -#~ msgid "Total Assets" -#~ msgstr "总资产" - -#: src/components/Layout/FusionPopover.tsx:81 -#~ msgid "Total Harvest" -#~ msgstr "总收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 -#~ msgid "Total Referrals Earnings:" -#~ msgstr "推荐获得的总Spice" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 -#~ msgid "Total Spice Harvested" -#~ msgstr "总收获的Spice" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 -#~ msgid "Trails of Bits auditor" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -#~ msgid "Transaction submitted" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:51 -#~ msgid "Transaction Submitted" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 -#~ msgid "Transfer time" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 -#~ msgid "TVL" -#~ msgstr "总锁仓价值(TVL)" - -#: src/components/WithdrawModal/WithdrawForm.tsx:150 -#~ msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -#~ msgstr "很抱歉,目前智能账户还不能跨链到BOB。我们正在努力开发这项功能,请持续关注我们的更新。" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 -#~ msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:199 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:72 -#~ msgid "Unknown" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/Stake.tsx:68 -#~ msgid "Unstake" -#~ msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:181 -#~ msgid "USDT can only be withdrawn to Ethereum." -#~ msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:173 -#~ msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -#~ msgid "Use any of the <0>supported bridges." -#~ msgstr "使用任何 <0>支持的跨链桥。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 -#~ msgid "Use Apps" -#~ msgstr "体验应用" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -#~ msgid "Use BTC LSTs as collateral to borrow other assets" -#~ msgstr "使用BTC LSTs作为抵押品借其他资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -#~ msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -#~ msgstr "使用存入的BTC LSTs作为抵押品借wBTC、tBTC或FBTC。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -#~ msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -#~ msgstr "使用存入的satUSD作为抵押品借任何BTC LST。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -#~ msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -#~ msgstr "在应用中使用你跨链的资产以最大化你的Spice收获。<0/>提示:某些类型的应用提供更高的倍数。浏览\"热门策略\"部分以了解更多。" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 -#~ msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -#~ msgstr "用你的Spice总数来支持你最喜爱的BOB构建者。获胜者将每周公布。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:107 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:138 -#~ msgid "User rejected the request" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 -#~ msgid "Username" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:214 -#~ msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:29 -#~ msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -#~ msgstr "查看您在 BOB 网络上的钱包概况。" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:103 -#~ msgid "View All Transactions" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#~ msgid "View Intract" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 -#~ msgid "View Multipliers" -#~ msgstr "查看倍数" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 -#~ msgid "View Quests" -#~ msgstr "查看任务" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 -#~ msgid "Vote" -#~ msgstr "投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -#~ msgid "Vote for maximum three projects per week" -#~ msgstr "每周最多可以为三个项目投票" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -#~ msgid "Vote for maximum three projects per week by clicking on the flame icon." -#~ msgstr "通过点击火焰图标,每周最多可为三个项目投票" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -#~ msgid "Votes Left:" -#~ msgstr "剩余投票次数:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -#~ msgid "Voting limit exceeded" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:55 -#~ msgid "Waiting for approval" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:53 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -#~ msgid "Waiting for confirmation" -#~ msgstr "" - -#: src/app/[lang]/wallet/page.tsx:14 -msgid "Wallet" -msgstr "钱包" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:82 -#~ msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -#~ msgid "We're Sorry" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 -#~ msgid "Website" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -#~ msgid "Welcome to BOB Fusion" -#~ msgstr "欢迎回到BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -#~ msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -#~ msgstr "当你为一个项目投票时,你的Spice总数将被计入他们的得票总数。<0/><1/>每周得票最多的项目将获得Spice奖励,他们可以将这些奖励分配给用户。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -#~ msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -#~ msgstr "投票时,你不会失去任何收获。你的Spice总数仅用于计算你的投票权重。" - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:127 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:39 -#~ msgid "Withdraw" -#~ msgstr "" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:161 -#: src/components/WithdrawModal/WithdrawForm.tsx:211 -#~ msgid "Withdraw Assets" -#~ msgstr "提取资产" - -#: src/components/WithdrawModal/WithdrawModal.tsx:26 -#~ msgid "Withdraw Locked Assets" -#~ msgstr "提取锁定资产" - -#: src/components/WithdrawModal/WithdrawForm.tsx:138 -#~ msgid "Withdraw to L1 failed. Please try again." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -#~ msgid "Yield Assets" -#~ msgstr "收益资产" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 -#~ msgid "You" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." -#~ msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -#~ msgid "You can change your votes at any time before the end of the weekly voting period" -#~ msgstr "你可以在每周投票期结束前随时更改你的投票" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 -#~ msgid "You Have 0 Tickets" -#~ msgstr "" - -#: src/app/[lang]/nested-providers.tsx:74 -#~ msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "You need at least {0} Spice to participate in Lottery." -#~ msgstr "" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -#~ msgid "You still have assets locked in Season One. Please redeem your funds" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -#~ msgid "You will need to actively monitor your position, especially if it has a small range." -#~ msgstr "请密切关注你的仓位,尤其是当设定的价格范围较窄时。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 -#~ msgid "You will receive" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 -#~ msgid "You will stake" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 -#~ msgid "You're Ready to Play!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 -#~ msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 -#~ msgid "Your Active Referrals" -#~ msgstr "已推荐的活跃用户" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 -#~ msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:79 -#~ msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 -#~ msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -#~ msgstr "" - -#: src/app/[lang]/nested-providers.tsx:71 -#~ msgid "Your funds are safe!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 -#~ msgid "Your performance in seasons 1 & 2" -#~ msgstr "你在第1季和第2季的表现" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 -#~ msgid "Your Referral Code" -#~ msgstr "你的推荐码" - -#: src/components/Layout/FusionPopover.tsx:53 -#~ msgid "Your Spice Harvest Overview" -#~ msgstr "" diff --git a/apps/evm/src/locales/en.po b/apps/evm/src/locales/en.po deleted file mode 100644 index 4fd94f2a6..000000000 --- a/apps/evm/src/locales/en.po +++ /dev/null @@ -1,1849 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-12 00:19+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:80 -msgid ", due to the challenge period" -msgstr ", due to the challenge period" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:171 -#~ msgid "{0}" -#~ msgstr "{0}" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:49 -msgid "{0} ago" -msgstr "{0} ago" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 -msgid "{0} remaining" -msgstr "{0} remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 -msgid "{0} until next draw" -msgstr "{0} until next draw" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:40 -msgid "{0} until quest ends" -msgstr "{0} until quest ends" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 -msgid "{0} until voting round ends" -msgstr "{0} until voting round ends" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -msgstr "* The multipliers displayed are subject to change based on the payout structure of the respective projects." - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 -msgid "< 1 minute" -msgstr "< 1 minute" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 -msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" -msgstr "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:87 -#~ msgid "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 -msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" -msgstr "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -msgstr "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -msgid "2 hours" -msgstr "2 hours" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:218 -msgid "3rd Party" -msgstr "3rd Party" - -#: src/app/[lang]/404/NotFound.tsx:20 -#: src/app/[lang]/404/page.tsx:14 -msgid "404 Error" -msgstr "404 Error" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -msgid "7 days" -msgstr "7 days" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 -#: src/components/Layout/Header.tsx:112 -#: src/components/Layout/Sidebar.tsx:73 -msgid "About" -msgstr "About" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:106 -msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." -msgstr "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:94 -msgid "Advanced Fee Settings" -msgstr "Advanced Fee Settings" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 -msgid "All Apps" -msgstr "All Apps" - -#: src/components/LoginSection/LoginSection.tsx:11 -msgid "Already harvesting?" -msgstr "Already harvesting?" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 -msgid "Amount" -msgstr "Amount" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:26 -msgid "An Exclusive Bitcoin Staking and DeFi Campaign" -msgstr "An Exclusive Bitcoin Staking and DeFi Campaign" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -#~ msgid "An exclusive quest campaign." -#~ msgstr "An exclusive quest campaign." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 -msgid "and that you have read and understood our" -msgstr "and that you have read and understood our" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:180 -msgid "Apply" -msgstr "Apply" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:523 -msgid "Approve" -msgstr "Approve" - -#: src/app/[lang]/apps/page.tsx:14 -#: src/components/Layout/Header.tsx:72 -#: src/components/Layout/Sidebar.tsx:47 -msgid "Apps" -msgstr "Apps" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 -msgid "Apps Used" -msgstr "Apps Used" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -msgid "Asset" -msgstr "Asset" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 -msgid "Asset Details" -msgstr "Asset Details" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 -msgid "Audited by" -msgstr "Audited by" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -msgid "Authorize Wallet" -msgstr "Authorize Wallet" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Babylon points" -msgstr "Babylon points" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -msgid "Balance" -msgstr "Balance" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -msgid "Base Assets" -msgstr "Base Assets" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -msgstr "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -#~ msgid "Binance campaign banner" -#~ msgstr "Binance campaign banner" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -#~ msgid "Bitcoin Staking with Binance" -#~ msgstr "Bitcoin Staking with Binance" - -#: src/components/Logo/Logo.tsx:37 -msgid "BOB" -msgstr "BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:215 -msgid "BOB Bridge" -msgstr "BOB Bridge" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:22 -msgid "BOB Ecosystem on OKX Cryptopedia" -msgstr "BOB Ecosystem on OKX Cryptopedia" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:92 -msgid "BOB Fusion: The Final Season" -msgstr "BOB Fusion: The Final Season" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 -msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -msgstr "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:435 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." -#~ msgstr "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 -msgid "BOB Gateway is live!" -msgstr "BOB Gateway is live!" - -#: src/app/[lang]/layout.tsx:30 -#: src/app/[lang]/layout.tsx:49 -msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" -msgstr "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 -msgid "BOB TVL Progress" -msgstr "BOB TVL Progress" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -msgid "BOB Wallet" -msgstr "BOB Wallet" - -#: src/app/[lang]/(bridge)/bridge/page.tsx:14 -#: src/app/[lang]/page.tsx:15 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 -#: src/components/Layout/Header.tsx:69 -#: src/components/Layout/Sidebar.tsx:44 -msgid "Bridge" -msgstr "Bridge" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:524 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -msgid "Bridge Asset" -msgstr "Bridge Asset" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 -msgid "Bridge Assets" -msgstr "Bridge Assets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -msgid "Bridge BTC LSTs to BOB" -msgstr "Bridge BTC LSTs to BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:519 -msgid "Bridge Disabled" -msgstr "Bridge Disabled" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:208 -msgid "bridge network" -msgstr "bridge network" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -msgid "Bridge to BOB" -msgstr "Bridge to BOB" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -msgstr "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 -msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -msgstr "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 -msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -msgstr "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -msgid "BTC LST Lending" -msgstr "BTC LST Lending" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 -msgid "By clicking ‘Connect’ you acknowledge and agree to the" -msgstr "By clicking ‘Connect’ you acknowledge and agree to the" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 -msgid "Cancel" -msgstr "Cancel" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:478 -#~ msgid "Cannot stake into {0} due to insufficient liquidity." -#~ msgstr "Cannot stake into {0} due to insufficient liquidity." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 -msgid "Cannot stake into {assetName} due to insufficient liquidity." -msgstr "Cannot stake into {assetName} due to insufficient liquidity." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 -msgid "Category" -msgstr "Category" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:521 -msgid "Checking Allowance" -msgstr "Checking Allowance" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:116 -msgid "choose available wallets" -msgstr "choose available wallets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -msgstr "Chose any of the existing liquid staking provider to mint your BTC LST." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -msgid "Click the <0/> icon next to your favourite apps" -msgstr "Click the <0/> icon next to your favourite apps" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:108 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 -msgid "Close" -msgstr "Close" - -#: src/app/[lang]/sign-up/SignUp.tsx:106 -msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -msgstr "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" - -#: src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:87 -#: src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:83 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:42 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -msgid "Coming Soon" -msgstr "Coming Soon" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -msgid "Coming SoonSteps" -msgstr "Coming SoonSteps" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 -msgid "Common Prefix auditor" -msgstr "Common Prefix auditor" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 -msgid "Community Voting" -msgstr "Community Voting" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -msgid "Community Voting Information" -msgstr "Community Voting Information" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:56 -msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -msgstr "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 -msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" -msgstr "Congratulations you won!<0/>Take a screenshot to share with your friends!" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:94 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:107 -msgid "Connect BTC Wallet" -msgstr "Connect BTC Wallet" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 -msgid "Connect BTC wallet to access fee rate settings." -msgstr "Connect BTC wallet to access fee rate settings." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:141 -msgid "Connect request is already pending" -msgstr "Connect request is already pending" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:220 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -msgid "Connect Wallet" -msgstr "Connect Wallet" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:302 -msgid "Connect your Bitcoin Wallet (Optional)" -msgstr "Connect your Bitcoin Wallet (Optional)" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:287 -msgid "Connect your EVM Wallet (Mandatory)" -msgstr "Connect your EVM Wallet (Mandatory)" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -msgid "Connected with <0>{wallet}" -msgstr "Connected with <0>{wallet}" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 -msgid "Copy Address" -msgstr "Copy Address" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 -msgid "Copy referral URL" -msgstr "Copy referral URL" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -msgid "Create Account" -msgstr "Create Account" - -#: src/components/Layout/FusionPopover.tsx:63 -msgid "Current Harvest" -msgstr "Current Harvest" - -#: src/components/Layout/FusionPopover.tsx:70 -msgid "Current Leaderboard Rank" -msgstr "Current Leaderboard Rank" - -#: src/components/WithdrawModal/WithdrawModal.tsx:33 -msgid "Current Spice" -msgstr "Current Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 -msgid "Current TVL:" -msgstr "Current TVL:" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 -msgid "Day" -msgstr "Day" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -msgstr "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:132 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 -msgid "Deposit" -msgstr "Deposit" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -msgstr "Deposit any eligible BTC LSTs into a lending market on BOB." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -msgstr "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -msgstr "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." - -#: src/components/Layout/Header.tsx:109 -#: src/components/Layout/Sidebar.tsx:70 -msgid "Dev" -msgstr "Dev" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -msgid "DEX *" -msgstr "DEX *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -msgid "DEX Liquidity Provisioning" -msgstr "DEX Liquidity Provisioning" - -#: src/app/[lang]/nested-providers.tsx:76 -msgid "Disconnected" -msgstr "Disconnected" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -msgid "Discover All Apps" -msgstr "Discover All Apps" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -msgid "Docs" -msgstr "Docs" - -#: src/components/WithdrawModal/WithdrawForm.tsx:196 -msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -msgstr "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -msgid "Don't show this message again" -msgstr "Don't show this message again" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:100 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." -#~ msgstr "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 -msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." -msgstr "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 -msgid "Earned Spice" -msgstr "Earned Spice" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 -msgid "enable ETH top-up for transaction fees on BOB network" -msgstr "enable ETH top-up for transaction fees on BOB network" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -msgstr "Ensure that you are transferring from the BOB Network to avoid any loss of funds." - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 -msgid "Enter Address" -msgstr "Enter Address" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:549 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 -msgid "Enter destination address" -msgstr "Enter destination address" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -msgid "Enter referral code (optional)" -msgstr "Enter referral code (optional)" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -msgid "Enter your access code (optional):" -msgstr "Enter your access code (optional):" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:484 -#~ msgid "Estimated Fee" -#~ msgstr "Estimated Fee" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:137 -msgid "Estimated within 1 hour" -msgstr "Estimated within 1 hour" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:129 -msgid "Estimated within 30 minutes" -msgstr "Estimated within 30 minutes" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:121 -msgid "Estimated within the next block" -msgstr "Estimated within the next block" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:144 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:180 -msgid "Failed to connect to {0}" -msgstr "Failed to connect to {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:107 -msgid "Failed to finalize." -msgstr "Failed to finalize." - -#: src/app/[lang]/(bridge)/hooks/useGateway.ts:236 -msgid "Failed to get estimated fee" -msgstr "Failed to get estimated fee" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 -msgid "Failed to send {amount} {0}" -msgstr "Failed to send {amount} {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:69 -msgid "Failed to submit proof." -msgstr "Failed to submit proof." - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -#: src/components/WithdrawModal/WithdrawForm.tsx:113 -msgid "Failed to withdraw to L2. Please try again." -msgstr "Failed to withdraw to L2. Please try again." - -#: src/components/WithdrawModal/WithdrawForm.tsx:91 -msgid "Failed to withdraw USDT to L1. Please try again." -msgstr "Failed to withdraw USDT to L1. Please try again." - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -msgid "Featured Assets" -msgstr "Featured Assets" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 -msgid "Fee" -msgstr "Fee" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 -msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." -msgstr "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:77 -msgid "Fetching bridging operations..." -msgstr "Fetching bridging operations..." - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:163 -#~ msgid "Fetching staking strategies..." -#~ msgstr "Fetching staking strategies..." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 -msgid "Final Leaderboard Rank" -msgstr "Final Leaderboard Rank" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:47 -msgid "Finalize" -msgstr "Finalize" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -msgstr "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 -#: src/app/[lang]/fusion/Fusion.tsx:120 -msgid "Follow us on X" -msgstr "Follow us on X" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -msgid "Follow us on X for updates" -msgstr "Follow us on X for updates" - -#: src/app/[lang]/fusion/page.tsx:16 -#: src/components/Layout/Header.tsx:83 -#: src/components/Layout/Sidebar.tsx:58 -msgid "Fusion" -msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:41 -msgid "FUSION" -msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -msgstr "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 -msgid "Fusion season three" -msgstr "Fusion season three" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 -msgid "Fusion Users:" -msgstr "Fusion Users:" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 -msgid "Gas Token" -msgstr "Gas Token" - -#: src/app/[lang]/geoblock/page.tsx:14 -msgid "Geoblock" -msgstr "Geoblock" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -msgid "Get" -msgstr "Get" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 -msgid "Get ETH for transaction fees on BOB" -msgstr "Get ETH for transaction fees on BOB" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 -msgid "Get tickets" -msgstr "Get tickets" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:195 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:209 -msgid "go back" -msgstr "go back" - -#: src/app/[lang]/404/NotFound.tsx:30 -msgid "Go Back" -msgstr "Go Back" - -#: src/app/[lang]/nested-providers.tsx:91 -msgid "Got it!" -msgstr "Got it!" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 -msgid "Grab the final opportunity to harvest Spice. Join Season 3." -msgstr "Grab the final opportunity to harvest Spice. Join Season 3." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:80 -#~ msgid "Harvest {pointsMissing} more Spice to participate" -#~ msgstr "Harvest {pointsMissing} more Spice to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to participate" -#~ msgstr "Harvest {pointsMissing} more SPICE to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 -msgid "Harvest {pointsMissing} more Spice to play" -msgstr "Harvest {pointsMissing} more Spice to play" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to participate" -#~ msgstr "Harvest {pointsMissing} more SPICE to your account to participate" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to play" -#~ msgstr "Harvest {pointsMissing} more SPICE to your account to play" - -#: src/app/[lang]/fusion/Fusion.tsx:95 -msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -msgstr "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 -msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -msgstr "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" - -#: src/app/[lang]/fusion/Fusion.tsx:88 -msgid "Hero dots" -msgstr "Hero dots" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 -msgid "Holding" -msgstr "Holding" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -msgid "Hot Strategies" -msgstr "Hot Strategies" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -msgid "How to vote:" -msgstr "How to vote:" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 -msgid "Hybrid L2" -msgstr "Hybrid L2" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -msgstr "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 -msgid "Incentives" -msgstr "Incentives" - -#: src/app/[lang]/sign-up/SignUp.tsx:115 -msgid "Invalid referral code. You can try again, or proceed without one." -msgstr "Invalid referral code. You can try again, or proceed without one." - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:74 -#~ msgid "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" -#~ msgstr "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -msgid "Last 24 Hours" -msgstr "Last 24 Hours" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -msgid "Last 7 Days" -msgstr "Last 7 Days" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -msgid "Last Week's Winners" -msgstr "Last Week's Winners" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 -msgid "Leaderboard" -msgstr "Leaderboard" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 -#: src/app/[lang]/fusion/Fusion.tsx:105 -msgid "Learn More" -msgstr "Learn More" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 -msgid "Learn more about {0}" -msgstr "Learn more about {0}" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 -msgid "Lending" -msgstr "Lending" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -msgid "Lending protocol points" -msgstr "Lending protocol points" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -msgid "Lending rate of BTC LSTs" -msgstr "Lending rate of BTC LSTs" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -msgid "Lending rate of satUSD" -msgstr "Lending rate of satUSD" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -msgid "Lending, Restaking, CDP *" -msgstr "Lending, Restaking, CDP *" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 -msgid "Liquid Staking" -msgstr "Liquid Staking" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -msgid "Loading..." -msgstr "Loading..." - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -msgid "Locked Amount" -msgstr "Locked Amount" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -msgid "Locked Capital Breakdown" -msgstr "Locked Capital Breakdown" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -msgid "Log in" -msgstr "Log in" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 -msgid "Log in to View Dashboard" -msgstr "Log in to View Dashboard" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -msgid "Login to play" -msgstr "Login to play" - -#: src/components/LoginSection/LoginSection.tsx:14 -msgid "Login with wallet" -msgstr "Login with wallet" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 -msgid "Lottery" -msgstr "Lottery" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:33 -#~ msgid "Lottery ticket" -#~ msgstr "Lottery ticket" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "LST provider points" -msgstr "LST provider points" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 -msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." -msgstr "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -msgid "Maximum points will be received by providing BTC LST liquidity." -msgstr "Maximum points will be received by providing BTC LST liquidity." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -msgid "Mint and Lend satUSD" -msgstr "Mint and Lend satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -msgid "Mint more BTC LSTs with these borrowed assets." -msgstr "Mint more BTC LSTs with these borrowed assets." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -msgid "Mint satUSD and supply it into a lending market on BOB" -msgstr "Mint satUSD and supply it into a lending market on BOB" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -msgid "Multipliers" -msgstr "Multipliers" - -#: src/components/Layout/Header.tsx:115 -#: src/components/Layout/Sidebar.tsx:61 -msgid "Multisig" -msgstr "Multisig" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 -msgid "My Apps" -msgstr "My Apps" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 -msgid "My Total Harvest" -msgstr "My Total Harvest" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 -msgid "Name" -msgstr "Name" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 -msgid "navigate to {name} app page" -msgstr "navigate to {name} app page" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -msgid "Navigate to bridge page" -msgstr "Navigate to bridge page" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 -msgid "navigate to Common Prefix audit" -msgstr "navigate to Common Prefix audit" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -msgid "navigate to discord" -msgstr "navigate to discord" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:90 -msgid "navigate to ecosystem section in fusion page" -msgstr "navigate to ecosystem section in fusion page" - -#: src/components/Logo/Logo.tsx:30 -msgid "navigate to home page" -msgstr "navigate to home page" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 -msgid "navigate to OtterSec audit" -msgstr "navigate to OtterSec audit" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 -msgid "navigate to Trails of Bits audit" -msgstr "navigate to Trails of Bits audit" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -msgid "navigate to X social" -msgstr "navigate to X social" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -msgid "Need support? Enter our Discord." -msgstr "Need support? Enter our Discord." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 -msgid "Network Fee" -msgstr "Network Fee" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 -msgid "Network Fee Rate" -msgstr "Network Fee Rate" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -msgid "New Quests Coming Soon" -msgstr "New Quests Coming Soon" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 -msgid "new tickets drop in {0}" -msgstr "new tickets drop in {0}" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -msgid "No assets shown" -msgstr "No assets shown" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:96 -msgid "No bridging operations found" -msgstr "No bridging operations found" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 -msgid "No new goal at the moment. Stay tuned for updates!" -msgstr "No new goal at the moment. Stay tuned for updates!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough spice" -#~ msgstr "Not enough spice" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "Not enough Spice" -#~ msgstr "Not enough Spice" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough SPICE" -#~ msgstr "Not enough SPICE" - -#: src/app/[lang]/not-found/page.tsx:14 -#~ msgid "Not found" -#~ msgstr "Not found" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -msgid "Not your lucky day... yet!" -msgstr "Not your lucky day... yet!" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:30 -msgid "OKX Cryptopedia" -msgstr "OKX Cryptopedia" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 -msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -msgstr "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 -msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -msgstr "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." - -#: src/components/Layout/Header.tsx:57 -msgid "open drawer" -msgstr "open drawer" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -msgid "Optional: It's possible to repeat steps 2-4 multiple times." -msgstr "Optional: It's possible to repeat steps 2-4 multiple times." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -msgid "or" -msgstr "or" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 -msgid "OtterSec auditor" -msgstr "OtterSec auditor" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:62 -msgid "Pending" -msgstr "Pending" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -msgid "Play" -msgstr "Play" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:93 -msgid "Please confirm allowance approval for {0} in your wallet" -msgstr "Please confirm allowance approval for {0} in your wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 -msgid "Please confirm the transaction in your wallet" -msgstr "Please confirm the transaction in your wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:91 -msgid "Please confirm transaction in your wallet" -msgstr "Please confirm transaction in your wallet" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -msgid "Please connect a wallet" -msgstr "Please connect a wallet" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -msgid "Please note:" -msgstr "Please note:" - -#: src/app/[lang]/sign-up/SignUp.tsx:102 -msgid "POWERED BY BTC & ETH" -msgstr "POWERED BY BTC & ETH" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -msgid "Preparing..." -msgstr "Preparing..." - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:272 -msgid "Privacy policy" -msgstr "Privacy policy" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 -msgid "Protocol Fee" -msgstr "Protocol Fee" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:41 -msgid "Prove" -msgstr "Prove" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -msgstr "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -msgid "Provide liquidity into Oku DEX" -msgstr "Provide liquidity into Oku DEX" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -msgid "Quests" -msgstr "Quests" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 -msgid "Quests Completed" -msgstr "Quests Completed" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -msgid "Quests Only" -msgstr "Quests Only" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 -msgid "Read it now." -msgstr "Read it now." - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -msgid "Read more here" -msgstr "Read more here" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 -msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -msgstr "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:113 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 -msgid "Receive" -msgstr "Receive" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -msgid "Receive {0}" -msgstr "Receive {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -msgid "Receive {ticker}" -msgstr "Receive {ticker}" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:224 -msgid "Recipient" -msgstr "Recipient" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 -msgid "referral table" -msgstr "referral table" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 -msgid "Referred by" -msgstr "Referred by" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 -msgid "Released: BOB's Hybrid L2 vision paper" -msgstr "Released: BOB's Hybrid L2 vision paper" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -msgid "Remove vote" -msgstr "Remove vote" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 -msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." -msgstr "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 -msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." -msgstr "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 -msgid "Restaking" -msgstr "Restaking" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -msgid "Rewards" -msgstr "Rewards" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -msgid "Satoshi protocol points" -msgstr "Satoshi protocol points" - -#: src/components/Layout/FusionPopover.tsx:77 -msgid "Season 1 & 2 (Completed)" -msgstr "Season 1 & 2 (Completed)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 -msgid "Season 1 & 2 Total Spice (Completed):" -msgstr "Season 1 & 2 Total Spice (Completed):" - -#: src/components/Layout/FusionPopover.tsx:88 -msgid "Season 2 Final Rank" -msgstr "Season 2 Final Rank" - -#: src/components/Layout/FusionPopover.tsx:57 -msgid "Season 3 (Ongoing)" -msgstr "Season 3 (Ongoing)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 -msgid "Season 3 Harvested Spice" -msgstr "Season 3 Harvested Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -msgid "Season Three" -msgstr "Season Three" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:217 -msgid "Select Bitcoin Wallet" -msgstr "Select Bitcoin Wallet" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:203 -msgid "Select EVM Wallet" -msgstr "Select EVM Wallet" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 -msgid "select gas token" -msgstr "select gas token" - -#: src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 -msgid "Select Network" -msgstr "Select Network" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:172 -msgid "select network to bridge from" -msgstr "select network to bridge from" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:182 -msgid "select network to bridge to" -msgstr "select network to bridge to" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 -msgid "Select Strategy" -msgstr "Select Strategy" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -msgstr "Select the wrapped Bitcoin asset and the amount that you want to bridge." - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 -msgid "Select Token" -msgstr "Select Token" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 -msgid "Send" -msgstr "Send" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 -msgid "Send {0}" -msgstr "Send {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -msgid "Send {ticker}" -msgstr "Send {ticker}" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 -msgid "Share on X" -msgstr "Share on X" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 -msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -msgstr "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" - -#: src/components/Layout/Header.tsx:90 -msgid "Show secondary navigation" -msgstr "Show secondary navigation" - -#: src/app/[lang]/sign-up/page.tsx:14 -msgid "Sign-Up" -msgstr "Sign-Up" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 -msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." -msgstr "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:112 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 -#: src/components/LoginButton/LoginButton.tsx:29 -msgid "Something went wrong. Please try again later." -msgstr "Something went wrong. Please try again later." - -#: src/app/[lang]/sign-up/SignUp.tsx:72 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -msgid "Something went wrong. Please try connecting your wallet again." -msgstr "Something went wrong. Please try connecting your wallet again." - -#: src/app/[lang]/404/NotFound.tsx:23 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 -msgid "Spice" -msgstr "Spice" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 -msgid "Spice + Bedrock Diamonds + Babylon Points" -msgstr "Spice + Bedrock Diamonds + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 -msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" -msgstr "Spice + Pell Points + Bedrock Diamond + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 -msgid "Spice + Pell Points + Solv XP + Babylon Points" -msgstr "Spice + Pell Points + Solv XP + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 -msgid "Spice + Segment Points + Supply APR" -msgstr "Spice + Segment Points + Supply APR" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 -msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" -msgstr "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 -msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" -msgstr "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 -msgid "Spice + Shoebill Points + Supply APR" -msgstr "Spice + Shoebill Points + Supply APR" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 -msgid "Spice + Solv XP + Babylon Points" -msgstr "Spice + Solv XP + Babylon Points" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -msgid "Spice Earned Across Apps" -msgstr "Spice Earned Across Apps" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 -msgid "Spice Multiplier" -msgstr "Spice Multiplier" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 -msgid "Spice Per Hour" -msgstr "Spice Per Hour" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Spice points (Lower)" -msgstr "Spice points (Lower)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -msgid "Spice points (Medium)" -msgstr "Spice points (Medium)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -msgid "Spice rewards (Higher)" -msgstr "Spice rewards (Higher)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -msgid "Spice rewards (Medium)" -msgstr "Spice rewards (Medium)" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#: src/app/[lang]/(bridge)/stake/page.tsx:14 -#: src/app/[lang]/(bridge)/stake/Stake.tsx:103 -#: src/components/Layout/Header.tsx:80 -#: src/components/Layout/Sidebar.tsx:55 -msgid "Stake" -msgstr "Stake" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Stake with" -#~ msgstr "Stake with" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 -msgid "Staking Token" -msgstr "Staking Token" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -msgid "Start Harvesting" -msgstr "Start Harvesting" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 -#: src/app/[lang]/sign-up/SignUp.tsx:127 -msgid "Start Harvesting Spice" -msgstr "Start Harvesting Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -msgid "Step One" -msgstr "Step One" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -msgid "Step Two" -msgstr "Step Two" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:100 -msgid "Successfully finalized transaction" -msgstr "Successfully finalized transaction" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 -msgid "Successfully sent {amount} {0}" -msgstr "Successfully sent {amount} {0}" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:62 -msgid "Successfully submitted ${0} proof" -msgstr "Successfully submitted ${0} proof" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 -msgid "Supply seSOLVBTCBBN into Segment to earn interest." -msgstr "Supply seSOLVBTCBBN into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 -msgid "Supply seUNIBTC into Segment to earn interest." -msgstr "Supply seUNIBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 -msgid "Supply tBTC into Segment to earn interest." -msgstr "Supply tBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 -msgid "Supply tBTC into Shoebill to earn interest." -msgstr "Supply tBTC into Shoebill to earn interest." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -msgstr "Supply the newly minted satUSD into a <0>lending protocol on BOB." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 -msgid "Supply wBTC into Segment to earn interest." -msgstr "Supply wBTC into Segment to earn interest." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 -msgid "Supply wBTC into Shoebill to earn interest." -msgstr "Supply wBTC into Shoebill to earn interest." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -msgid "Support your favourite BOB apps" -msgstr "Support your favourite BOB apps" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:84 -msgid "Switch to {capitalizedName}" -msgstr "Switch to {capitalizedName}" - -#: src/components/Layout/Header.tsx:106 -#: src/components/Layout/Sidebar.tsx:67 -msgid "T&Cs" -msgstr "T&Cs" - -#: src/app/[lang]/404/NotFound.tsx:35 -msgid "Take em home" -msgstr "Take em home" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:264 -msgid "Terms of Service" -msgstr "Terms of Service" - -#: src/components/Logo/Logo.tsx:47 -msgid "Testnet" -msgstr "Testnet" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -msgstr "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 -msgid "The fastest and easiest way to bridge BTC to BOB." -msgstr "The fastest and easiest way to bridge BTC to BOB." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -msgid "The final season" -msgstr "The final season" - -#: src/app/[lang]/sign-up/SignUp.tsx:99 -msgid "THE FIRST HYBRID L2" -msgstr "THE FIRST HYBRID L2" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 -msgid "The leaderboard resets for the new season" -msgstr "The leaderboard resets for the new season" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 -msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." -msgstr "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 -msgid "The number of BOB ecosystem apps that you have harvested Spice with" -msgstr "The number of BOB ecosystem apps that you have harvested Spice with" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 -msgid "The number of Intract and Galxe quests that you have completed" -msgstr "The number of Intract and Galxe quests that you have completed" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:55 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" -#~ msgstr "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:61 -msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" -msgstr "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 -msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." -msgstr "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 -msgid "" -"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -"still confirm your transaction within a reasonable time." -msgstr "" -"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -"still confirm your transaction within a reasonable time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:172 -msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." -msgstr "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:163 -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 -msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." -msgstr "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." - -#: src/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:171 -#~ msgid "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." - -#: src/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#~ msgid "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -msgid "There are no apps to be displayed" -msgstr "There are no apps to be displayed" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:503 -#~ msgid "There is currently no available liquidity to onramp BTC into {0}." -#~ msgstr "There is currently no available liquidity to onramp BTC into {0}." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 -msgid "There is currently no available liquidity to onramp BTC into {assetName}." -msgstr "There is currently no available liquidity to onramp BTC into {assetName}." - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -msgstr "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 -msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." -msgstr "This is the final amount you will receive after deducting the Protocol fees from your input amount." - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:494 -#~ msgid "This is the final amount you will stake after deducting the Protocol fees from your input amount." -#~ msgstr "This is the final amount you will stake after deducting the Protocol fees from your input amount." - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -msgstr "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 -msgid "Time left until voting round ends" -msgstr "Time left until voting round ends" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -msgid "To cast your vote, please log in" -msgstr "To cast your vote, please log in" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:123 -msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -msgstr "To stay up-to date with the BOB ecosystem follow @build_on_bob." - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 -msgid "Top up Gas" -msgstr "Top up Gas" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:429 -#~ msgid "Top-up Gas" -#~ msgstr "Top-up Gas" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -msgid "Total Assets" -msgstr "Total Assets" - -#: src/components/Layout/FusionPopover.tsx:81 -msgid "Total Harvest" -msgstr "Total Harvest" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 -msgid "Total Referrals Earnings:" -msgstr "Total Referrals Earnings:" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 -msgid "Total Spice Harvested" -msgstr "Total Spice Harvested" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 -msgid "Trails of Bits auditor" -msgstr "Trails of Bits auditor" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Transaction submitted" -msgstr "Transaction submitted" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:50 -msgid "Transaction Submitted" -msgstr "Transaction Submitted" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 -msgid "Transfer time" -msgstr "Transfer time" - -#: src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 -msgid "TVL" -msgstr "TVL" - -#: src/components/WithdrawModal/WithdrawForm.tsx:150 -msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -msgstr "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -#~ msgstr "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 -msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." -msgstr "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." - -#: src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:230 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:71 -msgid "Unknown" -msgstr "Unknown" - -#: src/app/[lang]/(bridge)/stake/Stake.tsx:106 -msgid "Unstake" -msgstr "Unstake" - -#: src/components/WithdrawModal/WithdrawForm.tsx:181 -msgid "USDT can only be withdrawn to Ethereum." -msgstr "USDT can only be withdrawn to Ethereum." - -#: src/components/WithdrawModal/WithdrawForm.tsx:173 -msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -msgstr "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" -#~ msgstr "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" -#~ msgstr "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -msgid "Use any of the <0>supported bridges." -msgstr "Use any of the <0>supported bridges." - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 -msgid "Use Apps" -msgstr "Use Apps" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -msgid "Use BTC LSTs as collateral to borrow other assets" -msgstr "Use BTC LSTs as collateral to borrow other assets" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -msgstr "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -msgstr "Use the deposited satUSD as collateral to borrow any BTC LST." - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -msgstr "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 -msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -msgstr "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:110 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 -msgid "User rejected the request" -msgstr "User rejected the request" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 -msgid "Username" -msgstr "Username" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:223 -msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -msgstr "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." - -#: src/app/[lang]/wallet/Wallet.tsx:29 -msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -msgstr "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:106 -msgid "View All Transactions" -msgstr "View All Transactions" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -msgid "View Intract" -msgstr "View Intract" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 -msgid "View Multipliers" -msgstr "View Multipliers" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 -msgid "View Quests" -msgstr "View Quests" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 -msgid "Vote" -msgstr "Vote" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -msgid "Vote for maximum three projects per week" -msgstr "Vote for maximum three projects per week" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -msgid "Vote for maximum three projects per week by clicking on the flame icon." -msgstr "Vote for maximum three projects per week by clicking on the flame icon." - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -msgid "Votes Left:" -msgstr "Votes Left:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -msgid "Voting limit exceeded" -msgstr "Voting limit exceeded" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:54 -msgid "Waiting for approval" -msgstr "Waiting for approval" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:52 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Waiting for confirmation" -msgstr "Waiting for confirmation" - -#: src/app/[lang]/wallet/page.tsx:15 -#: src/components/Layout/Header.tsx:76 -#: src/components/Layout/Sidebar.tsx:51 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 -msgid "Wallet" -msgstr "Wallet" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 -msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -msgstr "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -msgid "We're Sorry" -msgstr "We're Sorry" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 -msgid "Website" -msgstr "Website" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -msgid "Welcome to BOB Fusion" -msgstr "Welcome to BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -msgstr "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -msgstr "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:135 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 -msgid "Withdraw" -msgstr "Withdraw" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:161 -#: src/components/WithdrawModal/WithdrawForm.tsx:211 -msgid "Withdraw Assets" -msgstr "Withdraw Assets" - -#: src/components/WithdrawModal/WithdrawModal.tsx:26 -msgid "Withdraw Locked Assets" -msgstr "Withdraw Locked Assets" - -#: src/components/WithdrawModal/WithdrawForm.tsx:138 -msgid "Withdraw to L1 failed. Please try again." -msgstr "Withdraw to L1 failed. Please try again." - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -msgid "Yield Assets" -msgstr "Yield Assets" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 -msgid "You" -msgstr "You" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." -msgstr "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -msgid "You can change your votes at any time before the end of the weekly voting period" -msgstr "You can change your votes at any time before the end of the weekly voting period" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 -msgid "You Have 0 Tickets" -msgstr "You Have 0 Tickets" - -#: src/app/[lang]/nested-providers.tsx:83 -msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." -msgstr "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -msgid "You need at least {0} Spice to participate in Lottery." -msgstr "You need at least {0} Spice to participate in Lottery." - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -msgid "You still have assets locked in Season One. Please redeem your funds" -msgstr "You still have assets locked in Season One. Please redeem your funds" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -msgid "You will need to actively monitor your position, especially if it has a small range." -msgstr "You will need to actively monitor your position, especially if it has a small range." - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 -msgid "You will receive" -msgstr "You will receive" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 -msgid "You will stake" -msgstr "You will stake" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 -msgid "You're Ready to Play!" -msgstr "You're Ready to Play!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 -msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." -msgstr "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" -#~ msgstr "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" -#~ msgstr "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 -msgid "Your Active Referrals" -msgstr "Your Active Referrals" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 -msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -msgstr "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:78 -msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -msgstr "Your assets will be delivered shortly, with an estimated arrival time of aprox." - -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 -msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -msgstr "Your available balance may differ from your wallet balance due to network fees and available liquidity" - -#: src/app/[lang]/nested-providers.tsx:80 -msgid "Your funds are safe!" -msgstr "Your funds are safe!" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 -msgid "Your performance in seasons 1 & 2" -msgstr "Your performance in seasons 1 & 2" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 -msgid "Your Referral Code" -msgstr "Your Referral Code" - -#: src/components/Layout/FusionPopover.tsx:53 -msgid "Your Spice Harvest Overview" -msgstr "Your Spice Harvest Overview" diff --git a/apps/evm/src/locales/zh-chatgpt.po b/apps/evm/src/locales/zh-chatgpt.po deleted file mode 100644 index dfcd5964f..000000000 --- a/apps/evm/src/locales/zh-chatgpt.po +++ /dev/null @@ -1,1261 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-12 00:19+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/layout.tsx:29 -msgid "" -msgstr "" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:81 -msgid ", due to the challenge period" -msgstr ",由于挑战期" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:50 -msgid "{0} ago" -msgstr "{0} 前" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:46 -msgid "{0} remaining" -msgstr "剩余 {0}" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:35 -msgid "{0} until quest ends" -msgstr "任务结束还有 {0}" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:35 -msgid "{0} until voting round ends" -msgstr "投票轮结束还有 {0}" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -msgstr "* 显示的倍数可能会根据各项目的支付结构而改变。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -msgstr "<0>一键质押您的BTC,在BOB上接收BTC LSTs。" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:43 -msgid "2 hours" -msgstr "2小时" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:209 -msgid "3rd Party" -msgstr "第三方" - -#: src/app/[lang]/not-found.tsx:19 -msgid "404 Error" -msgstr "404 错误" - -#: src/app/[lang]/bridge/components/BridgeStatus/TimeStep.tsx:43 -msgid "7 days" -msgstr "7天" - -#: src/components/Layout/Header.tsx:104 -#: src/components/Layout/Sidebar.tsx:73 -msgid "About" -msgstr "关于" - -#: src/components/LoginSection/LoginSection.tsx:11 -msgid "Already harvesting?" -msgstr "已经在收获了吗?" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:529 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:362 -msgid "Amount" -msgstr "数量" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -msgid "An exclusive quest campaign." -msgstr "独家任务活动。" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:260 -msgid "and that you have read and understood our" -msgstr "并且您已阅读并理解我们的" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:514 -msgid "Approve" -msgstr "批准" - -#: src/components/Layout/Header.tsx:70 -#: src/components/Layout/Sidebar.tsx:47 -msgid "Apps" -msgstr "应用程序" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:136 -msgid "Apps Used" -msgstr "使用的应用程序" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -msgid "Asset" -msgstr "资产" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:13 -msgid "Audited by" -msgstr "审计者" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -msgid "Authorize Wallet" -msgstr "授权钱包" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Babylon points" -msgstr "巴比伦积分" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -msgid "Balance" -msgstr "余额" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -msgid "Base Assets" -msgstr "基础资产" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -msgstr "以下是您从应用中收获的Spice。继续参与以增加您未来的收获!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -msgid "Binance campaign banner" -msgstr "币安活动横幅" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -msgid "Bitcoin Staking with Binance" -msgstr "使用币安进行比特币质押" - -#: src/components/Logo/Logo.tsx:35 -msgid "BOB" -msgstr "BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:206 -msgid "BOB Bridge" -msgstr "BOB桥" - -#: src/app/[lang]/fusion/Fusion.tsx:83 -#: src/components/BannerCarousel/FusionBanner.tsx:21 -msgid "BOB Fusion: The Final Season" -msgstr "BOB融合:最后一季" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:404 -msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -msgstr "BOB网关允许您将比特币上的BTC兑换为BOB上的ETH" - -#: src/components/BannerCarousel/OnrampBanner.tsx:17 -msgid "BOB Gateway is live!" -msgstr "BOB网关现已上线!" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:234 -msgid "BOB TVL Progress" -msgstr "BOB TVL进度" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -msgid "BOB Wallet" -msgstr "BOB钱包" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 -#: src/components/Layout/Header.tsx:67 -#: src/components/Layout/Sidebar.tsx:44 -msgid "Bridge" -msgstr "桥接" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:515 -msgid "Bridge Asset" -msgstr "桥接资产" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:129 -msgid "Bridge Assets" -msgstr "桥接资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -msgid "Bridge BTC LSTs to BOB" -msgstr "将BTC LST桥接到BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:510 -msgid "Bridge Disabled" -msgstr "桥接已禁用" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:199 -msgid "bridge network" -msgstr "桥接网络" - -#: src/components/WithdrawModal/WithdrawForm.tsx:188 -msgid "Bridge to BOB" -msgstr "桥接到BOB" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeAlert.tsx:15 -msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -msgstr "ALEX桥接已被禁用,因为Alex Lab遭遇了涉及XLink桥的攻击。更多信息请参见此<0>公告。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:435 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:410 -msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -msgstr "BTC桥接当前不可用。原因可能是:{0}。请稍后再试。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -msgid "BTC LST Lending" -msgstr "BTC LST借贷" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 -msgid "By clicking ‘Connect’ you acknowledge and agree to the" -msgstr "点击‘连接’,即表示您确认并同意" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:244 -msgid "Cancel" -msgstr "取消" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:419 -msgid "Cannot stake into {0} due to insufficient liquidity." -msgstr "由于流动性不足,无法质押到{0}。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:512 -msgid "Checking Allowance" -msgstr "检查额度" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:33 -msgid "choose available wallets" -msgstr "选择可用的钱包" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -msgstr "选择任意现有的流动质押提供商来铸造您的BTC LST。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -msgid "Click the <0/> icon next to your favourite apps" -msgstr "点击您喜欢的应用旁边的<0/>图标" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:109 -#: src/components/TransactionModal/GatewayTransactionModal.tsx:74 -msgid "Close" -msgstr "关闭" - -#: src/app/[lang]/sign-up/SignUp.tsx:105 -msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -msgstr "结合比特币和以太坊的流动性和安全性。主网已上线!" - -#: src/app/[lang]/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:82 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -#: src/app/[lang]/stake/components/Unstake/ExternalStakeCard.tsx:86 -msgid "Coming Soon" -msgstr "即将推出" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -msgid "Coming SoonSteps" -msgstr "即将推出步骤" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:31 -msgid "Common Prefix auditor" -msgstr "通用前缀审计员" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:41 -msgid "Community Voting" -msgstr "社区投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -msgid "Community Voting Information" -msgstr "社区投票信息" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:45 -msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -msgstr "通过Intract和BOB质押门户完成各种链上和链下任务,收获额外的62,500 Spice。" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:138 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:92 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:104 -msgid "Connect BTC Wallet" -msgstr "连接BTC钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 -msgid "Connect request is already pending" -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:214 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -msgid "Connect Wallet" -msgstr "连接钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:296 -msgid "Connect your Bitcoin Wallet (Optional)" -msgstr "连接请求已在等待中" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:281 -msgid "Connect your EVM Wallet (Mandatory)" -msgstr "连接您的 EVM 钱包(必填)" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -msgid "Connected with <0>{wallet}" -msgstr "已连接到 <0>{wallet}" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 -msgid "Copy Address" -msgstr "复制地址" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:201 -msgid "Copy referral URL" -msgstr "复制推荐链接" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -msgid "Create Account" -msgstr "创建账户" - -#: src/components/Layout/FusionPopover.tsx:63 -msgid "Current Harvest" -msgstr "当前收获" - -#: src/components/Layout/FusionPopover.tsx:70 -msgid "Current Leaderboard Rank" -msgstr "当前排行榜排名" - -#: src/components/WithdrawModal/WithdrawModal.tsx:31 -msgid "Current Spice" -msgstr "当前Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:105 -msgid "Day" -msgstr "天" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -msgstr "将高优先级资产部署到高优先级的DeFi协议中,以最大化你的Spice收获。" - -#: src/app/[lang]/bridge/Bridge.tsx:126 -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:39 -msgid "Deposit" -msgstr "存款" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -msgstr "将任何符合条件的BTC LST存入BOB的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -msgstr "将BTC LST存入BOB的借贷市场,并将其作为抵押品借入其他资产。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -msgstr "将你的BTC LST存入<0>Satoshi Protocol铸造satUSD,并将其存入BOB的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -msgstr "将你的BTC LST存入<0>Satoshi Protocol铸造satUSD。" - -#: src/components/Layout/Header.tsx:101 -#: src/components/Layout/Sidebar.tsx:70 -msgid "Dev" -msgstr "开发" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -msgid "DEX *" -msgstr "去中心化交易所 *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -msgid "DEX Liquidity Provisioning" -msgstr "去中心化交易所流动性提供" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -msgid "Discover All Apps" -msgstr "发现所有应用" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -msgid "Docs" -msgstr "文档" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -msgstr "不相信比特币复兴?你可以将资金从合约中提取到以太坊钱包。如果你提取资产,将不再赚取Spice。<0>你将保留目前已收获的Spice。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -msgid "Don't show this message again" -msgstr "不再显示此消息" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -msgstr "确保你是从BOB网络进行转账,以避免资金损失。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:540 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:418 -msgid "Enter destination address" -msgstr "输入目的地址" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -msgid "Enter referral code (optional)" -msgstr "输入推荐码(可选)" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -msgid "Enter your access code (optional):" -msgstr "输入您的访问码(可选):" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:455 -msgid "Estimated Fee" -msgstr "预计费用" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:140 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:174 -msgid "Failed to connect to {0}" -msgstr "连接到 {0} 失败" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:110 -msgid "Failed to finalize." -msgstr "完成失败。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:109 -msgid "Failed to get estimated fee" -msgstr "未能获取预计费用" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:72 -msgid "Failed to submit proof." -msgstr "提交证明失败。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:83 -#: src/components/WithdrawModal/WithdrawForm.tsx:109 -msgid "Failed to withdraw to L2. Please try again." -msgstr "提款至L2失败。请再试一次。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -msgid "Failed to withdraw USDT to L1. Please try again." -msgstr "USDT提至L1失败。请再试一次。" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -msgid "Featured Assets" -msgstr "精选资产" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:71 -msgid "Fetching bridging operations..." -msgstr "正在获取桥接操作..." - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:153 -msgid "Fetching staking strategies..." -msgstr "正在获取质押策略..." - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:60 -msgid "Final Leaderboard Rank" -msgstr "最终排行榜排名" - -#: src/app/[lang]/bridge/components/BridgeStatus/RelayStep.tsx:50 -msgid "Finalize" -msgstr "完成" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -msgstr "按照<0>本指南的步骤,为Oku上的DEX池提供流动性。" - -#: src/components/BannerCarousel/XBanner.tsx:17 -msgid "Follow us on X" -msgstr "在X上关注我们" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -msgid "Follow us on X for updates" -msgstr "在X上关注我们以获取更新" - -#: src/components/Layout/Header.tsx:81 -#: src/components/Layout/Sidebar.tsx:58 -msgid "Fusion" -msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:39 -msgid "FUSION" -msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -msgstr "Fusion第3季是你最后一次收获Spice的机会。抵押你的比特币以获得最高的倍增,并推荐朋友以获得他们收集的Spice份额。" - -#: src/components/BannerCarousel/FusionBanner.tsx:29 -msgid "Fusion season three" -msgstr "Fusion第三季" - -#: src/components/TransactionDetails/TransactionDetails.tsx:119 -msgid "Gas Token" -msgstr "Gas代币" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:409 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:388 -msgid "Get ETH for transaction fees on BOB" -msgstr "获取ETH支付BOB上的交易费用" - -#: src/app/[lang]/not-found.tsx:29 -msgid "Go Back" -msgstr "返回" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:255 -msgid "Grab the final opportunity to harvest Spice. Join Season 3." -msgstr "抓住最后的机会收获Spice。加入第3季吧。" - -#: src/app/[lang]/fusion/Fusion.tsx:86 -msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -msgstr "通过存入BOB应用程序、投票和完成任务来收获Spice。请留意特别活动。" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:55 -msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -msgstr "这是你的活跃推荐人及他们当前为你赚取的Spice。他们赚得越多,你受益越多!" - -#: src/app/[lang]/fusion/Fusion.tsx:79 -msgid "Hero dots" -msgstr "英雄点" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -msgid "Hot Strategies" -msgstr "热门策略" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -msgid "How to vote:" -msgstr "如何投票:" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -msgstr "如果你已经在其他链上持有BTC LST,你可以将它们桥接到BOB并开始收获Spice。" - -#: src/app/[lang]/sign-up/SignUp.tsx:114 -msgid "Invalid referral code. You can try again, or proceed without one." -msgstr "无效的推荐码。你可以再试一次,或者不使用推荐码继续。" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -msgid "Last 24 Hours" -msgstr "过去24小时" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -msgid "Last 7 Days" -msgstr "过去7天" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -msgid "Last Week's Winners" -msgstr "上周的获胜者" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -msgid "Leaderboard" -msgstr "排行榜" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:79 -#: src/app/[lang]/fusion/Fusion.tsx:96 -msgid "Learn More" -msgstr "了解更多" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -msgid "Lending protocol points" -msgstr "借贷协议点数" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -msgid "Lending rate of BTC LSTs" -msgstr "BTC LST的借贷利率" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -msgid "Lending rate of satUSD" -msgstr "satUSD的借贷利率" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -msgid "Lending, Restaking, CDP *" -msgstr "借贷,重新质押,CDP *" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -msgid "Loading..." -msgstr "加载中..." - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -msgid "Locked Amount" -msgstr "锁定金额" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -msgid "Locked Capital Breakdown" -msgstr "锁定资本明细" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -msgid "Log in" -msgstr "登录" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:251 -msgid "Log in to View Dashboard" -msgstr "登录以查看仪表板" - -#: src/components/LoginSection/LoginSection.tsx:14 -msgid "Login with wallet" -msgstr "使用钱包登录" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "LST provider points" -msgstr "LST提供者点数" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -msgid "Maximum points will be received by providing BTC LST liquidity." -msgstr "提供BTC LST流动性将获得最大点数。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -msgid "Mint and Lend satUSD" -msgstr "铸造并借出satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -msgid "Mint more BTC LSTs with these borrowed assets." -msgstr "用这些借来的资产铸造更多的BTC LST。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -msgid "Mint satUSD and supply it into a lending market on BOB" -msgstr "铸造satUSD并将其提供给BOB的借贷市场" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -msgid "Multipliers" -msgstr "倍增器" - -#: src/components/Layout/Header.tsx:107 -#: src/components/Layout/Sidebar.tsx:61 -msgid "Multisig" -msgstr "多签" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:143 -msgid "My Total Harvest" -msgstr "我的总收获" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -msgid "Name" -msgstr "名称" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -msgid "Navigate to bridge page" -msgstr "导航至桥接页面" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:26 -msgid "navigate to Common Prefix audit" -msgstr "导航至Common Prefix审计" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -msgid "navigate to discord" -msgstr "导航至Discord" - -#: src/components/BannerCarousel/BannerCarousel.tsx:99 -msgid "navigate to ecosystem section in fusion page" -msgstr "导航至Fusion页面中的生态系统部分" - -#: src/components/Logo/Logo.tsx:28 -msgid "navigate to home page" -msgstr "导航至主页" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:34 -msgid "navigate to OtterSec audit" -msgstr "导航至OtterSec审计" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:18 -msgid "navigate to Trails of Bits audit" -msgstr "导航至Trails of Bits审计" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -msgid "navigate to X social" -msgstr "导航至X社交" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -msgid "Need support? Enter our Discord." -msgstr "需要支持?进入我们的Discord。" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -msgid "No assets shown" -msgstr "没有显示资产" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:86 -msgid "No bridging operations found" -msgstr "未找到桥接操作" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:237 -msgid "No new goal at the moment. Stay tuned for updates!" -msgstr "目前没有新的目标。敬请关注更新!" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:246 -msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -msgstr "在BOB上,您可以链接您的EVM和BTC钱包。为了获得最佳功能,建议同时连接两个网络的钱包。" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:66 -msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -msgstr "完成后,你的第3季得分将与第1和第2季的得分一起计算,得出你最终的Spice收成。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -msgid "Optional: It's possible to repeat steps 2-4 multiple times." -msgstr "可选:步骤2-4可以多次重复。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -msgid "or" -msgstr "或" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:39 -msgid "OtterSec auditor" -msgstr "OtterSec审计员" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:63 -msgid "Pending" -msgstr "待处理" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:94 -msgid "Please confirm allowance approval for {0} in your wallet" -msgstr "请确认钱包中{0}的额度批准" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:65 -msgid "Please confirm the transaction in your wallet" -msgstr "请在你的钱包中确认交易" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:92 -msgid "Please confirm transaction in your wallet" -msgstr "请在你的钱包中确认交易" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -msgid "Please connect a wallet" -msgstr "请连接钱包" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -msgid "Please note:" -msgstr "请注意:" - -#: src/app/[lang]/sign-up/SignUp.tsx:101 -msgid "POWERED BY BTC & ETH" -msgstr "由BTC和ETH驱动" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 -msgid "Privacy policy" -msgstr "隐私政策" - -#: src/app/[lang]/bridge/components/BridgeStatus/ProveStep.tsx:44 -msgid "Prove" -msgstr "证明" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -msgstr "在<0>Oku DEX上向任意AMM池提供流动性,赚取交易费用和奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -msgid "Provide liquidity into Oku DEX" -msgstr "向Oku DEX提供流动性" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:82 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:41 -msgid "Quests" -msgstr "任务" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:167 -msgid "Quests Completed" -msgstr "已完成的任务" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:232 -msgid "Quests Only" -msgstr "仅任务" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -msgid "Read more here" -msgstr "在这里阅读更多" - -#: src/components/BannerCarousel/FusionBanner.tsx:25 -msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -msgstr "阅读BOB博客上的官方Fusion指南,立即开始收获Spice。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:371 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 -msgid "Receive" -msgstr "接收" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -msgid "Receive {0}" -msgstr "接收{0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -msgid "Receive {ticker}" -msgstr "接收{ticker}" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:539 -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:417 -msgid "Recipient" -msgstr "接收人" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -msgid "Remove vote" -msgstr "移除投票" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:129 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -msgid "Rewards" -msgstr "奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -msgid "Satoshi protocol points" -msgstr "Satoshi协议点数" - -#: src/components/Layout/FusionPopover.tsx:77 -msgid "Season 1 & 2 (Completed)" -msgstr "第1季和第2季(已完成)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:111 -msgid "Season 1 & 2 Total Spice (Completed):" -msgstr "第1季和第2季的Spice总数(已完成):" - -#: src/components/Layout/FusionPopover.tsx:88 -msgid "Season 2 Final Rank" -msgstr "第2季最终排名" - -#: src/components/Layout/FusionPopover.tsx:57 -msgid "Season 3 (Ongoing)" -msgstr "第3季(进行中)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:99 -msgid "Season 3 Harvested Spice" -msgstr "第3季收获的Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -msgid "Season Three" -msgstr "第3季" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:211 -msgid "Select Bitcoin Wallet" -msgstr "选择比特币钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:197 -msgid "Select EVM Wallet" -msgstr "选择EVM钱包" - -#: src/components/TransactionDetails/TransactionDetails.tsx:122 -msgid "select gas token" -msgstr "选择Gas代币" - -#: src/app/[lang]/bridge/components/ChainSelect/ChainSelect.tsx:20 -msgid "Select Network" -msgstr "选择网络" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:170 -msgid "select network to bridge from" -msgstr "选择桥接源网络" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:180 -msgid "select network to bridge to" -msgstr "选择桥接目标网络" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -msgstr "选择包装的比特币资产和你想桥接的数量。" - -#: src/components/TransactionDetails/TransactionDetails.tsx:124 -msgid "Select Token" -msgstr "选择代币" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:257 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 -msgid "Send" -msgstr "发送" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -msgid "Send {ticker}" -msgstr "发送{ticker}" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:185 -msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -msgstr "将此链接分享给朋友,当他们注册时,你将获得他们Spice收成的15%作为奖励,以及他们推荐的任何人Spice收成的7%。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:111 -#: src/components/LoginButton/LoginButton.tsx:29 -msgid "Something went wrong. Please try again later." -msgstr "出了些问题。请稍后再试。" - -#: src/app/[lang]/sign-up/SignUp.tsx:71 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -msgid "Something went wrong. Please try connecting your wallet again." -msgstr "出了些问题。请尝试重新连接你的钱包。" - -#: src/app/[lang]/not-found.tsx:22 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "抱歉,您正在查找的页面不存在或已被移动。以下是一些有用的链接:" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:81 -msgid "Spice" -msgstr "Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -msgid "Spice Earned Across Apps" -msgstr "在应用中获得的Spice" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:122 -msgid "Spice Multiplier" -msgstr "Spice倍增器" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:116 -msgid "Spice Per Hour" -msgstr "每小时Spice" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Spice points (Lower)" -msgstr "Spice点数(较低)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -msgid "Spice points (Medium)" -msgstr "Spice点数(中等)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -msgid "Spice rewards (Higher)" -msgstr "Spice奖励(较高)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -msgid "Spice rewards (Medium)" -msgstr "Spice奖励(中等)" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:424 -#: src/components/Layout/Header.tsx:78 -#: src/components/Layout/Sidebar.tsx:55 -msgid "Stake" -msgstr "质押" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:82 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -msgid "Start Harvesting" -msgstr "开始收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:258 -#: src/app/[lang]/sign-up/SignUp.tsx:126 -msgid "Start Harvesting Spice" -msgstr "开始收获Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -msgid "Step One" -msgstr "第一步" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -msgstr "第一步 将你的资产桥接到BOB以开始收获Spice。<0/>提示:某些资产比其他资产获得更多的Spice。你可以通过点击“查看倍增器”按钮查看。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -msgid "Step Two" -msgstr "第二步" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:103 -msgid "Successfully finalized transaction" -msgstr "交易成功完成" - -#: src/app/[lang]/bridge/components/BridgeStatus/WithdrawStatus.tsx:65 -msgid "Successfully submitted ${0} proof" -msgstr "成功提交了${0}的证明" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -msgstr "将新铸造的satUSD提供给<0>BOB上的借贷协议。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -msgid "Support your favourite BOB apps" -msgstr "支持你最喜欢的BOB应用" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:82 -msgid "Switch to {capitalizedName}" -msgstr "切换到 {capitalizedName}" - -#: src/components/Layout/Header.tsx:98 -#: src/components/Layout/Sidebar.tsx:67 -msgid "T&Cs" -msgstr "条款和条件" - -#: src/app/[lang]/not-found.tsx:34 -msgid "Take em home" -msgstr "带他们回家" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 -msgid "Terms of Service" -msgstr "服务条款" - -#: src/components/Logo/Logo.tsx:45 -msgid "Testnet" -msgstr "测试网" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -msgstr "感谢您的理解,我们希望在更去中心化的未来能为您服务。BOB L2网络本身是完全去中心化的,无法被审查,所有代码都是开源的。" - -#: src/components/BannerCarousel/OnrampBanner.tsx:21 -msgid "The fastest and easiest way to bridge BTC to BOB." -msgstr "将BTC桥接到BOB的最快和最简单的方法。" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -msgid "The final season" -msgstr "最后一季" - -#: src/app/[lang]/sign-up/SignUp.tsx:98 -msgid "THE FIRST HYBRID L2" -msgstr "第一个混合L2" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:137 -msgid "The number of BOB ecosystem apps that you have harvested Spice with" -msgstr "您使用的BOB生态系统应用收获Spice的数量" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:168 -msgid "The number of Intract and Galxe quests that you have completed" -msgstr "您完成的Intract和Galxe任务的数量" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -msgid "There are no apps to be displayed" -msgstr "没有可显示的应用" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:444 -msgid "There is currently no available liquidity to onramp BTC into {0}." -msgstr "目前没有可用的流动性将BTC注入{0}。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -msgstr "这通常是为了遵守当地法律法规。网站托管者必须遵守规定,可能会被迫阻止某些国家。很遗憾,您的国家在该网站托管者的条款和条件下被列为限制国家。我们正在不断努力扩大我们的服务范围,向更多地区提供服务。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -msgstr "由于地理封锁,该网站在您的位置不可用。地理封锁是内容提供商根据用户的地理位置限制其内容访问的做法。" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -msgid "To cast your vote, please log in" -msgstr "要投票,请登录" - -#: src/components/BannerCarousel/XBanner.tsx:21 -msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -msgstr "要跟上BOB生态系统的最新动态,请关注@build_on_bob。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:402 -msgid "Top up Gas" -msgstr "充值Gas" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:378 -msgid "Top-up Gas" -msgstr "充值Gas" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -msgid "Total Assets" -msgstr "总资产" - -#: src/components/Layout/FusionPopover.tsx:81 -msgid "Total Harvest" -msgstr "总收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:63 -msgid "Total Referrals Earnings:" -msgstr "总推荐收入:" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:52 -msgid "Total Spice Harvested" -msgstr "总Spice收获" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:23 -msgid "Trails of Bits auditor" -msgstr "Bits小径审计员" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Transaction submitted" -msgstr "交易已提交" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:51 -msgid "Transaction Submitted" -msgstr "交易已提交" - -#: src/components/TransactionDetails/TransactionDetails.tsx:111 -msgid "Transfer time" -msgstr "转账时间" - -#: src/components/WithdrawModal/WithdrawForm.tsx:146 -msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -msgstr "不幸的是,无法使用智能账户桥接到BOB。我们正在努力在不久的将来添加对此的支持,请关注我们的未来更新。" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:425 -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:400 -msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -msgstr "不幸的是,目前不支持Taproot (P2TR)地址。请使用其他地址类型。" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:72 -msgid "Unknown" -msgstr "未知" - -#: src/components/WithdrawModal/WithdrawForm.tsx:177 -msgid "USDT can only be withdrawn to Ethereum." -msgstr "USDT只能提取到以太坊。" - -#: src/components/WithdrawModal/WithdrawForm.tsx:169 -msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -msgstr "USDT只能提取到以太坊。当桥接到BOB时,系统会提示您签名两次:一次是将您的资产(不含USDT)桥接到BOB,一次是将USDT提取到以太坊。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -msgid "Use any of the <0>supported bridges." -msgstr "使用任何<0>支持的桥接。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:153 -msgid "Use Apps" -msgstr "使用应用" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -msgid "Use BTC LSTs as collateral to borrow other assets" -msgstr "将BTC LSTs作为抵押借入其他资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -msgstr "将存入的BTC LSTs作为抵押借入wBTC、tBTC或FBTC。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -msgstr "将存入的satUSD作为抵押借入任何BTC LST。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -msgstr "在应用中使用您的桥接资产以最大化您的Spice收获。<0/>提示:某些类型的应用提供更大的倍增器。探索“热门策略”部分以了解更多。" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:44 -msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -msgstr "利用您的Spice总量支持您最喜欢的BOB建设者。每周将公布获胜者。" - -#: src/app/[lang]/bridge/components/BridgeForm/BobBridgeForm.tsx:109 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:133 -msgid "User rejected the request" -msgstr "用户拒绝了请求" - -#: src/app/[lang]/bridge/components/BridgeForm/BridgeForm.tsx:214 -msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -msgstr "使用官方桥接通常需要7天。为了更快的提现,我们建议使用第三方桥接。" - -#: src/app/[lang]/wallet/Wallet.tsx:29 -msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -msgstr "查看您在BOB网络上的钱包摘要。DeFi头寸可能无法被追踪。" - -#: src/app/[lang]/bridge/components/TransactionList/TransactionList.tsx:96 -msgid "View All Transactions" -msgstr "查看所有交易" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:126 -msgid "View Multipliers" -msgstr "查看倍增器" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:60 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:179 -msgid "View Quests" -msgstr "查看任务" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:49 -msgid "Vote" -msgstr "投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -msgid "Vote for maximum three projects per week" -msgstr "每周最多投票给三个项目" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -msgid "Vote for maximum three projects per week by clicking on the flame icon." -msgstr "通过点击火焰图标,每周最多为三个项目投票。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -msgid "Votes Left:" -msgstr "剩余投票:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -msgid "Voting limit exceeded" -msgstr "超出投票限制" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:55 -msgid "Waiting for approval" -msgstr "等待批准" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:53 -#: src/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Waiting for confirmation" -msgstr "等待确认" - -#: src/components/Layout/Header.tsx:74 -#: src/components/Layout/Sidebar.tsx:51 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 -msgid "Wallet" -msgstr "钱包" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:82 -msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -msgstr "我们会相应地为您提供更新。您可以在桥接页面上监控进度;一旦过程完成,它将被标记为已完成。" - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -msgid "We're Sorry" -msgstr "我们很抱歉" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -msgid "Welcome to BOB Fusion" -msgstr "欢迎来到BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -msgstr "当您为一个项目投票时,您的Spice总量将被添加到他们的投票总数中。<0/><1/>每周获得最多投票的项目将获得Spice奖励,他们可以将其分配给用户。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -msgstr "当您投票时,您不会放弃任何收获。您的Spice总量仅用于计算您的投票权重。" - -#: src/app/[lang]/bridge/Bridge.tsx:129 -#: src/app/[lang]/bridge/components/TransactionList/TransactionDetails.tsx:39 -msgid "Withdraw" -msgstr "提现" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:157 -#: src/components/WithdrawModal/WithdrawForm.tsx:207 -msgid "Withdraw Assets" -msgstr "提现资产" - -#: src/components/WithdrawModal/WithdrawForm.tsx:134 -msgid "Withdraw to L1 failed. Please try again." -msgstr "提现到L1失败。请再试一次。" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -msgid "Yield Assets" -msgstr "收益资产" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -msgid "You can change your votes at any time before the end of the weekly voting period" -msgstr "在每周投票期结束之前,您可以随时更改您的投票。" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -msgid "You still have assets locked in Season One. Please redeem your funds" -msgstr "您仍然有资产锁定在第一季。请赎回您的资金。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -msgid "You will need to actively monitor your position, especially if it has a small range." -msgstr "您需要积极监控您的头寸,特别是如果它的范围很小。" - -#: src/components/TransactionDetails/TransactionDetails.tsx:89 -msgid "You will receive" -msgstr "您将收到" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:51 -msgid "Your Active Referrals" -msgstr "您当前的推荐" - -#: src/components/TransactionModal/GatewayTransactionModal.tsx:55 -msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -msgstr "一旦您的BTC交易获得至少3个确认并且处理在我们的L2链上完成,您的资产将被交付。我们会相应地为您提供更新。您可以在桥接页面上监控进度。完成后将标记为已完成。" - -#: src/components/TransactionModal/BridgeTransactionModal.tsx:79 -msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -msgstr "您的资产将很快送达,预计到达时间为:" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:357 -msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -msgstr "由于网络费用和可用流动性,您的可用余额可能与您的钱包余额不同。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:184 -msgid "Your Referral Code" -msgstr "您的推荐代码" - -#: src/components/Layout/FusionPopover.tsx:53 -msgid "Your Spice Harvest Overview" -msgstr "您的Spice收获概览" diff --git a/apps/evm/src/locales/zh.po b/apps/evm/src/locales/zh.po deleted file mode 100644 index 04e72784b..000000000 --- a/apps/evm/src/locales/zh.po +++ /dev/null @@ -1,1845 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2024-10-14 13:15+0300\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:80 -msgid ", due to the challenge period" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:171 -#~ msgid "{0}" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:49 -msgid "{0} ago" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:47 -msgid "{0} remaining" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:50 -msgid "{0} until next draw" -msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:40 -msgid "{0} until quest ends" -msgstr "距离任务结束还有{0}" - -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:37 -msgid "{0} until voting round ends" -msgstr "距离投票轮结束还有{0}" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:226 -msgid "* The multipliers displayed are subject to change based on the payout structure of the respective projects." -msgstr "* 显示的倍数可能会根据相应项目的支付结构而变化。" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:245 -msgid "< 1 minute" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:59 -msgid "<0>{0} {1, plural, one {Ticket} other {Tickets}} Remaining" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:87 -#~ msgid "<0>{rollsRemaining}/{MAX_TICKETS} {0, plural, one {Ticket} other {Tickets}} Remaining" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:117 -msgid "<0>{rollsRemaining}/3 {0, plural, one {Ticket} other {Tickets}} Remaining" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:21 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:60 -msgid "<0>Stake your BTC with 1-click and receive BTC LSTs on BOB." -msgstr "<0>一键质押你的BTC 并在BOB上接收BTC LSTs。" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -msgid "2 hours" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:218 -msgid "3rd Party" -msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:20 -#: src/app/[lang]/404/page.tsx:14 -msgid "404 Error" -msgstr "404 错误" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/TimeStep.tsx:44 -msgid "7 days" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:40 -#: src/components/Layout/Header.tsx:112 -#: src/components/Layout/Sidebar.tsx:73 -msgid "About" -msgstr "关于" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:106 -msgid "Adjusting the fee rate affects how quickly your Bitcoin transaction is confirmed. Lower fees may lead to significant delays in confirmation time." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:94 -msgid "Advanced Fee Settings" -msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:93 -msgid "All Apps" -msgstr "所有应用" - -#: src/components/LoginSection/LoginSection.tsx:11 -msgid "Already harvesting?" -msgstr "已经在收获?" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 -msgid "Amount" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:26 -msgid "An Exclusive Bitcoin Staking and DeFi Campaign" -msgstr "" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:25 -#~ msgid "An exclusive quest campaign." -#~ msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:266 -msgid "and that you have read and understood our" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:180 -msgid "Apply" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:523 -msgid "Approve" -msgstr "通过" - -#: src/app/[lang]/apps/page.tsx:14 -#: src/components/Layout/Header.tsx:72 -#: src/components/Layout/Sidebar.tsx:47 -msgid "Apps" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:164 -msgid "Apps Used" -msgstr "已体验的应用" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:62 -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:110 -msgid "Asset" -msgstr "资产" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:158 -msgid "Asset Details" -msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:16 -msgid "Audited by" -msgstr "审计" - -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:37 -msgid "Authorize Wallet" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:41 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:108 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Babylon points" -msgstr "Babylon积分" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:111 -msgid "Balance" -msgstr "余额" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:216 -msgid "Base Assets" -msgstr "基础资产" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:23 -msgid "Below is the Spice you've harvested from apps. Keep participating to increase your future harvest!" -msgstr "以下是你从各个应用中收获的Spice。继续参与以增加你未来的收获!" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:29 -#~ msgid "Binance campaign banner" -#~ msgstr "" - -#: src/components/BannerCarousel/BinanceCampaignBanner.tsx:21 -#~ msgid "Bitcoin Staking with Binance" -#~ msgstr "" - -#: src/components/Logo/Logo.tsx:37 -msgid "BOB" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:215 -msgid "BOB Bridge" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:22 -msgid "BOB Ecosystem on OKX Cryptopedia" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:92 -msgid "BOB Fusion: The Final Season" -msgstr "BOB Fusion:最终季" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:25 -msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB" -msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:435 -#~ msgid "BOB Gateway allows you to swap BTC on Bitcoin to ETH on BOB." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:17 -msgid "BOB Gateway is live!" -msgstr "" - -#: src/app/[lang]/layout.tsx:30 -#: src/app/[lang]/layout.tsx:49 -msgid "BOB is a hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:262 -msgid "BOB TVL Progress" -msgstr "BOB TVL进度" - -#: src/app/[lang]/wallet/Wallet.tsx:25 -msgid "BOB Wallet" -msgstr "BOB 钱包" - -#: src/app/[lang]/(bridge)/bridge/page.tsx:14 -#: src/app/[lang]/page.tsx:15 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:75 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:18 -#: src/components/Layout/Header.tsx:69 -#: src/components/Layout/Sidebar.tsx:44 -msgid "Bridge" -msgstr "桥" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:524 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -msgid "Bridge Asset" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:157 -msgid "Bridge Assets" -msgstr "跨链资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:155 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:156 -msgid "Bridge BTC LSTs to BOB" -msgstr "将BTC LSTs跨链到BOB" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:519 -msgid "Bridge Disabled" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:208 -msgid "bridge network" -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:192 -msgid "Bridge to BOB" -msgstr "跨链到BOB" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -msgid "Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeAlert.tsx:15 -msgid "Bridging ALEX is disabled because Alex Lab suffered an exploit involving the XLink bridge. For more information, kindly refer to this <0>announcement." -msgstr "由于 Alex Lab 遭受了涉及 XLink 桥接的攻击,桥接 ALEX 已被禁用。有关更多信息,请参阅此 <0>公告。" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:86 -msgid "BTC bridge is currently unavailable. This may be due to: {0}. Please try again later." -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:13 -msgid "BTC LST Lending" -msgstr "BTC LST借贷" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:258 -msgid "By clicking ‘Connect’ you acknowledge and agree to the" -msgstr "" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:79 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:255 -msgid "Cancel" -msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:478 -#~ msgid "Cannot stake into {0} due to insufficient liquidity." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:97 -msgid "Cannot stake into {assetName} due to insufficient liquidity." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:36 -msgid "Category" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:521 -msgid "Checking Allowance" -msgstr "" - -#: src/connect-ui/component/ConnectModal/WalletList.tsx:116 -msgid "choose available wallets" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:179 -msgid "Chose any of the existing liquid staking provider to mint your BTC LST." -msgstr "选择任何现有的流动性质押提供商来铸造你的BTC LST。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:34 -msgid "Click the <0/> icon next to your favourite apps" -msgstr "点击 <0/> 你喜爱应用旁边的图标" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:108 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:93 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:187 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:85 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:194 -msgid "Close" -msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:106 -msgid "Combining liquidity and security from Bitcoin and Ethereum. Mainnet live!" -msgstr "结合比特币和以太坊的流动性和安全性。= 主网已上线!。" - -#: src/app/[lang]/(bridge)/bridge/components/ExternalBridgeForm/ExternalBridgeCard.tsx:87 -#: src/app/[lang]/(bridge)/stake/components/Unstake/ExternalStakeCard.tsx:83 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:42 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:210 -msgid "Coming Soon" -msgstr "即将推出" - -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:59 -msgid "Coming SoonSteps" -msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:41 -msgid "Common Prefix auditor" -msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:29 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:43 -msgid "Community Voting" -msgstr "社区投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:14 -msgid "Community Voting Information" -msgstr "社区投票信息" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:56 -msgid "Complete a variety of on- and off-chain quests using Intract and the BOB Stake Portal to harvest an additional 62,500 Spice." -msgstr "完成各种链上和链下任务,使用Intract和BOB Stake来额外收获62,500 Spice。" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:110 -msgid "Congratulations you won!<0/>Take a screenshot to share with your friends!" -msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/TokenTable.tsx:141 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:94 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:107 -msgid "Connect BTC Wallet" -msgstr "连接比特币钱包" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:201 -msgid "Connect BTC wallet to access fee rate settings." -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:141 -msgid "Connect request is already pending" -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:77 -#: src/connect-ui/component/AuthButton/AuthButton.tsx:63 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:220 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:35 -msgid "Connect Wallet" -msgstr "连接钱包" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:302 -msgid "Connect your Bitcoin Wallet (Optional)" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:287 -msgid "Connect your EVM Wallet (Mandatory)" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectedWalletSection.tsx:37 -msgid "Connected with <0>{wallet}" -msgstr "" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:89 -msgid "Copy Address" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:229 -msgid "Copy referral URL" -msgstr "复制推荐URL" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:36 -msgid "Create Account" -msgstr "创建账户" - -#: src/components/Layout/FusionPopover.tsx:63 -msgid "Current Harvest" -msgstr "当前收获" - -#: src/components/Layout/FusionPopover.tsx:70 -msgid "Current Leaderboard Rank" -msgstr "当前排行榜排名" - -#: src/components/WithdrawModal/WithdrawModal.tsx:33 -msgid "Current Spice" -msgstr "当前Spice" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:301 -msgid "Current TVL:" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:133 -msgid "Day" -msgstr "/天" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:190 -msgid "Deploy high priority assets into high priority DeFi protocols to maximize your Spice harvest." -msgstr "将高优先级资产部署到高优先级DeFi协议中,以最大化你的Spice收获。" - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:132 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 -msgid "Deposit" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:29 -msgid "Deposit any eligible BTC LSTs into a lending market on BOB." -msgstr "将任何符合条件的BTC LSTs存入BOB上的借贷市场。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:15 -msgid "Deposit BTC LSTs into a lending market on BOB and use them as collateral to borrow other assets." -msgstr "将BTC LSTs存入BOB上的借贷市场,并使用它们作为抵押品借其他资产。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:49 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD and deposit that into a lending market on BOB" -msgstr "将你的BTC LSTs存入 <0>将你的BTC LSTs存入 以铸造satUSD,并将其存入BOB上的借贷市场" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:70 -msgid "Deposit your BTC LSTs into <0>Satoshi Protocol to mint satUSD." -msgstr "将你的BTC LSTs存入 <0>Satoshi协议 以铸造satUSD。" - -#: src/components/Layout/Header.tsx:109 -#: src/components/Layout/Sidebar.tsx:70 -msgid "Dev" -msgstr "开发者" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:76 -msgid "DEX *" -msgstr "去中心化交易所(DEX) *" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:113 -msgid "DEX Liquidity Provisioning" -msgstr "为DEX提供流动性" - -#: src/app/[lang]/nested-providers.tsx:76 -msgid "Disconnected" -msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:82 -msgid "Discover All Apps" -msgstr "探索全部应用" - -#: src/components/SocialsGroup/SocialsGroup.tsx:31 -msgid "Docs" -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:196 -msgid "Don't believe in the Bitcoin Renaissance? You can withdraw your funds from the contract to your wallet on Ethereum. You will no longer earn Spice if you withdraw your assets. <0>You will keep the Spice harvested so far." -msgstr "想要退出?你可以将资金从合约中提取到以太坊钱包。请注意,提取资产后你将不再赚取Spice。<0>不过,你已收获的Spice都会保留。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:58 -msgid "Don't show this message again" -msgstr "不再显示此消息" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:100 -#~ msgid "Each ticket is your chance to win big! Vote for your favourite app to receive {MAX_TICKETS} new tickets daily and boost your chances." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:130 -msgid "Each ticket is your chance to win big! Vote for your favourite app to receive 3 new tickets daily and boost your chances." -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:26 -msgid "Earned Spice" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:35 -msgid "enable ETH top-up for transaction fees on BOB network" -msgstr "" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:59 -msgid "Ensure that you are transferring from the BOB Network to avoid any loss of funds." -msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:225 -msgid "Enter Address" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:549 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:190 -msgid "Enter destination address" -msgstr "" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:72 -msgid "Enter referral code (optional)" -msgstr "" - -#: src/app/[lang]/sign-up/components/ReferralInput/ReferralInput.tsx:28 -msgid "Enter your access code (optional):" -msgstr "" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:484 -#~ msgid "Estimated Fee" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:137 -msgid "Estimated within 1 hour" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:129 -msgid "Estimated within 30 minutes" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:121 -msgid "Estimated within the next block" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:144 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:180 -msgid "Failed to connect to {0}" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:107 -msgid "Failed to finalize." -msgstr "" - -#: src/app/[lang]/(bridge)/hooks/useGateway.ts:236 -msgid "Failed to get estimated fee" -msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:157 -msgid "Failed to send {amount} {0}" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:69 -msgid "Failed to submit proof." -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:87 -#: src/components/WithdrawModal/WithdrawForm.tsx:113 -msgid "Failed to withdraw to L2. Please try again." -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:91 -msgid "Failed to withdraw USDT to L1. Please try again." -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:194 -msgid "Featured Assets" -msgstr "特色资产" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:77 -msgid "Fee" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:69 -msgid "Feeling lucky? Try your luck with the daily lottery!<0/>Participate in Fusion voting to receive 3 lottery tickets each day." -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:77 -msgid "Fetching bridging operations..." -msgstr "" - -#: src/app/[lang]/stake/components/StrategyDetails/StrategyDetails.tsx:163 -#~ msgid "Fetching staking strategies..." -#~ msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:62 -msgid "Final Leaderboard Rank" -msgstr "最终排行榜排名" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/RelayStep.tsx:47 -msgid "Finalize" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:133 -msgid "Follow the steps of <0>this guide to provide liquity into a DEX pool on Oku." -msgstr "按照 <0>本指南 的步骤为Oku上的DEX池提供流动性。" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:18 -#: src/app/[lang]/fusion/Fusion.tsx:120 -msgid "Follow us on X" -msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:40 -msgid "Follow us on X for updates" -msgstr "" - -#: src/app/[lang]/fusion/page.tsx:16 -#: src/components/Layout/Header.tsx:83 -#: src/components/Layout/Sidebar.tsx:58 -msgid "Fusion" -msgstr "Fusion" - -#: src/components/Logo/Logo.tsx:41 -msgid "FUSION" -msgstr "FUSION" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:43 -msgid "Fusion season 3 is your last ever chance to harvest Spice. Stake your Bitcoin for the highest multipliers and refer a friend to receive a share of all the Spice they collect." -msgstr "Fusion第3季是你收获Spice的最后机会。质押比特币获得最高倍数,并通过推荐朋友赚取他们Spice收获的分成。" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:30 -msgid "Fusion season three" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:113 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:293 -msgid "Fusion Users:" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:116 -msgid "Gas Token" -msgstr "" - -#: src/app/[lang]/geoblock/page.tsx:14 -msgid "Geoblock" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -msgid "Get" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:30 -msgid "Get ETH for transaction fees on BOB" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:189 -msgid "Get tickets" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:195 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:209 -msgid "go back" -msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:30 -msgid "Go Back" -msgstr "返回" - -#: src/app/[lang]/nested-providers.tsx:91 -msgid "Got it!" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:283 -msgid "Grab the final opportunity to harvest Spice. Join Season 3." -msgstr "抓住最后收获Spice的机会!加入第3季!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:80 -#~ msgid "Harvest {pointsMissing} more Spice to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:78 -msgid "Harvest {pointsMissing} more Spice to play" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to participate" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:57 -#~ msgid "Harvest {pointsMissing} more SPICE to your account to play" -#~ msgstr "" - -#: src/app/[lang]/fusion/Fusion.tsx:95 -msgid "Harvest Spice by depositing into BOB apps, voting, and solving quests. Keep an eye out for special events." -msgstr "通过存入BOB应用、投票和完成任务来收获Spice。密切关注特别活动" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:57 -msgid "Here are your active referrals and the Spice they're currently earning for you. The more they earn, the more you benefit!" -msgstr "这里展示了你推荐的活跃用户及他们为你赚取的Spice。他们赚得越多,你获益越多!" - -#: src/app/[lang]/fusion/Fusion.tsx:88 -msgid "Hero dots" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:63 -msgid "Holding" -msgstr "持有" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:201 -msgid "Hot Strategies" -msgstr "热门策略" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:30 -msgid "How to vote:" -msgstr "如何投票:" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:29 -msgid "Hybrid L2" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:157 -msgid "If you already own BTC LSTs on other chains, you can bridge them over to BOB and start harvesting Spice." -msgstr "如果你已经在其他链上拥有BTC LSTs,你可以将它们跨链到BOB并开始收获Spice。" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:38 -msgid "Incentives" -msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:115 -msgid "Invalid referral code. You can try again, or proceed without one." -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:74 -#~ msgid "Join BOB's voting campaign, vote on projects, & get tickets for prizes. New users get a spice bonus. Engage, vote, and win!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:223 -msgid "Last 24 Hours" -msgstr "过去24小时" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:226 -msgid "Last 7 Days" -msgstr "过去7天" - -#: src/app/[lang]/apps/components/AppsPodium/AppsPodium.tsx:22 -msgid "Last Week's Winners" -msgstr "上周获胜者" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:217 -msgid "Leaderboard" -msgstr "排行榜" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:81 -#: src/app/[lang]/fusion/Fusion.tsx:105 -msgid "Learn More" -msgstr "了解更多" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:168 -msgid "Learn more about {0}" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:70 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:76 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:82 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:88 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:94 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:100 -msgid "Lending" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:39 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:105 -msgid "Lending protocol points" -msgstr "借贷协议积分" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:38 -msgid "Lending rate of BTC LSTs" -msgstr "BTC LSTs的借贷利率" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:104 -msgid "Lending rate of satUSD" -msgstr "satUSD的借贷利率" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:68 -msgid "Lending, Restaking, CDP *" -msgstr "借贷、再质押、抵押债仓(CDP) *" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:45 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:106 -msgid "Liquid Staking" -msgstr "" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:51 -msgid "Loading..." -msgstr "" - -#: src/components/WithdrawModal/DepositedAssets.tsx:89 -msgid "Locked Amount" -msgstr "锁定金额" - -#: src/components/WithdrawModal/DepositedAssets.tsx:80 -msgid "Locked Capital Breakdown" -msgstr "锁定资本明细" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:30 -msgid "Log in" -msgstr "登录" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:279 -msgid "Log in to View Dashboard" -msgstr "登录查看仪表板" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -msgid "Login to play" -msgstr "" - -#: src/components/LoginSection/LoginSection.tsx:14 -msgid "Login with wallet" -msgstr "使用钱包登录" - -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:36 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:57 -msgid "Lottery" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:33 -#~ msgid "Lottery ticket" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:40 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:107 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "LST provider points" -msgstr "LST 项目方积分" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:145 -msgid "Maximize your chances by using all your tickets before the countdown resets. Don't forget to participate in Weekly Fusion Voting to claim your 3 Lottery tickets daily." -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:148 -msgid "Maximum points will be received by providing BTC LST liquidity." -msgstr "提供BTC LST流动性将获得最高积分。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:46 -msgid "Mint and Lend satUSD" -msgstr "铸造并借出satUSD" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:33 -msgid "Mint more BTC LSTs with these borrowed assets." -msgstr "用这些借到的资产铸造更多BTC LSTs。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:47 -msgid "Mint satUSD and supply it into a lending market on BOB" -msgstr "铸造satUSD并将其供应到BOB上的借贷市场" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:186 -msgid "Multipliers" -msgstr "收益倍数" - -#: src/components/Layout/Header.tsx:115 -#: src/components/Layout/Sidebar.tsx:61 -msgid "Multisig" -msgstr "多签" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:97 -msgid "My Apps" -msgstr "我的应用" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:145 -msgid "My Total Harvest" -msgstr "" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:78 -msgid "Name" -msgstr "名称" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:73 -msgid "navigate to {name} app page" -msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:78 -msgid "Navigate to bridge page" -msgstr "导航至桥接页面" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:35 -msgid "navigate to Common Prefix audit" -msgstr "" - -#: src/components/SocialsGroup/SocialsGroup.tsx:46 -msgid "navigate to discord" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/BannerCarousel.tsx:90 -msgid "navigate to ecosystem section in fusion page" -msgstr "" - -#: src/components/Logo/Logo.tsx:30 -msgid "navigate to home page" -msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:49 -msgid "navigate to OtterSec audit" -msgstr "" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:21 -msgid "navigate to Trails of Bits audit" -msgstr "" - -#: src/components/SocialsGroup/SocialsGroup.tsx:37 -msgid "navigate to X social" -msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:47 -msgid "Need support? Enter our Discord." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:153 -msgid "Network Fee" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:175 -msgid "Network Fee Rate" -msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -msgid "New Quests Coming Soon" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:70 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:163 -msgid "new tickets drop in {0}" -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:70 -msgid "No assets shown" -msgstr "未显示的资产" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:96 -msgid "No bridging operations found" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:265 -msgid "No new goal at the moment. Stay tuned for updates!" -msgstr "目前暂无新目标。请保持关注更新!" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough spice" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -#~ msgid "Not enough Spice" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:50 -#~ msgid "Not enough SPICE" -#~ msgstr "" - -#: src/app/[lang]/not-found/page.tsx:14 -#~ msgid "Not found" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -msgid "Not your lucky day... yet!" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OKXCryptopediaBanner.tsx:30 -msgid "OKX Cryptopedia" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:252 -msgid "On BOB, you have the option to link both your EVM and BTC wallets. For optimal functionality, it's advised to connect wallets from both networks." -msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:68 -msgid "Once complete, your season 3 score will be added to seasons 1 and 2 to calculate your final Spice harvest." -msgstr "第3季结束后,你的得分将与第1季和第2季的得分合并,用于计算你的最终Spice收获。" - -#: src/components/Layout/Header.tsx:57 -msgid "open drawer" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:34 -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:99 -msgid "Optional: It's possible to repeat steps 2-4 multiple times." -msgstr "可选:可以多次重复步骤2-4。" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:33 -msgid "or" -msgstr "或" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:54 -msgid "OtterSec auditor" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:62 -msgid "Pending" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:208 -#: src/app/[lang]/fusion/components/LotterySections/LotterySections.tsx:81 -msgid "Play" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:93 -msgid "Please confirm allowance approval for {0} in your wallet" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:65 -msgid "Please confirm the transaction in your wallet" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:91 -msgid "Please confirm transaction in your wallet" -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:73 -msgid "Please connect a wallet" -msgstr "请连接钱包" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:47 -msgid "Please note:" -msgstr "请注意:" - -#: src/app/[lang]/sign-up/SignUp.tsx:102 -msgid "POWERED BY BTC & ETH" -msgstr "比特币 + 以太坊共同驱动" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:147 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -msgid "Preparing..." -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:272 -msgid "Privacy policy" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:131 -msgid "Protocol Fee" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/ProveStep.tsx:41 -msgid "Prove" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:116 -msgid "Provide liquidity into any AMM pool on <0>Oku DEX to earn trading fees and incentives" -msgstr "为 <0>Oku DEX 上的任何AMM池提供流动性,以赚取交易费用和激励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:114 -msgid "Provide liquidity into Oku DEX" -msgstr "为Oku DEX提供流动性" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:80 -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:49 -msgid "Quests" -msgstr "任务" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:195 -msgid "Quests Completed" -msgstr "完成的任务" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:229 -msgid "Quests Only" -msgstr "仅任务" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:26 -msgid "Read it now." -msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:36 -msgid "Read more here" -msgstr "点此了解更多" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/FusionBanner.tsx:26 -msgid "Read the official Fusion Guide on the new BOB Blog and start harvesting Spice now." -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:113 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:92 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:31 -msgid "Receive" -msgstr "接收" - -#: src/app/[lang]/wallet/components/ReceiveTokenModal/ReceiveTokenModal.tsx:44 -msgid "Receive {0}" -msgstr "接收 {0}" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:93 -msgid "Receive {ticker}" -msgstr "接收 {ticker}" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:224 -msgid "Recipient" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:72 -msgid "referral table" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:28 -msgid "Referred by" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/HybridL2Banner.tsx:22 -msgid "Released: BOB's Hybrid L2 vision paper" -msgstr "" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:95 -msgid "Remove vote" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:60 -msgid "Restake SolvBTC.BBN into Pell to secure actively validated services via proof of stake mechanism." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:67 -msgid "Restake uniBTC into Pell to secure actively validated services via proof of stake mechanism." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:56 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:64 -msgid "Restaking" -msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:131 -#: src/app/[lang]/fusion/components/Strategies/StrategyCard.tsx:92 -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:85 -msgid "Rewards" -msgstr "奖励" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:106 -msgid "Satoshi protocol points" -msgstr "Satoshi协议积分" - -#: src/components/Layout/FusionPopover.tsx:77 -msgid "Season 1 & 2 (Completed)" -msgstr "第1季和第2季(已完成)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:139 -msgid "Season 1 & 2 Total Spice (Completed):" -msgstr "第1季和第2季总Spice(已完成):" - -#: src/components/Layout/FusionPopover.tsx:88 -msgid "Season 2 Final Rank" -msgstr "第2季最终排名" - -#: src/components/Layout/FusionPopover.tsx:57 -msgid "Season 3 (Ongoing)" -msgstr "第3季(进行中)" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:127 -msgid "Season 3 Harvested Spice" -msgstr "第3季收获的Spice" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:220 -msgid "Season Three" -msgstr "第三季" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:217 -msgid "Select Bitcoin Wallet" -msgstr "" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:203 -msgid "Select EVM Wallet" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:119 -msgid "select gas token" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/ChainSelect/ChainSelect.tsx:20 -msgid "Select Network" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:172 -msgid "select network to bridge from" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:182 -msgid "select network to bridge to" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:139 -msgid "Select Strategy" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:178 -msgid "Select the wrapped Bitcoin asset and the amount that you want to bridge." -msgstr "选择你想跨链的BTC包装资产和数量。" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:121 -msgid "Select Token" -msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:87 -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroupMobile.tsx:25 -msgid "Send" -msgstr "发送" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:219 -msgid "Send {0}" -msgstr "" - -#: src/app/[lang]/wallet/components/TokenTable/ButtonGroup.tsx:88 -msgid "Send {ticker}" -msgstr "发送 {ticker}" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:203 -msgid "Share on X" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:213 -msgid "Share this link with a friend and when they sign up, you will receive 15% of their Spice harvest as a bonus, plus 7% of the Spice harvest of anyone they refer" -msgstr "与朋友分享此链接,当他们注册时,你将获得他们Spice收获的15%作为奖励,以及他们推荐的任何人的Spice收获的7%" - -#: src/components/Layout/Header.tsx:90 -msgid "Show secondary navigation" -msgstr "" - -#: src/app/[lang]/sign-up/page.tsx:14 -msgid "Sign-Up" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:110 -msgid "SolvBTC.BBN is a yield-bearing token that represents staked SolvBTC plus all future Babylon staking rewards and Solv Points." -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:112 -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:60 -#: src/components/LoginButton/LoginButton.tsx:29 -msgid "Something went wrong. Please try again later." -msgstr "" - -#: src/app/[lang]/sign-up/SignUp.tsx:72 -#: src/components/LoginButton/LoginButton.tsx:43 -#: src/components/SignUpButton/SignUpButton.tsx:29 -msgid "Something went wrong. Please try connecting your wallet again." -msgstr "" - -#: src/app/[lang]/404/NotFound.tsx:23 -msgid "Sorry, the page you are looking for doesn't exist or has been moved. Here are some helpful links:" -msgstr "抱歉,这个页面有误或已经不存在,也许这些链接可以帮助到您" - -#: src/app/[lang]/fusion/components/Leaderboard/Leaderboard.tsx:79 -msgid "Spice" -msgstr "Spice" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:47 -msgid "Spice + Bedrock Diamonds + Babylon Points" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:66 -msgid "Spice + Pell Points + Bedrock Diamond + Babylon Points" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:58 -msgid "Spice + Pell Points + Solv XP + Babylon Points" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:72 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:78 -msgid "Spice + Segment Points + Supply APR" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:90 -msgid "Spice + Segment Points + Supply APR + Bedrock Diamonds + Babylon Points" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:84 -msgid "Spice + Segment Points + Supply APR + Solv XP + Babylon Points" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:96 -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:102 -msgid "Spice + Shoebill Points + Supply APR" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:108 -msgid "Spice + Solv XP + Babylon Points" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UsedAppsModal.tsx:19 -msgid "Spice Earned Across Apps" -msgstr "已体验应用的Spice收益" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:124 -msgid "Spice Multiplier" -msgstr "Spice" - -#: src/app/[lang]/apps/components/AppsList/AppCard.tsx:118 -msgid "Spice Per Hour" -msgstr "每小时Spice" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:181 -msgid "Spice points (Lower)" -msgstr "Spice积分(较低)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:37 -msgid "Spice points (Medium)" -msgstr "Spice积分(中等)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:151 -msgid "Spice rewards (Higher)" -msgstr "Spice积分(较高)" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:103 -msgid "Spice rewards (Medium)" -msgstr "Spice积分(中等)" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:200 -#: src/app/[lang]/(bridge)/stake/page.tsx:14 -#: src/app/[lang]/(bridge)/stake/Stake.tsx:103 -#: src/components/Layout/Header.tsx:80 -#: src/components/Layout/Sidebar.tsx:55 -msgid "Stake" -msgstr "質押" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:138 -#~ msgid "Stake with" -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:39 -msgid "Staking Token" -msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:84 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:61 -msgid "Start Harvesting" -msgstr "开始收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:286 -#: src/app/[lang]/sign-up/SignUp.tsx:127 -msgid "Start Harvesting Spice" -msgstr "开始收获Spice" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:30 -msgid "Step One" -msgstr "第一步" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:33 -#~ msgid "Step One Bridge your assets to BOB to start harvesting Spice.<0/>TIP: Some assets earn more Spice than others. You can see which by clicking the “View Multipliers” button." -#~ msgstr "将你的资产跨链到BOB以开始收获Spice。<0/>提示:某些资产比其他资产赚取更多Spice。你可以通过点击\"查看倍数\"按钮来查看。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:43 -msgid "Step Two" -msgstr "第二步" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:100 -msgid "Successfully finalized transaction" -msgstr "" - -#: src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 -msgid "Successfully sent {amount} {0}" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/WithdrawStatus.tsx:62 -msgid "Successfully submitted ${0} proof" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:85 -msgid "Supply seSOLVBTCBBN into Segment to earn interest." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:91 -msgid "Supply seUNIBTC into Segment to earn interest." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:73 -msgid "Supply tBTC into Segment to earn interest." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:97 -msgid "Supply tBTC into Shoebill to earn interest." -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:81 -msgid "Supply the newly minted satUSD into a <0>lending protocol on BOB." -msgstr "将新铸造的satUSD供应到 <0>BOB上的借贷协议 。" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:79 -msgid "Supply wBTC into Segment to earn interest." -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:103 -msgid "Supply wBTC into Shoebill to earn interest." -msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:18 -msgid "Support your favourite BOB apps" -msgstr "支持你喜爱的BOB应用" - -#: src/connect-ui/component/AuthButton/AuthButton.tsx:84 -msgid "Switch to {capitalizedName}" -msgstr "" - -#: src/components/Layout/Header.tsx:106 -#: src/components/Layout/Sidebar.tsx:67 -msgid "T&Cs" -msgstr "条款与条件" - -#: src/app/[lang]/404/NotFound.tsx:35 -msgid "Take em home" -msgstr "回到主页" - -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:264 -msgid "Terms of Service" -msgstr "" - -#: src/components/Logo/Logo.tsx:47 -msgid "Testnet" -msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:31 -msgid "Thank you for your understanding and we hope to be able to serve you in a more decentralized future. The BOB L2 network itself is fully decentralized, cannot be censored and all code is open source." -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/OnrampBanner.tsx:21 -msgid "The fastest and easiest way to bridge BTC to BOB." -msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:39 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:24 -msgid "The final season" -msgstr "最终季 - 不容错过!" - -#: src/app/[lang]/sign-up/SignUp.tsx:99 -msgid "THE FIRST HYBRID L2" -msgstr "首个混合型二层" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:67 -msgid "The leaderboard resets for the new season" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:157 -msgid "The Network Fee is paid to Bitcoin miners for including your transaction in a block and confirming it on the blockchain. A higher fee increases the chances of faster confirmation, while a lower fee may delay or even prevent timely inclusion." -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:165 -msgid "The number of BOB ecosystem apps that you have harvested Spice with" -msgstr "你已经使用过的BOB生态系统应用数量" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:196 -msgid "The number of Intract and Galxe quests that you have completed" -msgstr "在Intract和Galxe上完成的任务" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:55 -#~ msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake Portal. More rewards are on the way!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:61 -msgid "The previous quest has ended. Stay tuned for more exciting quests with Intract and BOB Stake. More rewards are on the way!" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:135 -msgid "The Protocol Fee is a charge for using Gateway, our product, to facilitate the transaction." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:187 -msgid "" -"The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could\n" -"still confirm your transaction within a reasonable time." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:172 -msgid "The specified fee rate is higher than necessary and may result in overpaying. A lower fee rate could still confirm your transaction within a reasonable time." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:163 -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:184 -msgid "The specified fee rate is very low and may significantly delay the confirmation of your transaction. If the fee is too low (e.g., 1 sat/vB), your transaction could get stuck in the mempool for an extended period. For faster confirmation, consider increasing the fee rate." -msgstr "" - -#: src/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:171 -#~ msgid "" -#~ "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1\n" -#~ "hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" - -#: src/components/GatewayTransactionDetails/GatewayFeeSettingsModal.tsx:162 -#~ msgid "The specified fee rate may delay the confirmation of your transaction, possibly taking longer than 1 hour to receive your funds. For faster confirmation, consider increasing the fee rate." -#~ msgstr "" - -#: src/app/[lang]/apps/components/AppsList/AppsList.tsx:148 -msgid "There are no apps to be displayed" -msgstr "暂无可显示的应用" - -#: src/app/[lang]/bridge/components/BridgeForm/BtcBridgeForm.tsx:503 -#~ msgid "There is currently no available liquidity to onramp BTC into {0}." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:99 -msgid "There is currently no available liquidity to onramp BTC into {assetName}." -msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:23 -msgid "This is often done to comply with local laws and regulations. Website hosters must comply with regulations and may be forced to block certain countries. It seems your country is unfortunately on the list of restricted countries according to the Terms and Conditions of the hoster of this website. We are constantly working to expand our reach and provide our services to more regions." -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:140 -msgid "This is the final amount you will receive after deducting the Protocol fees from your input amount." -msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:494 -#~ msgid "This is the final amount you will stake after deducting the Protocol fees from your input amount." -#~ msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:17 -msgid "This website is not available in your location due to geoblocking. Geoblocking is a practice used by content providers to restrict access to their content based on the geographical location of the user." -msgstr "" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:41 -msgid "Time left until voting round ends" -msgstr "" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:102 -msgid "To cast your vote, please log in" -msgstr "" - -#: src/app/[lang]/(bridge)/components/BannerCarousel/XBanner.tsx:22 -#: src/app/[lang]/fusion/Fusion.tsx:123 -msgid "To stay up-to date with the BOB ecosystem follow @build_on_bob." -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayGasSwitch/GatewayGasSwitch.tsx:23 -msgid "Top up Gas" -msgstr "" - -#: src/app/[lang]/stake/components/StakeForm/BtcStakeForm.tsx:429 -#~ msgid "Top-up Gas" -#~ msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:39 -msgid "Total Assets" -msgstr "总资产" - -#: src/components/Layout/FusionPopover.tsx:81 -msgid "Total Harvest" -msgstr "总收获" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:65 -msgid "Total Referrals Earnings:" -msgstr "推荐获得的总Spice" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:54 -msgid "Total Spice Harvested" -msgstr "总收获的Spice" - -#: src/app/[lang]/sign-up/components/Auditors/Auditors.tsx:27 -msgid "Trails of Bits auditor" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Transaction submitted" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:50 -msgid "Transaction Submitted" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:108 -msgid "Transfer time" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/Barometer.tsx:67 -msgid "TVL" -msgstr "总锁仓价值(TVL)" - -#: src/components/WithdrawModal/WithdrawForm.tsx:150 -msgid "Unfortunately, is not possible to bridge to BOB using smart accounts. We are working on adding support for this in the near future, so follow us for future updates." -msgstr "很抱歉,目前智能账户还不能跨链到BOB。我们正在努力开发这项功能,请持续关注我们的更新。" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -#~ msgid "Unfortunately, Taproot (P2TR) addresses are not supported at this time. Please use a different address type." -#~ msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:49 -msgid "uniBTC represents the staked wBTC plus all future staking rewards and accrual of Babylon staking rewards and Bedrock diamonds." -msgstr "" - -#: src/app/[lang]/(bridge)/components/BridgeStatus/BridgeStep.tsx:230 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:71 -msgid "Unknown" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/Stake.tsx:106 -msgid "Unstake" -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:181 -msgid "USDT can only be withdrawn to Ethereum." -msgstr "" - -#: src/components/WithdrawModal/WithdrawForm.tsx:173 -msgid "USDT can only be withdrawn to Ethereum. When bridging to BOB, you will be prompted to sign twice: Once to bridge your assets (without USDT) to BOB and once to withdraw USDT to Ethereum" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more Spice!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:115 -#~ msgid "Use all your tickets before the countdown ends to boost your chances! New tickets will be available once the timer resets. Vote daily to increase your chances of earning more SPICE!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:163 -msgid "Use any of the <0>supported bridges." -msgstr "使用任何 <0>支持的跨链桥。" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:181 -msgid "Use Apps" -msgstr "体验应用" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:14 -msgid "Use BTC LSTs as collateral to borrow other assets" -msgstr "使用BTC LSTs作为抵押品借其他资产" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:31 -msgid "Use the deposited BTC LSTs as collateral to borrow wBTC, tBTC or FBTC." -msgstr "使用存入的BTC LSTs作为抵押品借wBTC、tBTC或FBTC。" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:96 -msgid "Use the deposited satUSD as collateral to borrow any BTC LST." -msgstr "使用存入的satUSD作为抵押品借任何BTC LST。" - -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:46 -msgid "Use your bridged assets in apps to maximise your Spice harvest.<0/>TIP: Some types of apps offer greater multipliers than others. Explore the “Hot Strategies” section to learn more." -msgstr "在应用中使用你跨链的资产以最大化你的Spice收获。<0/>提示:某些类型的应用提供更高的倍数。浏览\"热门策略\"部分以了解更多。" - -#: src/app/[lang]/apps/components/HeroBanner/HeroBanner.tsx:32 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:46 -msgid "Use your Spice total to support your favourite BOB builders. Winners will be announced each week." -msgstr "用你的Spice总数来支持你最喜爱的BOB构建者。获胜者将每周公布。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:110 -#: src/components/LoginButton/LoginButton.tsx:27 -#: src/connect-ui/component/ConnectModal/ConnectModal.tsx:137 -msgid "User rejected the request" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:23 -msgid "Username" -msgstr "" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BridgeForm.tsx:223 -msgid "Using the official bridge usually takes 7 days. For faster withdrawals we recommend using a 3rd Party bridge." -msgstr "" - -#: src/app/[lang]/wallet/Wallet.tsx:29 -msgid "View a summary of your wallet on the BOB network. DeFi positions may not be tracked." -msgstr "查看您在 BOB 网络上的钱包概况。" - -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionList.tsx:106 -msgid "View All Transactions" -msgstr "" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -msgid "View Intract" -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:154 -msgid "View Multipliers" -msgstr "查看倍数" - -#: src/app/[lang]/fusion/components/Quest/Quest.tsx:78 -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:207 -msgid "View Quests" -msgstr "查看任务" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:99 -#: src/app/[lang]/fusion/components/CommunityVoting/CommunityVoting.tsx:51 -msgid "Vote" -msgstr "投票" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:39 -msgid "Vote for maximum three projects per week" -msgstr "每周最多可以为三个项目投票" - -#: src/app/[lang]/apps/components/VotingDashboard/VotingDashboard.tsx:39 -msgid "Vote for maximum three projects per week by clicking on the flame icon." -msgstr "通过点击火焰图标,每周最多可为三个项目投票" - -#: src/app/[lang]/apps/components/VotingDashboard/UserVotingInfo.tsx:20 -msgid "Votes Left:" -msgstr "剩余投票次数:" - -#: src/app/[lang]/apps/components/SpiceChip/SpiceChip.tsx:97 -msgid "Voting limit exceeded" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:54 -msgid "Waiting for approval" -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:52 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:40 -msgid "Waiting for confirmation" -msgstr "" - -#: src/app/[lang]/wallet/page.tsx:15 -#: src/components/Layout/Header.tsx:76 -#: src/components/Layout/Sidebar.tsx:51 -#: src/connect-ui/component/ConnectWallet/ConnectWallet.tsx:60 -msgid "Wallet" -msgstr "钱包" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:81 -msgid "We will provide you with updates accordingly. You can monitor the progress on your bridge page; it will be marked as complete once the process has concluded." -msgstr "" - -#: src/app/[lang]/geoblock/Geoblock.tsx:14 -msgid "We're Sorry" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StrategyDetailsModal/StrategyDetailsModal.tsx:37 -msgid "Website" -msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:36 -#: src/app/[lang]/fusion/components/WelcomeModal/WelcomeModal.tsx:21 -msgid "Welcome to BOB Fusion" -msgstr "欢迎回到BOB Fusion" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:21 -msgid "When you vote for a project, your Spice total is added to their vote total.<0/><1/>Each week the projects with the most votes will receive a Spice bonus which they can distribute to their users." -msgstr "当你为一个项目投票时,你的Spice总数将被计入他们的得票总数。<0/><1/>每周得票最多的项目将获得Spice奖励,他们可以将这些奖励分配给用户。" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:50 -msgid "When you vote, you do not give away any of your harvest. Your Spice total is simply used to calculate the weight of your vote." -msgstr "投票时,你不会失去任何收获。你的Spice总数仅用于计算你的投票权重。" - -#: src/app/[lang]/(bridge)/bridge/Bridge.tsx:135 -#: src/app/[lang]/(bridge)/components/TransactionList/TransactionDetails.tsx:38 -msgid "Withdraw" -msgstr "" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:33 -#: src/components/WithdrawModal/WithdrawForm.tsx:161 -#: src/components/WithdrawModal/WithdrawForm.tsx:211 -msgid "Withdraw Assets" -msgstr "提取资产" - -#: src/components/WithdrawModal/WithdrawModal.tsx:26 -msgid "Withdraw Locked Assets" -msgstr "提取锁定资产" - -#: src/components/WithdrawModal/WithdrawForm.tsx:138 -msgid "Withdraw to L1 failed. Please try again." -msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/MultipliersModal.tsx:205 -msgid "Yield Assets" -msgstr "收益资产" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:47 -msgid "You" -msgstr "" - -#: src/app/[lang]/(bridge)/components/GatewayTransactionDetails/GatewayTransactionDetails.tsx:76 -msgid "You are using a BTC address type (Taproot/P2TR) which we don't support yet. Change the BTC address type to Native SegWit in your wallet to continue." -msgstr "" - -#: src/app/[lang]/apps/components/HeroBanner/VotingInfoModal.tsx:42 -msgid "You can change your votes at any time before the end of the weekly voting period" -msgstr "你可以在每周投票期结束前随时更改你的投票" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:103 -msgid "You Have 0 Tickets" -msgstr "" - -#: src/app/[lang]/nested-providers.tsx:83 -msgid "You have switched your account mid session. Simply switch back the original account and login to have access to your funds again." -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:73 -msgid "You need at least {0} Spice to participate in Lottery." -msgstr "" - -#: src/components/WithdrawAlert/WithdrawAlert.tsx:30 -msgid "You still have assets locked in Season One. Please redeem your funds" -msgstr "" - -#: src/app/[lang]/fusion/components/Strategies/Strategies.tsx:149 -msgid "You will need to actively monitor your position, especially if it has a small range." -msgstr "请密切关注你的仓位,尤其是当设定的价格范围较窄时。" - -#: src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:138 -#: src/app/[lang]/(bridge)/components/TransactionDetails/TransactionDetails.tsx:86 -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:71 -msgid "You will receive" -msgstr "" - -#: src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:195 -msgid "You will stake" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:107 -msgid "You're Ready to Play!" -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:138 -msgid "You've used all your tickets for today, new tickets will be available once the timer resets! Remember to participate in Weekly Fusion Voting to be eligible for daily tickets." -msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more Spice!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/LotterySections/LotteryModal/LotteryModal.tsx:108 -#~ msgid "You've used all your tickets for today. New tickets will be available once the timer resets. Be sure to come back and vote daily to increase your chances of earning more SPICE!" -#~ msgstr "" - -#: src/app/[lang]/fusion/components/UserInfo/UserReferralModal.tsx:53 -msgid "Your Active Referrals" -msgstr "已推荐的活跃用户" - -#: src/app/[lang]/(bridge)/components/TransactionModal/GatewayTransactionModal.tsx:55 -msgid "Your assets will be delivered once your BTC transactions receive at least 3 confirmations and the processing finishes on our L2 chain. We will provide you with updates accordingly. You can monitor the progress on your bridge page. It will be marked as complete once the process has concluded." -msgstr "" - -#: src/app/[lang]/(bridge)/components/TransactionModal/BridgeTransactionModal.tsx:78 -msgid "Your assets will be delivered shortly, with an estimated arrival time of aprox." -msgstr "" - -#: src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:34 -msgid "Your available balance may differ from your wallet balance due to network fees and available liquidity" -msgstr "" - -#: src/app/[lang]/nested-providers.tsx:80 -msgid "Your funds are safe!" -msgstr "" - -#: src/app/[lang]/fusion/components/WelcomeBackModal/WelcomeBackModal.tsx:49 -msgid "Your performance in seasons 1 & 2" -msgstr "你在第1季和第2季的表现" - -#: src/app/[lang]/fusion/components/UserInfo/UserInfo.tsx:212 -msgid "Your Referral Code" -msgstr "你的推荐码" - -#: src/components/Layout/FusionPopover.tsx:53 -msgid "Your Spice Harvest Overview" -msgstr "" From dd2743300666dbfbffa0bd3b5be2893850819adf Mon Sep 17 00:00:00 2001 From: Slava Date: Sat, 9 Nov 2024 00:20:41 +0300 Subject: [PATCH 06/13] chore: cleanup scripts --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index 67774047b..059d9eec1 100644 --- a/package.json +++ b/package.json @@ -27,9 +27,7 @@ "clean:lock": "rm ./pnpm-lock.yaml", "turbo:clean": "turbo clean && rimraf ./node_modules/.cache/turbo", "turbo:graph": "pnpm build --graph=dependency-graph.png", - "lingui:extract": "lingui extract", - "lingui:extract:evm": "pnpm run --filter bob-evm lingui:extract", - "lingui:extract:bob-pay": "pnpm run --filter bob-pay lingui:extract" + "lingui:extract": "lingui extract" }, "devDependencies": { "@lingui/cli": "^4.11.0", From 6901e0239a732ed651d42a0cf9807e8389d74587 Mon Sep 17 00:00:00 2001 From: Slava Date: Sun, 10 Nov 2024 12:14:52 +0300 Subject: [PATCH 07/13] chore: replace use effect to adjust state at render --- .../TokenButtonGroup/TokenButtonGroup.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx b/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx index 579e522ae..015f58023 100644 --- a/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx +++ b/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx @@ -3,7 +3,7 @@ import { Flex, Span, useCurrencyFormatter, useLocale } from '@gobob/ui'; import { Item } from '@react-stately/collections'; import { Currency, CurrencyAmount } from '@gobob/currency'; import { usePrices } from '@gobob/react-query'; -import { useEffect, useMemo, useState } from 'react'; +import { useMemo, useState } from 'react'; import Big from 'big.js'; import { ButtonGroup } from '../ButtonGroup'; @@ -25,12 +25,14 @@ const TokenButtonGroup = ({ isSelected, currency, balance, onSelectionChange }: const { getPrice, data: pricesData } = usePrices({ baseUrl: process.env.NEXT_PUBLIC_MARKET_DATA_API }); const [key, setKey] = useState(); + const [prevIsSelected, setPrevIsSelected] = useState(false); - useEffect(() => { - if (!isSelected) { - setKey(undefined); - } - }, [isSelected]); + if (!prevIsSelected && isSelected) setPrevIsSelected(true); + + if (prevIsSelected && !isSelected) { + setKey(undefined); + setPrevIsSelected(false); + } const amounts = useMemo(() => { if (currency.symbol === 'WBTC') { From cb62f826b17ba25e9ab97fff4cfd061d0d104731 Mon Sep 17 00:00:00 2001 From: Slava Date: Sun, 10 Nov 2024 14:01:18 +0300 Subject: [PATCH 08/13] chore: add lingui overrides for speceific app --- apps/bob-pay/lingui.config.js | 10 +++++++++- apps/evm/lingui.config.js | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/apps/bob-pay/lingui.config.js b/apps/bob-pay/lingui.config.js index dea769eaa..d9267e160 100644 --- a/apps/bob-pay/lingui.config.js +++ b/apps/bob-pay/lingui.config.js @@ -1,3 +1,11 @@ import linguiConfig from '../../lingui.config'; -export default linguiConfig; +export default config = { + ...linguiConfig, + catalogs: [ + { + path: '../../locales/{locale}', + include: ['src/', '../evm/src/'] + } + ] +}; diff --git a/apps/evm/lingui.config.js b/apps/evm/lingui.config.js index dea769eaa..1c2e10ce6 100644 --- a/apps/evm/lingui.config.js +++ b/apps/evm/lingui.config.js @@ -1,3 +1,11 @@ import linguiConfig from '../../lingui.config'; -export default linguiConfig; +export default config = { + ...linguiConfig, + catalogs: [ + { + path: '../../locales/{locale}', + include: ['src/', '../bob-pay/src/'] + } + ] +}; From 86feca7bcdc1eb5baf529c6cd4ec4066c786bb0f Mon Sep 17 00:00:00 2001 From: Slava Date: Sun, 10 Nov 2024 17:24:10 +0300 Subject: [PATCH 09/13] chore: small improvements --- .../component/ConnectModal/WalletList.tsx | 16 ++++++---------- locales/en.po | 16 ++++++++-------- locales/zh.po | 16 ++++++++-------- 3 files changed, 22 insertions(+), 26 deletions(-) diff --git a/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx b/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx index e9917beb5..3c942334b 100644 --- a/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx +++ b/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx @@ -1,6 +1,6 @@ import { SatsConnector } from '@gobob/sats-wagmi'; import { Avatar, Flex, List, ListItem, ListProps, Spinner } from '@gobob/ui'; -import { useEffect, useMemo, useState } from 'react'; +import { useMemo } from 'react'; import { Connector } from '@gobob/wagmi'; import { t } from '@lingui/macro'; import { useLingui } from '@lingui/react'; @@ -35,18 +35,14 @@ const WalletList = ({ : undefined, [pendingConnector, connectors] ); - const [hasBitkeep, setHasBitKeep] = useState(false); - const [hasOkxWallet, setHasOkxWallet] = useState(false); const { i18n } = useLingui(); - useEffect(() => { - const okxWalletInstalled = !!connectors.find((connector) => connector.id === 'com.okex.wallet'); - const bitkeepWalletInstalled = !!connectors.find((connector) => connector.id === 'com.bitget.web3'); - - setHasBitKeep(bitkeepWalletInstalled); - setHasOkxWallet(okxWalletInstalled); - }, [connectors]); + const hasBitkeep = useMemo(() => !!connectors.find((connector) => connector.id === 'com.okex.wallet'), [connectors]); + const hasOkxWallet = useMemo( + () => !!connectors.find((connector) => connector.id === 'com.bitget.web3'), + [connectors] + ); const walletListItems = useMemo(() => { const listItems = connectors.map((connector) => ( diff --git a/locales/en.po b/locales/en.po index 3945a6520..671bdb56b 100644 --- a/locales/en.po +++ b/locales/en.po @@ -99,7 +99,7 @@ msgstr "All Apps" msgid "Already harvesting?" msgstr "Already harvesting?" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:401 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 #: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 @@ -289,7 +289,7 @@ msgstr "Category" msgid "Checking Allowance" msgstr "Checking Allowance" -#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:112 msgid "choose available wallets" msgstr "choose available wallets" @@ -524,7 +524,7 @@ msgstr "Failed to connect to {0}" msgid "Failed to finalize." msgstr "Failed to finalize." -#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:216 msgid "Failed to get estimated fee" msgstr "Failed to get estimated fee" @@ -536,7 +536,7 @@ msgstr "Failed to send {amount} {0}" msgid "Failed to submit proof." msgstr "Failed to submit proof." -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:258 msgid "Failed to submit transaction" msgstr "Failed to submit transaction" @@ -1042,7 +1042,7 @@ msgstr "Receive {0}" msgid "Receive {ticker}" msgstr "Receive {ticker}" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:392 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 @@ -1154,7 +1154,7 @@ msgid "Select Token" msgstr "Select Token" #: apps/bob-pay/src/app/[lang]/send/page.tsx:14 -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:440 #: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 #: apps/bob-pay/src/components/Layout/Header.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 @@ -1308,7 +1308,7 @@ msgstr "Step Two" msgid "Successfully finalized transaction" msgstr "Successfully finalized transaction" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:206 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 msgid "Successfully sent {amount} {0}" msgstr "Successfully sent {amount} {0}" @@ -1317,7 +1317,7 @@ msgstr "Successfully sent {amount} {0}" msgid "Successfully submitted ${0} proof" msgstr "Successfully submitted ${0} proof" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:247 msgid "Successfully transfered {0} {1}" msgstr "Successfully transfered {0} {1}" diff --git a/locales/zh.po b/locales/zh.po index 16807b73c..de261ce37 100644 --- a/locales/zh.po +++ b/locales/zh.po @@ -108,7 +108,7 @@ msgstr "所有应用" msgid "Already harvesting?" msgstr "已经在收获?" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:401 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 #: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 @@ -318,7 +318,7 @@ msgstr "" msgid "Checking Allowance" msgstr "" -#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:112 msgid "choose available wallets" msgstr "" @@ -561,7 +561,7 @@ msgstr "" msgid "Failed to finalize." msgstr "" -#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:216 msgid "Failed to get estimated fee" msgstr "" @@ -573,7 +573,7 @@ msgstr "" msgid "Failed to submit proof." msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:258 msgid "Failed to submit transaction" msgstr "" @@ -1123,7 +1123,7 @@ msgstr "接收 {0}" msgid "Receive {ticker}" msgstr "接收 {ticker}" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:392 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 @@ -1235,7 +1235,7 @@ msgid "Select Token" msgstr "" #: apps/bob-pay/src/app/[lang]/send/page.tsx:14 -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:440 #: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 #: apps/bob-pay/src/components/Layout/Header.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 @@ -1397,7 +1397,7 @@ msgstr "第二步" msgid "Successfully finalized transaction" msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:206 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 msgid "Successfully sent {amount} {0}" msgstr "" @@ -1406,7 +1406,7 @@ msgstr "" msgid "Successfully submitted ${0} proof" msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:247 msgid "Successfully transfered {0} {1}" msgstr "" From 47f8fcba817c4b3f3eb59f10ea7e74fd74963944 Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 11 Nov 2024 12:06:58 +0300 Subject: [PATCH 10/13] fix: export config --- apps/bob-pay/lingui.config.js | 4 +++- apps/evm/lingui.config.js | 4 +++- locales/en.po | 14 +++++++------- locales/zh.po | 14 +++++++------- 4 files changed, 20 insertions(+), 16 deletions(-) diff --git a/apps/bob-pay/lingui.config.js b/apps/bob-pay/lingui.config.js index d9267e160..1c88c7cb0 100644 --- a/apps/bob-pay/lingui.config.js +++ b/apps/bob-pay/lingui.config.js @@ -1,6 +1,6 @@ import linguiConfig from '../../lingui.config'; -export default config = { +const config = { ...linguiConfig, catalogs: [ { @@ -9,3 +9,5 @@ export default config = { } ] }; + +export default config; diff --git a/apps/evm/lingui.config.js b/apps/evm/lingui.config.js index 1c2e10ce6..b119df21c 100644 --- a/apps/evm/lingui.config.js +++ b/apps/evm/lingui.config.js @@ -1,6 +1,6 @@ import linguiConfig from '../../lingui.config'; -export default config = { +const config = { ...linguiConfig, catalogs: [ { @@ -9,3 +9,5 @@ export default config = { } ] }; + +export default config; diff --git a/locales/en.po b/locales/en.po index 671bdb56b..7aded310a 100644 --- a/locales/en.po +++ b/locales/en.po @@ -99,7 +99,7 @@ msgstr "All Apps" msgid "Already harvesting?" msgstr "Already harvesting?" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:401 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 #: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 @@ -524,7 +524,7 @@ msgstr "Failed to connect to {0}" msgid "Failed to finalize." msgstr "Failed to finalize." -#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:216 +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 msgid "Failed to get estimated fee" msgstr "Failed to get estimated fee" @@ -536,7 +536,7 @@ msgstr "Failed to send {amount} {0}" msgid "Failed to submit proof." msgstr "Failed to submit proof." -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:258 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 msgid "Failed to submit transaction" msgstr "Failed to submit transaction" @@ -1042,7 +1042,7 @@ msgstr "Receive {0}" msgid "Receive {ticker}" msgstr "Receive {ticker}" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:392 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 @@ -1154,7 +1154,7 @@ msgid "Select Token" msgstr "Select Token" #: apps/bob-pay/src/app/[lang]/send/page.tsx:14 -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:440 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 #: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 #: apps/bob-pay/src/components/Layout/Header.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 @@ -1308,7 +1308,7 @@ msgstr "Step Two" msgid "Successfully finalized transaction" msgstr "Successfully finalized transaction" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:206 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 msgid "Successfully sent {amount} {0}" msgstr "Successfully sent {amount} {0}" @@ -1317,7 +1317,7 @@ msgstr "Successfully sent {amount} {0}" msgid "Successfully submitted ${0} proof" msgstr "Successfully submitted ${0} proof" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:247 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 msgid "Successfully transfered {0} {1}" msgstr "Successfully transfered {0} {1}" diff --git a/locales/zh.po b/locales/zh.po index de261ce37..d9676cbb4 100644 --- a/locales/zh.po +++ b/locales/zh.po @@ -108,7 +108,7 @@ msgstr "所有应用" msgid "Already harvesting?" msgstr "已经在收获?" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:401 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:376 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:538 #: apps/evm/src/app/[lang]/(bridge)/components/BtcTokenInput/BtcTokenInput.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:233 @@ -561,7 +561,7 @@ msgstr "" msgid "Failed to finalize." msgstr "" -#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:216 +#: apps/evm/src/app/[lang]/(bridge)/hooks/useGateway.ts:236 msgid "Failed to get estimated fee" msgstr "" @@ -573,7 +573,7 @@ msgstr "" msgid "Failed to submit proof." msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:258 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:322 msgid "Failed to submit transaction" msgstr "" @@ -1123,7 +1123,7 @@ msgstr "接收 {0}" msgid "Receive {ticker}" msgstr "接收 {ticker}" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:392 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:367 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BobBridgeForm.tsx:548 #: apps/evm/src/app/[lang]/(bridge)/bridge/components/BridgeForm/BtcBridgeForm.tsx:135 #: apps/evm/src/app/[lang]/(bridge)/stake/components/StakeForm/BtcStakeForm.tsx:189 @@ -1235,7 +1235,7 @@ msgid "Select Token" msgstr "" #: apps/bob-pay/src/app/[lang]/send/page.tsx:14 -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:440 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:415 #: apps/bob-pay/src/app/[lang]/wallet/components/Hero/Hero.tsx:24 #: apps/bob-pay/src/components/Layout/Header.tsx:38 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:268 @@ -1397,7 +1397,7 @@ msgstr "第二步" msgid "Successfully finalized transaction" msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:206 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:197 #: apps/evm/src/app/[lang]/wallet/components/SendTokenModal/SendTokenModal.tsx:150 msgid "Successfully sent {amount} {0}" msgstr "" @@ -1406,7 +1406,7 @@ msgstr "" msgid "Successfully submitted ${0} proof" msgstr "" -#: apps/bob-pay/src/app/[lang]/send/Send.tsx:247 +#: apps/bob-pay/src/app/[lang]/send/Send.tsx:227 msgid "Successfully transfered {0} {1}" msgstr "" From 0b0e261dca208346c36749795ef9cb2178675e00 Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 11 Nov 2024 12:53:45 +0300 Subject: [PATCH 11/13] chore: restore wallet list --- .../component/ConnectModal/WalletList.tsx | 16 ++++++++++------ locales/en.po | 2 +- locales/zh.po | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx b/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx index 3c942334b..e9917beb5 100644 --- a/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx +++ b/apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx @@ -1,6 +1,6 @@ import { SatsConnector } from '@gobob/sats-wagmi'; import { Avatar, Flex, List, ListItem, ListProps, Spinner } from '@gobob/ui'; -import { useMemo } from 'react'; +import { useEffect, useMemo, useState } from 'react'; import { Connector } from '@gobob/wagmi'; import { t } from '@lingui/macro'; import { useLingui } from '@lingui/react'; @@ -35,14 +35,18 @@ const WalletList = ({ : undefined, [pendingConnector, connectors] ); + const [hasBitkeep, setHasBitKeep] = useState(false); + const [hasOkxWallet, setHasOkxWallet] = useState(false); const { i18n } = useLingui(); - const hasBitkeep = useMemo(() => !!connectors.find((connector) => connector.id === 'com.okex.wallet'), [connectors]); - const hasOkxWallet = useMemo( - () => !!connectors.find((connector) => connector.id === 'com.bitget.web3'), - [connectors] - ); + useEffect(() => { + const okxWalletInstalled = !!connectors.find((connector) => connector.id === 'com.okex.wallet'); + const bitkeepWalletInstalled = !!connectors.find((connector) => connector.id === 'com.bitget.web3'); + + setHasBitKeep(bitkeepWalletInstalled); + setHasOkxWallet(okxWalletInstalled); + }, [connectors]); const walletListItems = useMemo(() => { const listItems = connectors.map((connector) => ( diff --git a/locales/en.po b/locales/en.po index 7aded310a..3945a6520 100644 --- a/locales/en.po +++ b/locales/en.po @@ -289,7 +289,7 @@ msgstr "Category" msgid "Checking Allowance" msgstr "Checking Allowance" -#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:112 +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 msgid "choose available wallets" msgstr "choose available wallets" diff --git a/locales/zh.po b/locales/zh.po index d9676cbb4..16807b73c 100644 --- a/locales/zh.po +++ b/locales/zh.po @@ -318,7 +318,7 @@ msgstr "" msgid "Checking Allowance" msgstr "" -#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:112 +#: apps/evm/src/connect-ui/component/ConnectModal/WalletList.tsx:116 msgid "choose available wallets" msgstr "" From 0cbf0ca1ed97bc5084878173882c5f4e96ed3cd6 Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 11 Nov 2024 16:35:18 +0300 Subject: [PATCH 12/13] chore: git add locales folder --- .husky/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 7b57e79d6..e80239f98 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -6,4 +6,4 @@ if [ -t 2 ]; then exec >/dev/tty 2>&1 fi -pnpm lingui:extract && git add locales/en.po locales/zh.po && pnpm lint-staged -c .lintstagedrc && pnpm files:check +pnpm lingui:extract && git add locales/* && pnpm lint-staged -c .lintstagedrc && pnpm files:check From d15ed0dc8d18a06e6938889df7e5925decd18754 Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 18 Nov 2024 12:06:41 +0300 Subject: [PATCH 13/13] chore: code improvement --- .../components/TokenButtonGroup/TokenButtonGroup.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx b/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx index 015f58023..eefda257a 100644 --- a/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx +++ b/apps/bob-pay/src/app/[lang]/send/components/TokenButtonGroup/TokenButtonGroup.tsx @@ -25,13 +25,14 @@ const TokenButtonGroup = ({ isSelected, currency, balance, onSelectionChange }: const { getPrice, data: pricesData } = usePrices({ baseUrl: process.env.NEXT_PUBLIC_MARKET_DATA_API }); const [key, setKey] = useState(); - const [prevIsSelected, setPrevIsSelected] = useState(false); + const [prevIsSelected, setPrevIsSelected] = useState(isSelected); - if (!prevIsSelected && isSelected) setPrevIsSelected(true); + if (isSelected !== prevIsSelected) { + setPrevIsSelected(isSelected); - if (prevIsSelected && !isSelected) { - setKey(undefined); - setPrevIsSelected(false); + if (!isSelected) { + setKey(undefined); + } } const amounts = useMemo(() => {