@luxexchange/lx 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.depcheckrc +26 -0
- package/.eslintignore +4 -0
- package/.eslintrc.js +79 -0
- package/LLM.md +145 -0
- package/babel.config.js +39 -0
- package/env.d.ts +15 -0
- package/eslint_rules/i18n.js +44 -0
- package/eslint_rules/no-redux-modals.js +54 -0
- package/jest-package-mocks.js +38 -0
- package/openapitools.json +7 -0
- package/package.json +170 -0
- package/project.json +76 -0
- package/src/abis/argent-wallet-contract.json +61 -0
- package/src/abis/eip_2612.json +20 -0
- package/src/abis/eip_2612.ts +20 -0
- package/src/abis/ens-public-resolver.json +816 -0
- package/src/abis/ens-registrar.json +422 -0
- package/src/abis/erc1155.json +335 -0
- package/src/abis/erc20.json +108 -0
- package/src/abis/erc20_bytes32.json +30 -0
- package/src/abis/erc721.json +352 -0
- package/src/abis/fee-on-transfer-detector.json +133 -0
- package/src/abis/governor-bravo.json +1046 -0
- package/src/abis/lux-nft-airdrop-claim.json +218 -0
- package/src/abis/permit2.json +87 -0
- package/src/abis/permit2.ts +73 -0
- package/src/abis/weth.json +279 -0
- package/src/components/AmountInput/AmountInput.test.tsx +141 -0
- package/src/components/AmountInput/AmountInput.tsx +157 -0
- package/src/components/AmountInput/useTextWidth.tsx +90 -0
- package/src/components/AmountInput/utils/numericInputEnforcer.ts +6 -0
- package/src/components/AmountInput/utils/parseValue.ts +57 -0
- package/src/components/AmountInput/utils/replaceSeparators.ts +22 -0
- package/src/components/AnimatedNumber/AnimatedNumber.native.tsx +475 -0
- package/src/components/AnimatedNumber/AnimatedNumber.tsx +53 -0
- package/src/components/AnimatedNumber/AnimatedNumber.web.tsx +141 -0
- package/src/components/AnimatedNumber/TopAndBottomGradient.native.tsx +32 -0
- package/src/components/AnimatedNumber/TopAndBottomGradient.tsx +5 -0
- package/src/components/AnimatedNumber/TopAndBottomGradient.web.tsx +23 -0
- package/src/components/BaseCard/BaseCard.test.tsx +271 -0
- package/src/components/BaseCard/BaseCard.tsx +239 -0
- package/src/components/BaseCard/__snapshots__/BaseCard.test.tsx.snap +196 -0
- package/src/components/BatchedTransactions/CarouselControls.tsx +85 -0
- package/src/components/BridgedAsset/BridgedAssetModal.tsx +239 -0
- package/src/components/BridgedAsset/BridgedAssetTDPSection.tsx +49 -0
- package/src/components/BridgedAsset/WormholeModal.tsx +173 -0
- package/src/components/ConfirmSwapModal/ProgressIndicator.tsx +232 -0
- package/src/components/ConfirmSwapModal/steps/Approve.tsx +73 -0
- package/src/components/ConfirmSwapModal/steps/LP.tsx +60 -0
- package/src/components/ConfirmSwapModal/steps/Permit.tsx +85 -0
- package/src/components/ConfirmSwapModal/steps/SpinningBorderIcon.native.tsx +54 -0
- package/src/components/ConfirmSwapModal/steps/SpinningBorderIcon.tsx +15 -0
- package/src/components/ConfirmSwapModal/steps/SpinningBorderIcon.web.tsx +59 -0
- package/src/components/ConfirmSwapModal/steps/StepRowSkeleton.tsx +224 -0
- package/src/components/ConfirmSwapModal/steps/Swap.tsx +78 -0
- package/src/components/ConfirmSwapModal/steps/SwapTXPlanStepRow.tsx +175 -0
- package/src/components/ConfirmSwapModal/steps/Wrap.tsx +41 -0
- package/src/components/ConfirmSwapModal/types.ts +8 -0
- package/src/components/ConfirmSwapModal/useSecondsUntilDeadline.tsx +48 -0
- package/src/components/CurrencyInputPanel/AmountInputPresets/AmountInputPresets.tsx +51 -0
- package/src/components/CurrencyInputPanel/AmountInputPresets/PresetAmountButton.tsx +216 -0
- package/src/components/CurrencyInputPanel/AmountInputPresets/types.ts +8 -0
- package/src/components/CurrencyInputPanel/AmountInputPresets/utils.ts +8 -0
- package/src/components/CurrencyInputPanel/CurrencyInputPanel.tsx +234 -0
- package/src/components/CurrencyInputPanel/CurrencyInputPanelBalance.tsx +43 -0
- package/src/components/CurrencyInputPanel/CurrencyInputPanelHeader.tsx +87 -0
- package/src/components/CurrencyInputPanel/CurrencyInputPanelInput.tsx +242 -0
- package/src/components/CurrencyInputPanel/CurrencyInputPanelValue.tsx +100 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/DefaultTokenOptions.tsx +34 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenIcon.tsx +94 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/TokenOptionItem/TokenOptionItem.native.tsx +17 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/TokenOptionItem/TokenOptionItem.tsx +6 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/TokenOptionItem/TokenOptionItem.web.tsx +35 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/TokenOptionItem/types.ts +9 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/TokenOptions.tsx +58 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/TokenOptions/useSendSelectCurrencyEvent.tsx +37 -0
- package/src/components/CurrencyInputPanel/DefaultTokenOptions/constants.ts +19 -0
- package/src/components/CurrencyInputPanel/SelectTokenButton.tsx +86 -0
- package/src/components/CurrencyInputPanel/TokenRate.tsx +49 -0
- package/src/components/CurrencyInputPanel/hooks/useCurrencyInputFontSize.ts +53 -0
- package/src/components/CurrencyInputPanel/hooks/useIndicativeQuoteTextDisplay.ts +56 -0
- package/src/components/CurrencyInputPanel/hooks/useInputFocusSync/types.ts +11 -0
- package/src/components/CurrencyInputPanel/hooks/useInputFocusSync/useInputFocusSync.native.ts +36 -0
- package/src/components/CurrencyInputPanel/hooks/useInputFocusSync/useInputFocusSync.ts +6 -0
- package/src/components/CurrencyInputPanel/hooks/useInputFocusSync/useInputFocusSync.web.ts +6 -0
- package/src/components/CurrencyInputPanel/hooks/useRefetchAnimationStyle.native.ts +42 -0
- package/src/components/CurrencyInputPanel/hooks/useRefetchAnimationStyle.ts +14 -0
- package/src/components/CurrencyInputPanel/hooks/useRefetchAnimationStyle.web.ts +68 -0
- package/src/components/CurrencyInputPanel/types.tsx +61 -0
- package/src/components/CurrencyLogo/CurrencyLogo.test.tsx +50 -0
- package/src/components/CurrencyLogo/CurrencyLogo.tsx +38 -0
- package/src/components/CurrencyLogo/LogoWithTxStatus.test.tsx +291 -0
- package/src/components/CurrencyLogo/LogoWithTxStatus.tsx +282 -0
- package/src/components/CurrencyLogo/NetworkLogo.test.tsx +54 -0
- package/src/components/CurrencyLogo/NetworkLogo.tsx +89 -0
- package/src/components/CurrencyLogo/NetworkLogoWarning.tsx +44 -0
- package/src/components/CurrencyLogo/SplitLogo.test.tsx +120 -0
- package/src/components/CurrencyLogo/SplitLogo.tsx +127 -0
- package/src/components/CurrencyLogo/TokenLogo.test.tsx +146 -0
- package/src/components/CurrencyLogo/TokenLogo.tsx +164 -0
- package/src/components/CurrencyLogo/__snapshots__/CurrencyLogo.test.tsx.snap +90 -0
- package/src/components/CurrencyLogo/__snapshots__/LogoWithTxStatus.test.tsx.snap +130 -0
- package/src/components/CurrencyLogo/__snapshots__/NetworkLogo.test.tsx.snap +69 -0
- package/src/components/CurrencyLogo/__snapshots__/SplitLogo.test.tsx.snap +91 -0
- package/src/components/CurrencyLogo/__snapshots__/TokenLogo.test.tsx.snap +58 -0
- package/src/components/ExpandoRow/ExpandoRow.test.tsx +75 -0
- package/src/components/ExpandoRow/ExpandoRow.tsx +40 -0
- package/src/components/ExpandoRow/__snapshots__/ExpandoRow.test.tsx.snap +127 -0
- package/src/components/IconCloud/CloudItem.tsx +252 -0
- package/src/components/IconCloud/IconCloud.tsx +118 -0
- package/src/components/IconCloud/utils.ts +21 -0
- package/src/components/InlineWarningCard/InlineWarningCard.tsx +133 -0
- package/src/components/MicroConfirmation.tsx +25 -0
- package/src/components/MultichainTokenDetails/MultichainAddressList.test.tsx +90 -0
- package/src/components/MultichainTokenDetails/MultichainAddressList.tsx +82 -0
- package/src/components/MultichainTokenDetails/MultichainExplorerList.test.tsx +46 -0
- package/src/components/MultichainTokenDetails/MultichainExplorerList.tsx +63 -0
- package/src/components/MultichainTokenDetails/MultichainOptionRow.test.tsx +41 -0
- package/src/components/MultichainTokenDetails/MultichainOptionRow.tsx +87 -0
- package/src/components/MultichainTokenDetails/MultichainScrollableList.tsx +98 -0
- package/src/components/MultichainTokenDetails/__snapshots__/MultichainExplorerList.test.tsx.snap +150 -0
- package/src/components/MultichainTokenDetails/__snapshots__/MultichainOptionRow.test.tsx.snap +49 -0
- package/src/components/MultichainTokenDetails/useOrderedMultichainEntries.test.ts +53 -0
- package/src/components/MultichainTokenDetails/useOrderedMultichainEntries.ts +22 -0
- package/src/components/ReceiveQRCode/ReceiveQRCode.tsx +189 -0
- package/src/components/ReceiveQRCode/constants.ts +5 -0
- package/src/components/RelativeChange/RelativeChange.test.tsx +44 -0
- package/src/components/RelativeChange/RelativeChange.tsx +72 -0
- package/src/components/RelativeChange/__snapshots__/RelativeChange.test.tsx.snap +110 -0
- package/src/components/RoutingDiagram/RoutingDiagram.tsx +264 -0
- package/src/components/RoutingDiagram/RoutingLabel.tsx +42 -0
- package/src/components/TokenSelector/CrosschainSwapsPromoBanner.tsx +51 -0
- package/src/components/TokenSelector/TokenSelector.tsx +423 -0
- package/src/components/TokenSelector/TokenSelectorList.tsx +267 -0
- package/src/components/TokenSelector/UnsupportedChainedActionsBanner.tsx +68 -0
- package/src/components/TokenSelector/constants.ts +3 -0
- package/src/components/TokenSelector/filter.test.ts +98 -0
- package/src/components/TokenSelector/filter.ts +131 -0
- package/src/components/TokenSelector/hooks/useAddToSearchHistory.ts +81 -0
- package/src/components/TokenSelector/hooks/useAllCommonBaseCurrencies.ts +126 -0
- package/src/components/TokenSelector/hooks/useCommonTokensOptions.ts +75 -0
- package/src/components/TokenSelector/hooks/useCommonTokensOptionsWithFallback.ts +66 -0
- package/src/components/TokenSelector/hooks/useCurrencies.ts +39 -0
- package/src/components/TokenSelector/hooks/useCurrencyInfosToTokenOptions.ts +94 -0
- package/src/components/TokenSelector/hooks/useFavoriteCurrencies.ts +32 -0
- package/src/components/TokenSelector/hooks/useFavoriteTokensOptions.ts +57 -0
- package/src/components/TokenSelector/hooks/useLuxTokensOptions.ts +97 -0
- package/src/components/TokenSelector/hooks/usePortfolioBalancesForAddressById.ts +29 -0
- package/src/components/TokenSelector/hooks/usePortfolioTokenOptions.ts +74 -0
- package/src/components/TokenSelector/hooks/useRecentlySearchedTokens.ts +44 -0
- package/src/components/TokenSelector/hooks/useTokenSectionsForEmptySearch.tsx +42 -0
- package/src/components/TokenSelector/hooks/useTokenSectionsForSearchResults.ts +155 -0
- package/src/components/TokenSelector/hooks/useTrendingTokensCurrencyInfos.ts +30 -0
- package/src/components/TokenSelector/hooks/useTrendingTokensOptions.ts +47 -0
- package/src/components/TokenSelector/hooks.test.ts +1170 -0
- package/src/components/TokenSelector/items/tokens/SuggestedToken.tsx +61 -0
- package/src/components/TokenSelector/items/tokens/TokenCard.tsx +79 -0
- package/src/components/TokenSelector/lists/HorizontalTokenList/HorizontalTokenList.native.tsx +63 -0
- package/src/components/TokenSelector/lists/HorizontalTokenList/HorizontalTokenList.tsx +18 -0
- package/src/components/TokenSelector/lists/HorizontalTokenList/HorizontalTokenList.web.tsx +74 -0
- package/src/components/TokenSelector/lists/TokenSelectorEmptySearchList.tsx +47 -0
- package/src/components/TokenSelector/lists/TokenSelectorSearchResultsList.tsx +79 -0
- package/src/components/TokenSelector/lists/TokenSelectorSendList.tsx +149 -0
- package/src/components/TokenSelector/lists/TokenSelectorSwapList.tsx +224 -0
- package/src/components/TokenSelector/types.ts +30 -0
- package/src/components/TokenSelector/utils.test.tsx +46 -0
- package/src/components/TokenSelector/utils.tsx +147 -0
- package/src/components/TransactionDetailsTooltip.tsx +151 -0
- package/src/components/ViewGestureHandler/ViewGestureHandler.native.tsx +6 -0
- package/src/components/ViewGestureHandler/ViewGestureHandler.tsx +6 -0
- package/src/components/ViewGestureHandler/ViewGestureHandler.web.tsx +5 -0
- package/src/components/WarningMessage/WarningMessage.tsx +33 -0
- package/src/components/accounts/AddressDisplay.tsx +251 -0
- package/src/components/accounts/DisplayNameText.test.tsx +34 -0
- package/src/components/accounts/DisplayNameText.tsx +44 -0
- package/src/components/accounts/__snapshots__/DisplayNameText.test.tsx.snap +103 -0
- package/src/components/activity/ActivityListEmptyState.tsx +43 -0
- package/src/components/activity/details/InfoRow.tsx +18 -0
- package/src/components/activity/details/TransactionDetailsContent.tsx +83 -0
- package/src/components/activity/details/TransactionDetailsHeader.tsx +72 -0
- package/src/components/activity/details/TransactionDetailsHeaderLogo.tsx +313 -0
- package/src/components/activity/details/TransactionDetailsInfoRows.tsx +422 -0
- package/src/components/activity/details/TransactionDetailsModal.test.tsx +168 -0
- package/src/components/activity/details/TransactionDetailsModal.tsx +65 -0
- package/src/components/activity/details/TransactionDetailsOverview.tsx +151 -0
- package/src/components/activity/details/TransactionParticipantDisplay.tsx +18 -0
- package/src/components/activity/details/TransactionParticipantRow.tsx +72 -0
- package/src/components/activity/details/__snapshots__/TransactionDetailsModal.test.tsx.snap +385 -0
- package/src/components/activity/details/plan/PlanDetailsView.tsx +204 -0
- package/src/components/activity/details/plan/PlanStepItem.tsx +236 -0
- package/src/components/activity/details/plan/ResumePlanButton.tsx +59 -0
- package/src/components/activity/details/transactions/ApproveTransactionDetails.tsx +77 -0
- package/src/components/activity/details/transactions/AuctionTransactionDetails.tsx +48 -0
- package/src/components/activity/details/transactions/BridgeTransactionDetails.tsx +53 -0
- package/src/components/activity/details/transactions/LiquidityTransactionDetails.tsx +100 -0
- package/src/components/activity/details/transactions/NftTransactionDetails.test.tsx +58 -0
- package/src/components/activity/details/transactions/NftTransactionDetails.tsx +103 -0
- package/src/components/activity/details/transactions/OffRampPendingSupportCard.tsx +31 -0
- package/src/components/activity/details/transactions/OffRampTransactionDetails.tsx +42 -0
- package/src/components/activity/details/transactions/OnRampTransactionDetails.tsx +61 -0
- package/src/components/activity/details/transactions/PlanTransactionDetails.tsx +118 -0
- package/src/components/activity/details/transactions/SwapTransactionDetails.test.tsx +89 -0
- package/src/components/activity/details/transactions/SwapTransactionDetails.tsx +89 -0
- package/src/components/activity/details/transactions/TransferTransactionDetails.test.tsx +113 -0
- package/src/components/activity/details/transactions/TransferTransactionDetails.tsx +118 -0
- package/src/components/activity/details/transactions/WrapTransactionDetails.tsx +31 -0
- package/src/components/activity/details/transactions/__snapshots__/NftTransactionDetails.test.tsx.snap +53 -0
- package/src/components/activity/details/transactions/__snapshots__/SwapTransactionDetails.test.tsx.snap +85 -0
- package/src/components/activity/details/transactions/__snapshots__/TransferTransactionDetails.test.tsx.snap +28 -0
- package/src/components/activity/details/transactions/utilityComponents.tsx +115 -0
- package/src/components/activity/details/types.ts +54 -0
- package/src/components/activity/general/TransactionSummaryTitle.tsx +41 -0
- package/src/components/activity/generateActivityItemRenderer.ts +115 -0
- package/src/components/activity/hooks/useFormattedCurrencyAmountAndUSDValue.ts +50 -0
- package/src/components/activity/hooks/useFormattedTime.ts +34 -0
- package/src/components/activity/hooks/useOnRetrySwap.ts +27 -0
- package/src/components/activity/hooks/useTokenDetailsNavigation.ts +25 -0
- package/src/components/activity/summaries/ApproveSummaryItem.tsx +62 -0
- package/src/components/activity/summaries/BridgeSummaryItem.tsx +84 -0
- package/src/components/activity/summaries/LiquiditySummaryItem.tsx +119 -0
- package/src/components/activity/summaries/NFTApproveSummaryItem.tsx +24 -0
- package/src/components/activity/summaries/NFTMintSummaryItem.tsx +24 -0
- package/src/components/activity/summaries/NFTSummaryItem.tsx +49 -0
- package/src/components/activity/summaries/NFTTradeSummaryItem.tsx +20 -0
- package/src/components/activity/summaries/OffRampTransferSummaryItem.tsx +49 -0
- package/src/components/activity/summaries/OnRampTransferSummaryItem.tsx +99 -0
- package/src/components/activity/summaries/PlanSummaryItem.tsx +97 -0
- package/src/components/activity/summaries/ReceiveSummaryItem.tsx +25 -0
- package/src/components/activity/summaries/SendSummaryItem.tsx +25 -0
- package/src/components/activity/summaries/SwapSummaryItem.tsx +84 -0
- package/src/components/activity/summaries/TransactionSummaryLayout.tsx +194 -0
- package/src/components/activity/summaries/TransferTokenSummaryItem.tsx +152 -0
- package/src/components/activity/summaries/UnknownSummaryItem.tsx +58 -0
- package/src/components/activity/summaries/WCSummaryItem.tsx +36 -0
- package/src/components/activity/summaries/WithdrawSummaryItem.tsx +71 -0
- package/src/components/activity/summaries/WrapSummaryItem.tsx +68 -0
- package/src/components/activity/types.ts +37 -0
- package/src/components/activity/utils.ts +86 -0
- package/src/components/appearance/ThemeToggle.tsx +51 -0
- package/src/components/badge/Badge.tsx +47 -0
- package/src/components/banners/ExcludedNetworkBanner.tsx +41 -0
- package/src/components/banners/InformationBanner.tsx +29 -0
- package/src/components/banners/LuxWrapped2025Banner/LuxWrapped2025Banner.native.tsx +85 -0
- package/src/components/banners/LuxWrapped2025Banner/LuxWrapped2025Banner.tsx +6 -0
- package/src/components/banners/LuxWrapped2025Banner/LuxWrapped2025Banner.web.tsx +182 -0
- package/src/components/banners/LuxWrapped2025Banner/types.ts +5 -0
- package/src/components/banners/LuxWrapped2025Card/LuxWrapped2025Card.native.tsx +69 -0
- package/src/components/banners/LuxWrapped2025Card/LuxWrapped2025Card.tsx +6 -0
- package/src/components/banners/LuxWrapped2025Card/LuxWrapped2025Card.web.tsx +104 -0
- package/src/components/banners/LuxWrapped2025Card/types.ts +3 -0
- package/src/components/banners/TestnetModeBanner.tsx +52 -0
- package/src/components/banners/shared/SharedSnowflakeComponents.native.tsx +198 -0
- package/src/components/banners/shared/SharedSnowflakeComponents.tsx +52 -0
- package/src/components/banners/shared/SharedSnowflakeComponents.web.tsx +124 -0
- package/src/components/banners/shared/utils.ts +5 -0
- package/src/components/buttons/PasteButton.test.tsx +18 -0
- package/src/components/buttons/PasteButton.tsx +62 -0
- package/src/components/buttons/__snapshots__/PasteButton.test.tsx.snap +83 -0
- package/src/components/cards/image.tsx +32 -0
- package/src/components/chains/BlockExplorerIcon.tsx +26 -0
- package/src/components/charts/utils.ts +42 -0
- package/src/components/dapps/DappIconPlaceholder.tsx +27 -0
- package/src/components/dialog/Dialog.native.tsx +122 -0
- package/src/components/dialog/Dialog.test.tsx +246 -0
- package/src/components/dialog/Dialog.tsx +11 -0
- package/src/components/dialog/Dialog.web.tsx +138 -0
- package/src/components/dialog/DialogButtons.tsx +60 -0
- package/src/components/dialog/DialogContent.tsx +81 -0
- package/src/components/dialog/DialogProps.tsx +46 -0
- package/src/components/dialog/GetHelpButtonUI.tsx +33 -0
- package/src/components/dialog/GetHelpHeader.native.tsx +22 -0
- package/src/components/dialog/GetHelpHeader.tsx +16 -0
- package/src/components/dialog/GetHelpHeader.web.tsx +26 -0
- package/src/components/dialog/GetHelpHeaderContent.tsx +54 -0
- package/src/components/dialog/hooks/useDialogVisibility.test.ts +296 -0
- package/src/components/dialog/hooks/useDialogVisibility.ts +131 -0
- package/src/components/dropdowns/ActionSheetDropdown.test.tsx +124 -0
- package/src/components/dropdowns/ActionSheetDropdown.tsx +468 -0
- package/src/components/dropdowns/__snapshots__/ActionSheetDropdown.test.tsx.snap +25 -0
- package/src/components/gas/NetworkCostTooltip.tsx +79 -0
- package/src/components/gas/NetworkFee.test.tsx +36 -0
- package/src/components/gas/NetworkFee.tsx +122 -0
- package/src/components/gas/NetworkFeeWarning.tsx +145 -0
- package/src/components/gas/__snapshots__/NetworkFee.test.tsx.snap +251 -0
- package/src/components/gating/CacheConfig.tsx +28 -0
- package/src/components/gating/DynamicConfigDropdown.tsx +98 -0
- package/src/components/gating/GatingButton.tsx +11 -0
- package/src/components/gating/GatingOverrides.tsx +262 -0
- package/src/components/gating/Rows.tsx +103 -0
- package/src/components/gating/dynamicConfigOverrides.tsx +75 -0
- package/src/components/input/TextInput.tsx +43 -0
- package/src/components/lists/NoResultsFound.tsx +19 -0
- package/src/components/lists/OnchainItemList/OnchainItemList.native.tsx +102 -0
- package/src/components/lists/OnchainItemList/OnchainItemList.tsx +39 -0
- package/src/components/lists/OnchainItemList/OnchainItemList.web.tsx +348 -0
- package/src/components/lists/OnchainItemList/processSectionsToRows.test.tsx +181 -0
- package/src/components/lists/OnchainItemList/processSectionsToRows.ts +57 -0
- package/src/components/lists/OnchainItemList/types.ts +31 -0
- package/src/components/lists/SectionHeader.tsx +137 -0
- package/src/components/lists/SelectorBaseList.tsx +131 -0
- package/src/components/lists/items/OptionItem.tsx +161 -0
- package/src/components/lists/items/nfts/NFTCollectionOptionItem.tsx +38 -0
- package/src/components/lists/items/nfts/useNftSearchResultsToNftCollectionOptions.tsx +43 -0
- package/src/components/lists/items/pools/PoolOptionItem.tsx +100 -0
- package/src/components/lists/items/pools/PoolOptionItemContextMenu.tsx +116 -0
- package/src/components/lists/items/pools/usePoolSearchResultsToPoolOptions.tsx +60 -0
- package/src/components/lists/items/pools/usePoolStatsToPoolOptions.tsx +107 -0
- package/src/components/lists/items/tokens/TokenOptionItem.tsx +338 -0
- package/src/components/lists/items/tokens/TokenOptionItemContextMenu.tsx +274 -0
- package/src/components/lists/items/types.ts +74 -0
- package/src/components/lists/items/wallets/ENSAddressOptionItem.tsx +62 -0
- package/src/components/lists/items/wallets/UnitagOptionItem.tsx +39 -0
- package/src/components/lists/items/wallets/WalletBaseOptionItem.tsx +28 -0
- package/src/components/lists/items/wallets/WalletByAddressOptionItem.tsx +55 -0
- package/src/components/lists/items/wallets/WalletOptionItemContextMenu.tsx +56 -0
- package/src/components/lists/items/wallets/useFavoriteWalletOptions.tsx +21 -0
- package/src/components/lists/items/wallets/utils.test.ts +19 -0
- package/src/components/lists/items/wallets/utils.ts +16 -0
- package/src/components/lists/utils.tsx +43 -0
- package/src/components/logos/PoweredByBlockaid.tsx +33 -0
- package/src/components/menus/ContextMenu.native.tsx +338 -0
- package/src/components/menus/ContextMenu.tsx +66 -0
- package/src/components/menus/ContextMenu.web.test.tsx +133 -0
- package/src/components/menus/ContextMenu.web.tsx +174 -0
- package/src/components/menus/ContextMenuContent.tsx +100 -0
- package/src/components/menus/ContextMenuV2.native.tsx +338 -0
- package/src/components/menus/ContextMenuV2.tsx +66 -0
- package/src/components/menus/ContextMenuV2.web.test.tsx +133 -0
- package/src/components/menus/ContextMenuV2.web.tsx +184 -0
- package/src/components/menus/__snapshots__/ContextMenu.web.test.tsx.snap +34 -0
- package/src/components/menus/hooks/useContextMenuTracking.ts +51 -0
- package/src/components/menus/types.ts +5 -0
- package/src/components/misc/ActionCard.tsx +84 -0
- package/src/components/misc/GenericHeader.tsx +63 -0
- package/src/components/misc/IndicativeLoadingWrapper.tsx +14 -0
- package/src/components/misc/Scrollbar.native.tsx +59 -0
- package/src/components/misc/Scrollbar.tsx +12 -0
- package/src/components/misc/Scrollbar.web.tsx +99 -0
- package/src/components/modals/ActionSheetModal.tsx +94 -0
- package/src/components/modals/BottomSheetContext.tsx +52 -0
- package/src/components/modals/HandleBar.native.tsx +41 -0
- package/src/components/modals/HandleBar.tsx +15 -0
- package/src/components/modals/HandleBar.web.tsx +6 -0
- package/src/components/modals/InfoLinkModal.tsx +97 -0
- package/src/components/modals/Modal.native.tsx +449 -0
- package/src/components/modals/Modal.tsx +26 -0
- package/src/components/modals/Modal.web.tsx +119 -0
- package/src/components/modals/ModalProps.tsx +60 -0
- package/src/components/modals/PaginatedModals.tsx +66 -0
- package/src/components/modals/ScrollLock.native.tsx +13 -0
- package/src/components/modals/ScrollLock.tsx +13 -0
- package/src/components/modals/ScrollLock.web.tsx +53 -0
- package/src/components/modals/WarningModal/WarningInfo.tsx +102 -0
- package/src/components/modals/WarningModal/WarningModal.tsx +295 -0
- package/src/components/modals/WarningModal/getAlertColor.ts +42 -0
- package/src/components/modals/WarningModal/types.ts +83 -0
- package/src/components/modals/modalConstants.tsx +31 -0
- package/src/components/modals/useBottomSheetSafeKeyboard.native.tsx +43 -0
- package/src/components/modals/useBottomSheetSafeKeyboard.tsx +9 -0
- package/src/components/modals/useBottomSheetSafeKeyboard.web.tsx +6 -0
- package/src/components/network/NetworkFilter.test.tsx +31 -0
- package/src/components/network/NetworkFilter.tsx +75 -0
- package/src/components/network/NetworkOption.tsx +71 -0
- package/src/components/network/NetworkPile/NetworkPile.test.tsx +98 -0
- package/src/components/network/NetworkPile/NetworkPile.tsx +130 -0
- package/src/components/network/NetworkPile/NetworkPileLayouts.tsx +159 -0
- package/src/components/network/NetworkPile/__snapshots__/NetworkPile.test.tsx.snap +984 -0
- package/src/components/network/NetworkPill.test.tsx +20 -0
- package/src/components/network/NetworkPill.tsx +42 -0
- package/src/components/network/SupportedNetworkLogosModal.tsx +100 -0
- package/src/components/network/__snapshots__/NetworkFilter.test.tsx.snap +67 -0
- package/src/components/network/__snapshots__/NetworkPill.test.tsx.snap +76 -0
- package/src/components/network/hooks.tsx +35 -0
- package/src/components/nfts/NFTTransfer.tsx +20 -0
- package/src/components/nfts/NFTViewer.tsx +106 -0
- package/src/components/nfts/NftView.tsx +63 -0
- package/src/components/nfts/NftViewWithContextMenu.tsx +64 -0
- package/src/components/nfts/NftsList.native.tsx +199 -0
- package/src/components/nfts/NftsList.tsx +62 -0
- package/src/components/nfts/NftsList.web.tsx +330 -0
- package/src/components/nfts/NftsListEmptyState.tsx +43 -0
- package/src/components/nfts/NftsListHeader.tsx +111 -0
- package/src/components/nfts/ShowNFTModal.tsx +56 -0
- package/src/components/nfts/constants.ts +4 -0
- package/src/components/nfts/hooks/useNftListRenderData.ts +100 -0
- package/src/components/nfts/types.ts +16 -0
- package/src/components/notifications/ModalNotification.tsx +115 -0
- package/src/components/notifications/ModalTemplate.tsx +309 -0
- package/src/components/notifications/NotificationToast.native.tsx +109 -0
- package/src/components/notifications/NotificationToast.tsx +12 -0
- package/src/components/notifications/NotificationToast.web.tsx +78 -0
- package/src/components/notifications/NotificationToastContent.tsx +197 -0
- package/src/components/notifications/iconUtils.ts +10 -0
- package/src/components/notifications/notifications/ChangeAssetVisibilityNotification.tsx +26 -0
- package/src/components/notifications/notifications/CopiedNotification.tsx +47 -0
- package/src/components/notifications/notifications/SuccessNotification.tsx +11 -0
- package/src/components/pill/NewTag.tsx +39 -0
- package/src/components/pill/Pill.test.tsx +13 -0
- package/src/components/pill/Pill.tsx +54 -0
- package/src/components/pill/PillMultiToggle.tsx +121 -0
- package/src/components/pill/__snapshots__/Pill.test.tsx.snap +55 -0
- package/src/components/portfolio/EmptyTokensList.tsx +49 -0
- package/src/components/portfolio/HiddenTokensRow.tsx +33 -0
- package/src/components/portfolio/PortfolioEmptyState.tsx +201 -0
- package/src/components/portfolio/TokenBalanceItem.tsx +176 -0
- package/src/components/portfolio/TokenBalanceItemContextMenu.native.tsx +147 -0
- package/src/components/portfolio/TokenBalanceItemContextMenu.tsx +21 -0
- package/src/components/portfolio/TokenBalanceItemContextMenu.web.tsx +74 -0
- package/src/components/portfolio/TokenBalanceListWeb.tsx +276 -0
- package/src/components/reporting/ReportModal.tsx +128 -0
- package/src/components/reporting/ReportPoolDataModal.tsx +105 -0
- package/src/components/reporting/ReportTokenDataModal.tsx +101 -0
- package/src/components/reporting/ReportTokenIssueModal.tsx +132 -0
- package/src/components/reporting/input.tsx +28 -0
- package/src/components/text/LearnMoreLink.test.tsx +22 -0
- package/src/components/text/LearnMoreLink.tsx +51 -0
- package/src/components/text/__snapshots__/LearnMoreLink.test.tsx.snap +29 -0
- package/src/components/tokens/TokensListEmptyState.tsx +43 -0
- package/src/components/tooltip/InfoTooltip.native.tsx +7 -0
- package/src/components/tooltip/InfoTooltip.tsx +7 -0
- package/src/components/tooltip/InfoTooltip.web.tsx +78 -0
- package/src/components/tooltip/InfoTooltipProps.ts +16 -0
- package/src/components/transactions/requests/ContentRow.tsx +30 -0
- package/src/components/warnings/WarningIcon.tsx +41 -0
- package/src/components/warnings/utils.ts +82 -0
- package/src/config.ts +3 -0
- package/src/constants/addresses.ts +43 -0
- package/src/constants/misc.ts +14 -0
- package/src/constants/pools.ts +3 -0
- package/src/constants/routing.ts +372 -0
- package/src/constants/tokens.ts +693 -0
- package/src/constants/transactions.ts +13 -0
- package/src/constants/urls.ts +248 -0
- package/src/constants/web3.ts +28 -0
- package/src/contexts/LuxContext.tsx +210 -0
- package/src/contexts/UrlContext.native.tsx +36 -0
- package/src/contexts/UrlContext.tsx +21 -0
- package/src/contexts/UrlContext.web.tsx +55 -0
- package/src/data/apiClients/SharedPersistQueryClientProvider.tsx +24 -0
- package/src/data/apiClients/blockaidApi/BlockaidApiClient.ts +14 -0
- package/src/data/apiClients/constants.ts +1 -0
- package/src/data/apiClients/createLuxFetchClient.ts +33 -0
- package/src/data/apiClients/createPersister.native.ts +30 -0
- package/src/data/apiClients/createPersister.test.ts +154 -0
- package/src/data/apiClients/createPersister.ts +6 -0
- package/src/data/apiClients/createPersister.web.ts +35 -0
- package/src/data/apiClients/dataApi/DataApiClient.ts +11 -0
- package/src/data/apiClients/dataApiService/dataApiQueries.ts +30 -0
- package/src/data/apiClients/dataApiService/listTopPools.ts +39 -0
- package/src/data/apiClients/dataApiService/listTopTokens.ts +39 -0
- package/src/data/apiClients/forApi/ForApiClient.ts +47 -0
- package/src/data/apiClients/jupiterApi/JupiterFetchClient.ts +14 -0
- package/src/data/apiClients/liquidityService/AuctionMutationClient.ts +10 -0
- package/src/data/apiClients/liquidityService/LiquidityServiceClient.ts +10 -0
- package/src/data/apiClients/liquidityService/base.ts +19 -0
- package/src/data/apiClients/liquidityService/liquidityQueries.ts +224 -0
- package/src/data/apiClients/luxApi/LuxApiClient.ts +32 -0
- package/src/data/apiClients/luxApi/useGasFeeQuery.ts +66 -0
- package/src/data/apiClients/luxApi/useTrmScreenQuery.ts +18 -0
- package/src/data/apiClients/sharedDehydrateOptions.ts +28 -0
- package/src/data/apiClients/tradingApi/LuxGatewayClient.ts +293 -0
- package/src/data/apiClients/tradingApi/TradingApiClient.test.ts +586 -0
- package/src/data/apiClients/tradingApi/TradingApiClient.ts +227 -0
- package/src/data/apiClients/tradingApi/TradingApiSessionClient.ts +73 -0
- package/src/data/apiClients/tradingApi/dex/client.ts +195 -0
- package/src/data/apiClients/tradingApi/dex/hooks.ts +403 -0
- package/src/data/apiClients/tradingApi/dex/index.ts +9 -0
- package/src/data/apiClients/tradingApi/dex/types.ts +334 -0
- package/src/data/apiClients/tradingApi/useCheckApprovalQuery.ts +28 -0
- package/src/data/apiClients/tradingApi/useTradingApiIndicativeQuoteQuery.ts +70 -0
- package/src/data/apiClients/tradingApi/useTradingApiQuoteQuery.ts +40 -0
- package/src/data/apiClients/tradingApi/useTradingApiSwapQuery.ts +69 -0
- package/src/data/apiClients/tradingApi/useTradingApiSwappableTokensQuery.ts +91 -0
- package/src/data/apiClients/tradingApi/useWalletCheckDelegationQuery.ts +36 -0
- package/src/data/apiClients/tradingApi/useWalletEncode7702Query.ts +32 -0
- package/src/data/apiClients/tradingApi/utils/getTradeSettingsDeadline.ts +7 -0
- package/src/data/apiClients/tradingApi/utils/tradingApiSwappableTokenToCurrencyInfo.ts +44 -0
- package/src/data/apiClients/unitagsApi/UnitagsApiClient.ts +21 -0
- package/src/data/apiClients/unitagsApi/useResetUnitagsQueries.ts +19 -0
- package/src/data/apiClients/unitagsApi/useUnitagsAddressQuery.ts +51 -0
- package/src/data/apiClients/unitagsApi/useUnitagsClaimEligibilityQuery.ts +28 -0
- package/src/data/apiClients/unitagsApi/useUnitagsUsernameQuery.ts +22 -0
- package/src/data/balances/hooks/useBalances.ts +31 -0
- package/src/data/balances/hooks/useCrossChainBalances.ts +59 -0
- package/src/data/balances/utils.test.ts +66 -0
- package/src/data/balances/utils.tsx +79 -0
- package/src/data/cache.ts +167 -0
- package/src/data/gchain/client.ts +764 -0
- package/src/data/gchain/hooks.ts +368 -0
- package/src/data/gchain/index.ts +124 -0
- package/src/data/gchain/useLuxBalance.ts +101 -0
- package/src/data/getVersionHeader.native.ts +5 -0
- package/src/data/getVersionHeader.ts +5 -0
- package/src/data/getVersionHeader.web.ts +10 -0
- package/src/data/graphql/lux-data-api/fragments.ts +67 -0
- package/src/data/links.ts +147 -0
- package/src/data/rest/auctions/AuctionServiceClient.ts +8 -0
- package/src/data/rest/auctions/auctionQueries.ts +183 -0
- package/src/data/rest/auctions/base.ts +5 -0
- package/src/data/rest/auctions/queryTypes.ts +16 -0
- package/src/data/rest/auctions/useExitBidAndClaimTokensMutation.ts +61 -0
- package/src/data/rest/auctions/useExitBidPositionMutation.ts +53 -0
- package/src/data/rest/auctions/useSubmitBidMutation.ts +41 -0
- package/src/data/rest/auctions/useVerifyWallet.ts +120 -0
- package/src/data/rest/base.ts +45 -0
- package/src/data/rest/buildAccountAddressesByPlatform.test.ts +202 -0
- package/src/data/rest/buildAccountAddressesByPlatform.ts +49 -0
- package/src/data/rest/conversionTracking/constants.ts +136 -0
- package/src/data/rest/conversionTracking/tracking.test.ts +34 -0
- package/src/data/rest/conversionTracking/tracking.ts +99 -0
- package/src/data/rest/conversionTracking/types.ts +29 -0
- package/src/data/rest/conversionTracking/useConversionProxy.ts +23 -0
- package/src/data/rest/conversionTracking/useConversionTracking.ts +171 -0
- package/src/data/rest/conversionTracking/utils.ts +81 -0
- package/src/data/rest/embeddedWallet/requests.ts +70 -0
- package/src/data/rest/exploreStats.ts +26 -0
- package/src/data/rest/getPools.ts +14 -0
- package/src/data/rest/getPoolsRewards.ts +14 -0
- package/src/data/rest/getPortfolio.test.ts +192 -0
- package/src/data/rest/getPortfolio.ts +336 -0
- package/src/data/rest/getPortfolioChart.ts +64 -0
- package/src/data/rest/getPosition.ts +13 -0
- package/src/data/rest/getPositions.ts +113 -0
- package/src/data/rest/listTransactions.ts +145 -0
- package/src/data/rest/luxGateway.ts +295 -0
- package/src/data/rest/portfolioBalanceOverrides.ts +243 -0
- package/src/data/rest/protocolStats.ts +19 -0
- package/src/data/rest/searchTokensAndPools.ts +146 -0
- package/src/data/rest/tokenRankings.ts +62 -0
- package/src/data/rest/transformPortfolioToMultichain.test.ts +362 -0
- package/src/data/rest/transformPortfolioToMultichain.ts +82 -0
- package/src/data/solanaConnection/getSolanaParsedTokenAccountsByOwnerQueryOptions.ts +97 -0
- package/src/declarations.d.ts +6 -0
- package/src/dialog-preferences/DialogPreferencesService.ts +47 -0
- package/src/dialog-preferences/implementations/createDialogPreferencesService.test.ts +178 -0
- package/src/dialog-preferences/implementations/createDialogPreferencesService.ts +64 -0
- package/src/dialog-preferences/index.ts +8 -0
- package/src/dialog-preferences/types.ts +5 -0
- package/src/domains/repositories.ts +13 -0
- package/src/domains/services.ts +21 -0
- package/src/entities/assets.ts +25 -0
- package/src/extension/messagePassing/messageChannels.ts +40 -0
- package/src/extension/messagePassing/messageTypes.ts +8 -0
- package/src/extension/messagePassing/platform.ts +16 -0
- package/src/extension/messagePassing/types/requests.ts +40 -0
- package/src/extension/useIsChromeWindowFocused.ts +58 -0
- package/src/features/accounts/AccountIcon.tsx +92 -0
- package/src/features/accounts/reportBalancesForAnalytics.ts +60 -0
- package/src/features/accounts/store/hooks.ts +32 -0
- package/src/features/accounts/store/types/Account.ts +15 -0
- package/src/features/accounts/store/types/AccountsState.ts +65 -0
- package/src/features/accounts/store/types/Connector.ts +94 -0
- package/src/features/accounts/store/types/README.md +81 -0
- package/src/features/accounts/store/types/Session.ts +60 -0
- package/src/features/accounts/store/types/Wallet.ts +36 -0
- package/src/features/accounts/store/utils/accounts.ts +15 -0
- package/src/features/accounts/store/utils/addresses.ts +27 -0
- package/src/features/accounts/store/utils/connection.ts +40 -0
- package/src/features/accounts/store/utils/createAccountsStoreContextProvider.tsx +84 -0
- package/src/features/accounts/store/utils/createUseAccountsStore.ts +25 -0
- package/src/features/accounts/store/utils/flexibleInput.ts +13 -0
- package/src/features/accounts/store/utils/wallets.test.ts +305 -0
- package/src/features/accounts/store/utils/wallets.ts +85 -0
- package/src/features/accounts/types.ts +35 -0
- package/src/features/accounts/useOnchainDisplayName.tsx +76 -0
- package/src/features/activity/extract/conversion.test.ts +680 -0
- package/src/features/activity/extract/conversionRest.test.ts +1287 -0
- package/src/features/activity/extract/extractDEXOrderDetails.ts +95 -0
- package/src/features/activity/extract/extractFiatOnRampTransactionDetails.ts +175 -0
- package/src/features/activity/extract/extractOnChainTransactionDetails.ts +144 -0
- package/src/features/activity/extract/extractPlanDetails.ts +191 -0
- package/src/features/activity/extract/extractPlanResponseDetails.ts +188 -0
- package/src/features/activity/extract/extractPlanUtils.ts +174 -0
- package/src/features/activity/extract/extractRestDEXOrderDetails.ts +102 -0
- package/src/features/activity/extract/extractRestFiatOnRampDetails.ts +86 -0
- package/src/features/activity/extract/extractTransactionDetails.ts +127 -0
- package/src/features/activity/extract/statusMappers.ts +129 -0
- package/src/features/activity/formatTransactionsByDate.ts +105 -0
- package/src/features/activity/hooks/useActivityData.test.tsx +559 -0
- package/src/features/activity/hooks/useActivityData.tsx +165 -0
- package/src/features/activity/hooks/useFormattedTransactionDataForActivity.test.ts +331 -0
- package/src/features/activity/hooks/useFormattedTransactionDataForActivity.ts +300 -0
- package/src/features/activity/hooks/useMergeLocalAndRemoteTransactions.test.ts +563 -0
- package/src/features/activity/hooks/useMergeLocalAndRemoteTransactions.ts +292 -0
- package/src/features/activity/hooks/useNetworkFee.ts +35 -0
- package/src/features/activity/hooks/useOpenLimitOrders.ts +47 -0
- package/src/features/activity/hooks/useSyncRemotePlans.ts +59 -0
- package/src/features/activity/hooks/useTransactionActions.tsx +389 -0
- package/src/features/activity/parse/parseApproveTransaction.ts +71 -0
- package/src/features/activity/parse/parseAuctionTransaction.ts +72 -0
- package/src/features/activity/parse/parseBridgingTransaction.ts +117 -0
- package/src/features/activity/parse/parseExecuteTransaction.ts +112 -0
- package/src/features/activity/parse/parseLiquidityTransaction.ts +144 -0
- package/src/features/activity/parse/parseMintTransaction.ts +118 -0
- package/src/features/activity/parse/parseOnRampTransaction.ts +118 -0
- package/src/features/activity/parse/parseReceiveTransaction.ts +163 -0
- package/src/features/activity/parse/parseSendTransaction.ts +145 -0
- package/src/features/activity/parse/parseTradeTransaction.ts +406 -0
- package/src/features/activity/parse/parseUnknownTransaction.ts +32 -0
- package/src/features/activity/parseRestResponse.ts +184 -0
- package/src/features/activity/utils/extractDappInfo.ts +38 -0
- package/src/features/activity/utils/getTransactionSummaryTitle.ts +318 -0
- package/src/features/activity/utils/remote.ts +136 -0
- package/src/features/activity/utils/swapInfo.ts +49 -0
- package/src/features/address/avatar.ts +35 -0
- package/src/features/address/color.ts +35 -0
- package/src/features/address/types.ts +8 -0
- package/src/features/address/useIsSmartContractAddress.tsx +74 -0
- package/src/features/address/utils.ts +12 -0
- package/src/features/appearance/hooks.tsx +85 -0
- package/src/features/appearance/slice.ts +30 -0
- package/src/features/appearance/types.ts +1 -0
- package/src/features/appearance/useColorScheme.native.ts +1 -0
- package/src/features/appearance/useColorScheme.ts +6 -0
- package/src/features/appearance/useColorScheme.web.ts +87 -0
- package/src/features/auth/types.ts +1 -0
- package/src/features/behaviorHistory/selectors.ts +30 -0
- package/src/features/behaviorHistory/slice.ts +161 -0
- package/src/features/bridging/constants.ts +84 -0
- package/src/features/bridging/hooks/chains.ts +59 -0
- package/src/features/bridging/hooks/tokens.ts +224 -0
- package/src/features/capabilities/caip25/constants.ts +13 -0
- package/src/features/capabilities/caip25/types.ts +70 -0
- package/src/features/capabilities/caip25/utils.ts +17 -0
- package/src/features/chains/chainInfo.test.ts +117 -0
- package/src/features/chains/chainInfo.ts +141 -0
- package/src/features/chains/evm/defaults.ts +9 -0
- package/src/features/chains/evm/info/arbitrum.ts +93 -0
- package/src/features/chains/evm/info/avalanche.ts +91 -0
- package/src/features/chains/evm/info/base.ts +91 -0
- package/src/features/chains/evm/info/blast.ts +82 -0
- package/src/features/chains/evm/info/bnb.ts +81 -0
- package/src/features/chains/evm/info/celo.ts +86 -0
- package/src/features/chains/evm/info/hanzo.ts +93 -0
- package/src/features/chains/evm/info/lux.ts +254 -0
- package/src/features/chains/evm/info/mainnet.ts +203 -0
- package/src/features/chains/evm/info/monad.ts +90 -0
- package/src/features/chains/evm/info/optimism.ts +88 -0
- package/src/features/chains/evm/info/pars.ts +93 -0
- package/src/features/chains/evm/info/polygon.ts +91 -0
- package/src/features/chains/evm/info/soneium.ts +91 -0
- package/src/features/chains/evm/info/spc.ts +93 -0
- package/src/features/chains/evm/info/unichain.ts +146 -0
- package/src/features/chains/evm/info/worldchain.ts +87 -0
- package/src/features/chains/evm/info/xlayer.ts +81 -0
- package/src/features/chains/evm/info/zksync.ts +76 -0
- package/src/features/chains/evm/info/zoo.ts +170 -0
- package/src/features/chains/evm/info/zora.ts +76 -0
- package/src/features/chains/evm/rpc.ts +84 -0
- package/src/features/chains/evm/tokens.test.ts +220 -0
- package/src/features/chains/evm/tokens.ts +23 -0
- package/src/features/chains/gasDefaults.ts +37 -0
- package/src/features/chains/hooks/useEnabledChains.ts +55 -0
- package/src/features/chains/hooks/useFeatureFlaggedChainIds.ts +47 -0
- package/src/features/chains/hooks/useNewChainIds.ts +18 -0
- package/src/features/chains/hooks/useOrderedChainIds.ts +19 -0
- package/src/features/chains/hooks/useSupportedChainId.ts +35 -0
- package/src/features/chains/logos.tsx +65 -0
- package/src/features/chains/svm/defaults.ts +3 -0
- package/src/features/chains/svm/info/solana.ts +79 -0
- package/src/features/chains/types.ts +171 -0
- package/src/features/chains/utils.test.ts +224 -0
- package/src/features/chains/utils.ts +365 -0
- package/src/features/dappRequests/types.ts +87 -0
- package/src/features/dappRequests/utils.test.ts +81 -0
- package/src/features/dappRequests/utils.ts +36 -0
- package/src/features/dataApi/balances/balances.ts +369 -0
- package/src/features/dataApi/balances/balancesRest.test.ts +183 -0
- package/src/features/dataApi/balances/balancesRest.ts +366 -0
- package/src/features/dataApi/balances/toPortfolioMultichainBalance.test.ts +263 -0
- package/src/features/dataApi/balances/toPortfolioMultichainBalance.ts +142 -0
- package/src/features/dataApi/balances/utils.test.ts +64 -0
- package/src/features/dataApi/balances/utils.ts +44 -0
- package/src/features/dataApi/listTransactions/listTransactions.test.ts +182 -0
- package/src/features/dataApi/listTransactions/listTransactions.ts +174 -0
- package/src/features/dataApi/searchPools.ts +58 -0
- package/src/features/dataApi/searchTokens.ts +73 -0
- package/src/features/dataApi/tokenDetails/useTokenDetailsData.ts +94 -0
- package/src/features/dataApi/tokenDetails/useTokenSpotPriceCentralized.ts +9 -0
- package/src/features/dataApi/tokenDetails/useTokenSpotPriceWrapper.ts +13 -0
- package/src/features/dataApi/tokenProjects/tokenProjects.test.tsx +44 -0
- package/src/features/dataApi/tokenProjects/tokenProjects.ts +34 -0
- package/src/features/dataApi/tokenProjects/utils/tokenProjectToCurrencyInfos.test.ts +59 -0
- package/src/features/dataApi/tokenProjects/utils/tokenProjectToCurrencyInfos.ts +52 -0
- package/src/features/dataApi/types.ts +103 -0
- package/src/features/dataApi/utils/buildCurrency.test.ts +66 -0
- package/src/features/dataApi/utils/buildCurrency.ts +117 -0
- package/src/features/dataApi/utils/currencyIdToContractInput.test.ts +39 -0
- package/src/features/dataApi/utils/currencyIdToContractInput.ts +23 -0
- package/src/features/dataApi/utils/getCurrencySafetyInfo.ts +145 -0
- package/src/features/dataApi/utils/gqlTokenToCurrencyInfo.test.ts +39 -0
- package/src/features/dataApi/utils/gqlTokenToCurrencyInfo.ts +44 -0
- package/src/features/dataApi/utils/usePersistedError.test.ts +80 -0
- package/src/features/dataApi/utils/usePersistedError.ts +19 -0
- package/src/features/ens/api.ts +127 -0
- package/src/features/ens/constants.ts +1 -0
- package/src/features/ens/useENS.ts +61 -0
- package/src/features/favorites/selectors.ts +20 -0
- package/src/features/favorites/slice.test.ts +52 -0
- package/src/features/favorites/slice.ts +87 -0
- package/src/features/favorites/useSelectHasTokenFavorited.ts +12 -0
- package/src/features/favorites/useToggleFavoriteCallback.tsx +34 -0
- package/src/features/favorites/useToggleWatchedWalletCallback.ts +26 -0
- package/src/features/fiatCurrency/constants.ts +53 -0
- package/src/features/fiatCurrency/conversion.ts +172 -0
- package/src/features/fiatCurrency/hooks/useFormatChartFiatDelta.ts +31 -0
- package/src/features/fiatCurrency/hooks.ts +167 -0
- package/src/features/fiatCurrency/priceChart/formatters/shared/types.ts +37 -0
- package/src/features/fiatCurrency/priceChart/formatters/shared/utils.ts +93 -0
- package/src/features/fiatCurrency/priceChart/formatters/stablecoinFormatter.ts +84 -0
- package/src/features/fiatCurrency/priceChart/formatters/standardFormatter.ts +88 -0
- package/src/features/fiatCurrency/priceChart/priceChartConversion.test.ts +1203 -0
- package/src/features/fiatCurrency/priceChart/priceChartConversion.ts +42 -0
- package/src/features/fiatOnRamp/EdgeFade/EdgeFade.native.tsx +21 -0
- package/src/features/fiatOnRamp/EdgeFade/EdgeFade.test.tsx +62 -0
- package/src/features/fiatOnRamp/EdgeFade/EdgeFade.tsx +6 -0
- package/src/features/fiatOnRamp/EdgeFade/EdgeFade.web.tsx +21 -0
- package/src/features/fiatOnRamp/EdgeFade/__snapshots__/EdgeFade.test.tsx.snap +116 -0
- package/src/features/fiatOnRamp/FORQuoteItem.tsx +111 -0
- package/src/features/fiatOnRamp/FiatOnRampConnectingView.native.tsx +84 -0
- package/src/features/fiatOnRamp/FiatOnRampConnectingView.tsx +11 -0
- package/src/features/fiatOnRamp/FiatOnRampConnectingView.web.tsx +56 -0
- package/src/features/fiatOnRamp/FiatOnRampCountryPicker.tsx +58 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/PaymentMethodFilter.native.tsx +41 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/PaymentMethodFilter.test.tsx +165 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/PaymentMethodFilter.tsx +6 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/PaymentMethodFilter.web.tsx +51 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/__snapshots__/PaymentMethodFilter.test.tsx.snap +243 -0
- package/src/features/fiatOnRamp/PaymentMethodFilter/utils.tsx +160 -0
- package/src/features/fiatOnRamp/SelectTokenButton.tsx +77 -0
- package/src/features/fiatOnRamp/TokenSelectorBalanceDisplay.tsx +72 -0
- package/src/features/fiatOnRamp/UnsupportedTokenModal.tsx +45 -0
- package/src/features/fiatOnRamp/api.ts +7 -0
- package/src/features/fiatOnRamp/constants.ts +56 -0
- package/src/features/fiatOnRamp/hooks/useFiatOnRampQueries.ts +324 -0
- package/src/features/fiatOnRamp/hooks.ts +408 -0
- package/src/features/fiatOnRamp/types.ts +139 -0
- package/src/features/fiatOnRamp/useCexTransferProviders.ts +17 -0
- package/src/features/fiatOnRamp/utils.test.ts +483 -0
- package/src/features/fiatOnRamp/utils.ts +227 -0
- package/src/features/forceUpgrade/hooks/useForceUpgradeStatus.ts +9 -0
- package/src/features/forceUpgrade/hooks/useForceUpgradeTranslations.ts +14 -0
- package/src/features/gas/adjustGasFee.ts +144 -0
- package/src/features/gas/hooks/useCancellationGasFeeInfo.test.ts +170 -0
- package/src/features/gas/hooks/useCancellationGasFeeInfo.ts +154 -0
- package/src/features/gas/hooks/useMaxAmountSpend.test.ts +220 -0
- package/src/features/gas/hooks/useMaxAmountSpend.ts +113 -0
- package/src/features/gas/hooks/usePlanCancellationGasFeeInfo.ts +142 -0
- package/src/features/gas/hooks.ts +323 -0
- package/src/features/gas/utils/cancel.test.ts +239 -0
- package/src/features/gas/utils/cancel.ts +198 -0
- package/src/features/gas/utils.test.ts +74 -0
- package/src/features/gas/utils.ts +289 -0
- package/src/features/gating/StatsigProviderWrapper.tsx +71 -0
- package/src/features/gating/statsigBaseConfig.ts +10 -0
- package/src/features/gating/typeGuards.ts +23 -0
- package/src/features/gating/useSyncStatsigUserIdentifiers.ts +70 -0
- package/src/features/language/LocalizationContext.tsx +58 -0
- package/src/features/language/constants.ts +359 -0
- package/src/features/language/formatter.ts +76 -0
- package/src/features/language/hooks.tsx +304 -0
- package/src/features/language/localizedDayjs.ts +106 -0
- package/src/features/language/navigatorLocale.ts +49 -0
- package/src/features/language/utils.ts +8 -0
- package/src/features/nfts/constants.ts +5 -0
- package/src/features/nfts/hooks/useGroupNftsByVisibility.ts +58 -0
- package/src/features/nfts/hooks/useNFT.ts +31 -0
- package/src/features/nfts/hooks/useNavigateToNftExplorerLink.ts +7 -0
- package/src/features/nfts/hooks/useNftContextMenuItems.tsx +266 -0
- package/src/features/nfts/types.ts +22 -0
- package/src/features/nfts/utils.test.ts +257 -0
- package/src/features/nfts/utils.ts +128 -0
- package/src/features/notifications/constants.ts +20 -0
- package/src/features/notifications/hooks/useNotificationLifecycle.ts +81 -0
- package/src/features/notifications/slice/hooks.ts +18 -0
- package/src/features/notifications/slice/selectors.ts +46 -0
- package/src/features/notifications/slice/slice.ts +82 -0
- package/src/features/notifications/slice/types.ts +267 -0
- package/src/features/passkey/PasskeyManagementModal.tsx +84 -0
- package/src/features/passkey/PasskeysHelpModal.tsx +130 -0
- package/src/features/passkey/constants.ts +1 -0
- package/src/features/passkey/embeddedWallet.ts +431 -0
- package/src/features/passkey/hooks/useEmbeddedWalletBaseUrl.ts +12 -0
- package/src/features/passkey/hooks/useGetPasskeyAuthStatus.ts +25 -0
- package/src/features/passkey/passkey.native.ts +9 -0
- package/src/features/passkey/passkey.ts +9 -0
- package/src/features/passkey/passkey.web.ts +20 -0
- package/src/features/passkey/utils.native.ts +3 -0
- package/src/features/passkey/utils.ts +5 -0
- package/src/features/passkey/utils.web.ts +28 -0
- package/src/features/platforms/types/Platform.ts +4 -0
- package/src/features/platforms/types/PlatformSpecificAddress.ts +11 -0
- package/src/features/platforms/utils/addresses.ts +35 -0
- package/src/features/platforms/utils/chains.ts +21 -0
- package/src/features/portfolio/PortfolioBalance/PortfolioBalance.tsx +96 -0
- package/src/features/portfolio/TokenBalanceListContext.tsx +169 -0
- package/src/features/portfolio/api.ts +256 -0
- package/src/features/portfolio/balances/hooks/useTokenContextMenuOptions.ts +299 -0
- package/src/features/portfolio/portfolioUpdates/constants.ts +3 -0
- package/src/features/portfolio/portfolioUpdates/fetchOnChainBalances.test.ts +197 -0
- package/src/features/portfolio/portfolioUpdates/fetchOnChainBalances.ts +249 -0
- package/src/features/portfolio/portfolioUpdates/getCurrenciesWithExpectedUpdates.ts +82 -0
- package/src/features/portfolio/portfolioUpdates/getInstantTokenBalanceUpdateApolloLink.ts +343 -0
- package/src/features/portfolio/portfolioUpdates/refetchGQLQueriesViaOnchainOverrideVariantSaga.ts +278 -0
- package/src/features/portfolio/portfolioUpdates/refetchQueriesSaga.ts +15 -0
- package/src/features/portfolio/portfolioUpdates/rest/fetchOnChainBalancesRest.test.ts +326 -0
- package/src/features/portfolio/portfolioUpdates/rest/fetchOnChainBalancesRest.ts +338 -0
- package/src/features/portfolio/portfolioUpdates/rest/refetchRestQueriesViaOnchainOverrideVariantSaga.test.ts +322 -0
- package/src/features/portfolio/portfolioUpdates/rest/refetchRestQueriesViaOnchainOverrideVariantSaga.ts +308 -0
- package/src/features/portfolio/slice/selectors.ts +18 -0
- package/src/features/portfolio/slice/slice.test.ts +183 -0
- package/src/features/portfolio/slice/slice.ts +115 -0
- package/src/features/portfolio/types.ts +9 -0
- package/src/features/prices/TokenPriceContext.tsx +62 -0
- package/src/features/providers/FlashbotsCommon.ts +117 -0
- package/src/features/providers/FlashbotsRpcClient.test.ts +336 -0
- package/src/features/providers/FlashbotsRpcClient.ts +173 -0
- package/src/features/providers/FlashbotsRpcProvider.test.ts +90 -0
- package/src/features/providers/FlashbotsRpcProvider.ts +149 -0
- package/src/features/providers/createEthersProvider.ts +46 -0
- package/src/features/providers/createViemClient.ts +81 -0
- package/src/features/providers/getSolanaConnection.ts +8 -0
- package/src/features/providers/observability/InstrumentedJsonRpcProvider.ts +52 -0
- package/src/features/providers/observability/createObservableTransport.ts +44 -0
- package/src/features/providers/observability/extractProviderName.ts +43 -0
- package/src/features/providers/observability/rpcObserver.ts +73 -0
- package/src/features/providers/rpcUrlSelector.ts +81 -0
- package/src/features/providers/webForNudgeProvider.tsx +52 -0
- package/src/features/reporting/reports.ts +196 -0
- package/src/features/repositories.ts +28 -0
- package/src/features/search/ClearRecentSearchesButton.tsx +24 -0
- package/src/features/search/SearchHistoryResult.ts +95 -0
- package/src/features/search/SearchModal/SearchModalList.tsx +341 -0
- package/src/features/search/SearchModal/SearchModalNoQueryList.tsx +70 -0
- package/src/features/search/SearchModal/SearchModalResultsList.tsx +255 -0
- package/src/features/search/SearchModal/analytics/SearchContext.tsx +18 -0
- package/src/features/search/SearchModal/analytics/analytics.test.ts +228 -0
- package/src/features/search/SearchModal/analytics/analytics.ts +122 -0
- package/src/features/search/SearchModal/constants.ts +4 -0
- package/src/features/search/SearchModal/hooks/useFilterCallbacks.ts +70 -0
- package/src/features/search/SearchModal/hooks/useRecentlySearchedOptions.tsx +166 -0
- package/src/features/search/SearchModal/hooks/useSectionsForNoQuerySearch.tsx +159 -0
- package/src/features/search/SearchModal/hooks/useWalletSearchResults.tsx +169 -0
- package/src/features/search/SearchModal/types.ts +10 -0
- package/src/features/search/SearchTextInput.tsx +257 -0
- package/src/features/search/searchHistorySlice.test.ts +168 -0
- package/src/features/search/searchHistorySlice.ts +70 -0
- package/src/features/search/selectSearchHistory.ts +6 -0
- package/src/features/search/utils.ts +15 -0
- package/src/features/services.ts +81 -0
- package/src/features/settings/balances/PortfolioBalanceSettingsContent.tsx +110 -0
- package/src/features/settings/constants.ts +41 -0
- package/src/features/settings/hooks.test.ts +80 -0
- package/src/features/settings/hooks.ts +41 -0
- package/src/features/settings/saga.ts +18 -0
- package/src/features/settings/selectors.ts +19 -0
- package/src/features/settings/slice.test.ts +28 -0
- package/src/features/settings/slice.ts +81 -0
- package/src/features/settings/storage/StorageSettingsContent.test.tsx +89 -0
- package/src/features/settings/storage/StorageSettingsContent.tsx +253 -0
- package/src/features/settings/storage/__snapshots__/StorageSettingsContent.test.tsx.snap +193 -0
- package/src/features/settings/useHapticFeedback/types.ts +22 -0
- package/src/features/settings/useHapticFeedback/useHapticFeedback.native.ts +45 -0
- package/src/features/settings/useHapticFeedback/useHapticFeedback.ts +6 -0
- package/src/features/settings/useHapticFeedback/useHapticFeedback.web.ts +11 -0
- package/src/features/smartWallet/banner/NetworkCostBanner.tsx +38 -0
- package/src/features/smartWallet/delegation/createTradingApiDelegationRepository.ts +65 -0
- package/src/features/smartWallet/delegation/delegation.test.ts +174 -0
- package/src/features/smartWallet/delegation/delegation.ts +118 -0
- package/src/features/smartWallet/delegation/delegationRepository.ts +21 -0
- package/src/features/smartWallet/delegation/effects.test.ts +206 -0
- package/src/features/smartWallet/delegation/effects.ts +81 -0
- package/src/features/smartWallet/delegation/hooks/useSetActiveChainId.ts +11 -0
- package/src/features/smartWallet/delegation/hooks/useUpdateDelegateState.ts +10 -0
- package/src/features/smartWallet/delegation/isDelegatedEOA.test.ts +63 -0
- package/src/features/smartWallet/delegation/isDelegatedEOA.ts +37 -0
- package/src/features/smartWallet/delegation/slice.ts +85 -0
- package/src/features/smartWallet/delegation/types.ts +12 -0
- package/src/features/smartWallet/mismatch/MismatchAccountEffects.tsx +38 -0
- package/src/features/smartWallet/mismatch/MismatchContext.tsx +76 -0
- package/src/features/smartWallet/mismatch/hooks.ts +229 -0
- package/src/features/smartWallet/mismatch/mismatch.test.ts +66 -0
- package/src/features/smartWallet/mismatch/mismatch.ts +109 -0
- package/src/features/smartWallet/mismatch/queryOptions.ts +42 -0
- package/src/features/smartWallet/mismatch/useMakeAccountMismatchQueryOptions.ts +23 -0
- package/src/features/smartWallet/mismatch/useOnDisconnectEffect.native.tsx +1 -0
- package/src/features/smartWallet/mismatch/useOnDisconnectEffect.tsx +5 -0
- package/src/features/smartWallet/mismatch/useOnDisconnectEffect.web.tsx +26 -0
- package/src/features/telemetry/Trace.tsx +60 -0
- package/src/features/telemetry/constants/extension.ts +28 -0
- package/src/features/telemetry/constants/features.ts +78 -0
- package/src/features/telemetry/constants/index.ts +8 -0
- package/src/features/telemetry/constants/interface.ts +71 -0
- package/src/features/telemetry/constants/lux.ts +25 -0
- package/src/features/telemetry/constants/mobile.ts +36 -0
- package/src/features/telemetry/constants/sessions.ts +12 -0
- package/src/features/telemetry/constants/trace/element.ts +330 -0
- package/src/features/telemetry/constants/trace/index.ts +4 -0
- package/src/features/telemetry/constants/trace/modal.ts +234 -0
- package/src/features/telemetry/constants/trace/page.ts +37 -0
- package/src/features/telemetry/constants/trace/section.ts +42 -0
- package/src/features/telemetry/constants/wallet.ts +70 -0
- package/src/features/telemetry/send.native.ts +28 -0
- package/src/features/telemetry/send.ts +18 -0
- package/src/features/telemetry/send.web.ts +31 -0
- package/src/features/telemetry/types.ts +1320 -0
- package/src/features/telemetry/user.ts +100 -0
- package/src/features/telemetry/utils/logExperimentQualifyingEvent.ts +9 -0
- package/src/features/testnets/TestnetModeModal.tsx +47 -0
- package/src/features/timing/selectors.ts +3 -0
- package/src/features/timing/slice.ts +31 -0
- package/src/features/tokens/SolanaToken.test.ts +76 -0
- package/src/features/tokens/SolanaToken.ts +48 -0
- package/src/features/tokens/getCurrencyAmount.test.ts +120 -0
- package/src/features/tokens/getCurrencyAmount.ts +85 -0
- package/src/features/tokens/stablecoin.ts +29 -0
- package/src/features/tokens/useCurrencyInfo.ts +110 -0
- package/src/features/tokens/warnings/TokenWarningCard.tsx +129 -0
- package/src/features/tokens/warnings/TokenWarningFlagsTable.tsx +142 -0
- package/src/features/tokens/warnings/TokenWarningModal.tsx +403 -0
- package/src/features/tokens/warnings/WarningInfoModalContainer.tsx +11 -0
- package/src/features/tokens/warnings/hooks/useBlockaidFeeComparisonAnalytics.ts +62 -0
- package/src/features/tokens/warnings/hooks/useWarningModalCurrenciesDismissed.ts +60 -0
- package/src/features/tokens/warnings/safetyUtils.test.ts +605 -0
- package/src/features/tokens/warnings/safetyUtils.ts +458 -0
- package/src/features/tokens/warnings/slice/hooks.ts +104 -0
- package/src/features/tokens/warnings/slice/selectors.ts +17 -0
- package/src/features/tokens/warnings/slice/slice.ts +91 -0
- package/src/features/tokens/warnings/slice/types.ts +34 -0
- package/src/features/tokens/warnings/types.ts +14 -0
- package/src/features/transactions/TransactionDetails/EstimatedTime.tsx +29 -0
- package/src/features/transactions/TransactionDetails/ExpectedFailureBanner.tsx +45 -0
- package/src/features/transactions/TransactionDetails/ExpectedSpeed.tsx +19 -0
- package/src/features/transactions/TransactionDetails/FeeOnTransferFee.tsx +50 -0
- package/src/features/transactions/TransactionDetails/ListSeparatorToggle.tsx +41 -0
- package/src/features/transactions/TransactionDetails/SlippageEdit.tsx +50 -0
- package/src/features/transactions/TransactionDetails/SwapFee.tsx +115 -0
- package/src/features/transactions/TransactionDetails/SwapReviewTokenWarningCard.tsx +77 -0
- package/src/features/transactions/TransactionDetails/TransactionDetails.tsx +200 -0
- package/src/features/transactions/TransactionDetails/TransactionWarning.tsx +19 -0
- package/src/features/transactions/TransactionDetails/UnichainPoweredMessage.tsx +27 -0
- package/src/features/transactions/TransactionDetails/UserReceiveAmount.tsx +33 -0
- package/src/features/transactions/TransactionDetails/modals/FeeOnTransferWarning.tsx +104 -0
- package/src/features/transactions/TransactionDetails/modals/SwapFeeWarning.tsx +72 -0
- package/src/features/transactions/TransactionDetails/types.ts +25 -0
- package/src/features/transactions/TransactionDetails/utils/getFeeSeverity.ts +41 -0
- package/src/features/transactions/TransactionDetails/utils/getRelevantTokenWarningSeverity.ts +22 -0
- package/src/features/transactions/TransactionDetails/utils/getShouldDisplayTokenWarningCard.ts +63 -0
- package/src/features/transactions/cancel/cancelMultipleOrders.test.ts +386 -0
- package/src/features/transactions/cancel/cancelMultipleOrders.ts +226 -0
- package/src/features/transactions/cancel/cancelOrderFactory.test.ts +327 -0
- package/src/features/transactions/cancel/cancelOrderFactory.ts +161 -0
- package/src/features/transactions/cancel/getCancelOrderTxRequest.ts +39 -0
- package/src/features/transactions/cancel/validation.test.ts +99 -0
- package/src/features/transactions/cancel/validation.ts +57 -0
- package/src/features/transactions/components/DecimalPadInput/DecimalPad.native.tsx +306 -0
- package/src/features/transactions/components/DecimalPadInput/DecimalPad.tsx +7 -0
- package/src/features/transactions/components/DecimalPadInput/DecimalPad.web.tsx +7 -0
- package/src/features/transactions/components/DecimalPadInput/DecimalPadInput.tsx +386 -0
- package/src/features/transactions/components/DecimalPadInput/types.ts +18 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/BridgeTokenButton.tsx +65 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/BuyNativeTokenButton.tsx +72 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/InsufficientNativeTokenBaseComponent.tsx +91 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/InsufficientNativeTokenWarning.tsx +165 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/constants.ts +3 -0
- package/src/features/transactions/components/InsufficientNativeTokenWarning/useInsufficientNativeTokenWarning.tsx +176 -0
- package/src/features/transactions/components/TransactionModal/TransactionModal.native.tsx +207 -0
- package/src/features/transactions/components/TransactionModal/TransactionModal.tsx +17 -0
- package/src/features/transactions/components/TransactionModal/TransactionModal.web.tsx +59 -0
- package/src/features/transactions/components/TransactionModal/TransactionModalContext.tsx +108 -0
- package/src/features/transactions/components/TransactionModal/TransactionModalProps.tsx +23 -0
- package/src/features/transactions/components/TransactionModal/TransactionModalUpdateLogger.tsx +17 -0
- package/src/features/transactions/components/cancel/CancelConfirmationView.tsx +178 -0
- package/src/features/transactions/components/settings/TransactionSettings.tsx +138 -0
- package/src/features/transactions/components/settings/TransactionSettingsButton.tsx +96 -0
- package/src/features/transactions/components/settings/TransactionSettingsButtonWithSlippage.tsx +84 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/TransactionSettingsModal.tsx +11 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/TransactionSettingsModalContent/TransactionSettingsModalContent.tsx +144 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/TransactionSettingsModalContent/TransactionSettingsRow.tsx +91 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/TransactionSettingsModalInterface.tsx +47 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/TransactionSettingsModalWallet.tsx +45 -0
- package/src/features/transactions/components/settings/TransactionSettingsModal/types.ts +9 -0
- package/src/features/transactions/components/settings/ViewOnlyButton.tsx +29 -0
- package/src/features/transactions/components/settings/hooks/useTransactionSettingsWithSlippage.ts +64 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/Deadline/Deadline.native.tsx +16 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/Deadline/Deadline.tsx +18 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/Deadline/Deadline.web.tsx +26 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/DeadlineControl.tsx +83 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/DeadlineWarning.tsx +19 -0
- package/src/features/transactions/components/settings/settingsConfigurations/deadline/useDeadlineSettings.ts +95 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/Slippage/Slippage.native.tsx +15 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/Slippage/Slippage.tsx +18 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/Slippage/Slippage.web.tsx +27 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageControl/SlippageControl.native.tsx +30 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageControl/SlippageControl.tsx +10 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageControl/SlippageControl.web.tsx +165 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageControl/types.ts +3 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageWarning.tsx +31 -0
- package/src/features/transactions/components/settings/settingsConfigurations/slippage/useSlippageSettings.ts +220 -0
- package/src/features/transactions/components/settings/stores/TransactionSettingsModalStore/TransactionSettingsModalStoreContext.tsx +10 -0
- package/src/features/transactions/components/settings/stores/TransactionSettingsModalStore/TransactionSettingsModalStoreContextProvider.tsx +28 -0
- package/src/features/transactions/components/settings/stores/TransactionSettingsModalStore/createTransactionSettingsModalStore.ts +106 -0
- package/src/features/transactions/components/settings/stores/TransactionSettingsModalStore/useTransactionSettingsModalStore.ts +50 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/LPTransactionSettingsStoreContextProvider.tsx +15 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/SwapTransactionSettingsStoreContextProvider.tsx +6 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/TransactionSettingsStoreContext.ts +22 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/TransactionSettingsStoreContextProvider.tsx +49 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/createTransactionSettingsAutoSlippageToleranceStore.tsx +37 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/createTransactionSettingsStore.test.ts +28 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/createTransactionSettingsStore.ts +80 -0
- package/src/features/transactions/components/settings/stores/transactionSettingsStore/useTransactionSettingsStore.ts +79 -0
- package/src/features/transactions/components/settings/types.ts +42 -0
- package/src/features/transactions/components/settings/utils.ts +31 -0
- package/src/features/transactions/errors.ts +308 -0
- package/src/features/transactions/hooks/useErroredQueuedOrder.ts +52 -0
- package/src/features/transactions/hooks/useGetCanSignPermits.ts +14 -0
- package/src/features/transactions/hooks/useGetSwapDelegationAddress.ts +16 -0
- package/src/features/transactions/hooks/useIsCancelable.ts +130 -0
- package/src/features/transactions/hooks/useIsQueuedTransaction.ts +44 -0
- package/src/features/transactions/hooks/useParsedTransactionWarnings.tsx +98 -0
- package/src/features/transactions/hooks/usePendingTransactions.ts +45 -0
- package/src/features/transactions/hooks/usePollingIntervalByChain.ts +27 -0
- package/src/features/transactions/hooks/useSelectTransaction.tsx +22 -0
- package/src/features/transactions/hooks/useSuccessfulSwapCompleted.ts +59 -0
- package/src/features/transactions/hooks/useTokenAndFiatDisplayAmounts.tsx +82 -0
- package/src/features/transactions/hooks/useUSDCPrice.ts +125 -0
- package/src/features/transactions/hooks/useUSDCPriceCentralized.ts +77 -0
- package/src/features/transactions/hooks/useUSDCPriceWrapper.ts +34 -0
- package/src/features/transactions/hooks/useUSDTokenUpdater.ts +77 -0
- package/src/features/transactions/liquidity/steps/collectFees.ts +13 -0
- package/src/features/transactions/liquidity/steps/collectFeesSteps.ts +11 -0
- package/src/features/transactions/liquidity/steps/collectIncentiveRewards.ts +5 -0
- package/src/features/transactions/liquidity/steps/collectIncentiveRewardsSteps.ts +3 -0
- package/src/features/transactions/liquidity/steps/decreaseLiquiditySteps.ts +21 -0
- package/src/features/transactions/liquidity/steps/decreasePosition.ts +19 -0
- package/src/features/transactions/liquidity/steps/generateLPTransactionSteps.test.ts +362 -0
- package/src/features/transactions/liquidity/steps/generateLPTransactionSteps.ts +178 -0
- package/src/features/transactions/liquidity/steps/increaseLiquiditySteps.ts +81 -0
- package/src/features/transactions/liquidity/steps/increasePosition.ts +206 -0
- package/src/features/transactions/liquidity/steps/migrate.ts +72 -0
- package/src/features/transactions/liquidity/steps/migrationSteps.ts +48 -0
- package/src/features/transactions/liquidity/types.ts +187 -0
- package/src/features/transactions/liquidity/utils.ts +87 -0
- package/src/features/transactions/modals/BlockedAddressModal.tsx +20 -0
- package/src/features/transactions/modals/BlockedAddressWarning.tsx +33 -0
- package/src/features/transactions/modals/CompatibleAddressModal.tsx +91 -0
- package/src/features/transactions/modals/HiddenTokenInfoModal.tsx +39 -0
- package/src/features/transactions/modals/LowNativeBalanceModal.tsx +62 -0
- package/src/features/transactions/modals/MaxBalanceInfoModal.tsx +72 -0
- package/src/features/transactions/modals/ViewOnlyModal.tsx +28 -0
- package/src/features/transactions/selectors.ts +315 -0
- package/src/features/transactions/send/types.ts +18 -0
- package/src/features/transactions/signing.ts +29 -0
- package/src/features/transactions/slice.test.ts +959 -0
- package/src/features/transactions/slice.ts +370 -0
- package/src/features/transactions/steps/approve.ts +31 -0
- package/src/features/transactions/steps/permit2Signature.ts +17 -0
- package/src/features/transactions/steps/permit2Transaction.ts +34 -0
- package/src/features/transactions/steps/revoke.ts +30 -0
- package/src/features/transactions/steps/types.ts +154 -0
- package/src/features/transactions/steps/wrap.ts +17 -0
- package/src/features/transactions/swap/SwapFlow/CurrentScreen.native.tsx +70 -0
- package/src/features/transactions/swap/SwapFlow/CurrentScreen.tsx +10 -0
- package/src/features/transactions/swap/SwapFlow/CurrentScreen.web.tsx +60 -0
- package/src/features/transactions/swap/SwapFlow/SwapFlow.tsx +84 -0
- package/src/features/transactions/swap/analytics.test.ts +183 -0
- package/src/features/transactions/swap/analytics.ts +585 -0
- package/src/features/transactions/swap/components/AcrossRoutingInfo.tsx +91 -0
- package/src/features/transactions/swap/components/BridgingCurrencyRow.tsx +53 -0
- package/src/features/transactions/swap/components/CrossChainCurrencyRow.tsx +53 -0
- package/src/features/transactions/swap/components/EstimatedBridgeTime.tsx +66 -0
- package/src/features/transactions/swap/components/MaxSlippageRow/MaxSlippageRow.tsx +81 -0
- package/src/features/transactions/swap/components/MaxSlippageRow/SlippageInfo/SlippageInfo.tsx +81 -0
- package/src/features/transactions/swap/components/MaxSlippageRow/SlippageInfo/SlippageInfoCaption.tsx +116 -0
- package/src/features/transactions/swap/components/MaxSlippageRow/SlippageInfo/types.ts +8 -0
- package/src/features/transactions/swap/components/MaxSlippageRow/SlippageInfo/useFormatSlippageAmount.ts +26 -0
- package/src/features/transactions/swap/components/PriceImpactRow/MarketPriceImpactWarning.tsx +84 -0
- package/src/features/transactions/swap/components/PriceImpactRow/PriceImpactRow.tsx +45 -0
- package/src/features/transactions/swap/components/PriceImpactRow/usePriceImpact.test.ts +93 -0
- package/src/features/transactions/swap/components/PriceImpactRow/usePriceImpact.ts +26 -0
- package/src/features/transactions/swap/components/README.md +24 -0
- package/src/features/transactions/swap/components/RoutingInfo/AcrossRoutingInfo.tsx +91 -0
- package/src/features/transactions/swap/components/RoutingInfo/ChainedRoutingInfo.tsx +142 -0
- package/src/features/transactions/swap/components/RoutingInfo/RoutingHopInfo.tsx +120 -0
- package/src/features/transactions/swap/components/RoutingInfo/RoutingInfo.tsx +30 -0
- package/src/features/transactions/swap/components/RoutingInfo.tsx +120 -0
- package/src/features/transactions/swap/components/SwapArrowButton.tsx +43 -0
- package/src/features/transactions/swap/components/SwapFormButton/SwapFormButton.tsx +70 -0
- package/src/features/transactions/swap/components/SwapFormButton/SwapFormButtonTrace.tsx +38 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useBridgingModalActions.ts +28 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useCurrenciesWithBridgingWarnings.ts +36 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useCurrenciesWithProtectionWarnings.ts +38 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsAmountSelectionInvalid.ts +11 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsBlockingWithCustomMessage.ts +19 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsMissingPlatformWallet.ts +12 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsPortfolioZero.ts +10 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsSwapButtonDisabled.ts +66 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsTokenSelectionInvalid.ts +10 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsTradeIndicative.ts +12 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useIsWrongWalletPlatform.ts +15 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useOnReviewPress.ts +99 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useSwapFormButtonColors.ts +76 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useSwapFormButtonHooks.test.ts +620 -0
- package/src/features/transactions/swap/components/SwapFormButton/hooks/useSwapFormButtonText.ts +90 -0
- package/src/features/transactions/swap/components/SwapFormSettings/SlippageWarningModal.tsx +50 -0
- package/src/features/transactions/swap/components/SwapFormSettings/SwapFormSettings.tsx +92 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/RoutingMethodPreference/RoutingMethodPreference.tsx +15 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/RoutingMethodPreference/RoutingMethodPreferenceControl.tsx +28 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/RoutingMethodPreference/RoutingMethodPreferenceScreen.tsx +89 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/DEXInfo.tsx +55 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/TradeRoutingPreference.tsx +15 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/TradeRoutingPreferenceControl.tsx +39 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/TradeRoutingPreferenceScreen.tsx +473 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/V4HooksInfo.tsx +43 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/TradeRoutingPreference/isDefaultTradeRouteOptions.ts +17 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/Slippage/Slippage.native.tsx +19 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/Slippage/Slippage.tsx +21 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/Slippage/Slippage.web.tsx +10 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/SlippageControl/SlippageControl.native.tsx +11 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/SlippageControl/SlippageControl.tsx +9 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/SlippageControl/SlippageControl.web.tsx +11 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippage/SlippageScreenNative.tsx +203 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippageUpdate/SlippageUpdate.native.tsx +7 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippageUpdate/SlippageUpdate.tsx +11 -0
- package/src/features/transactions/swap/components/SwapFormSettings/settingsConfigurations/slippageUpdate/SlippageUpdate.web.tsx +11 -0
- package/src/features/transactions/swap/components/SwapRateRatio.tsx +77 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/AnimatedTokenFlip.native.tsx +121 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/AnimatedTokenFlip.tsx +16 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/AnimatedTokenFlip.web.tsx +136 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/FlashblocksConfirmButton.tsx +104 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/GradientContainer.native.tsx +120 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/GradientContainer.tsx +11 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/GradientContainer.web.tsx +128 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/StyledTokenLogo.tsx +32 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/UnichainInstantBalanceModal.tsx +150 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/constants.ts +28 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/getOutputAmountFromSwapLogAndFormData.ts/constants.ts +40 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/getOutputAmountFromSwapLogAndFormData.ts/getOutputAmountFromSwapLogAndFormData.ts +137 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/getOutputAmountFromSwapLogAndFormData.ts/utils.ts +181 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/receiptFetching/useFetchReceipt.ts +95 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/receiptFetching/useReceiptFailureHandler.ts +57 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/receiptFetching/useReceiptSuccessHandler.ts +207 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/receiptFetching/utils.ts +125 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useActualCompletionTime.tsx +48 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useActualSwapOutput.tsx +70 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useBackgroundColor.tsx +9 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useClearFlashblocksSwapNotifications.ts +51 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useCurrentFlashblocksTransaction.tsx +29 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/hooks/useInstantReceiptOutput.tsx +83 -0
- package/src/features/transactions/swap/components/UnichainInstantBalanceModal/utils.ts +91 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormCurrencyInputPanel.tsx +103 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormCurrencyOutputPanel.tsx +106 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormDecimalPad/SwapFormDecimalPad.native.tsx +264 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormDecimalPad/SwapFormDecimalPad.tsx +5 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormDecimalPad/SwapFormDecimalPad.web.tsx +3 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormHeader/SwapFormHeader.native.tsx +23 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormHeader/SwapFormHeader.tsx +5 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormHeader/SwapFormHeader.web.tsx +38 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreen.tsx +118 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/ExpandableRows.tsx +101 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenDetails.native.tsx +12 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenDetails.tsx +5 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenDetails.web.tsx +39 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/ExactOutputUnavailableWarningRow.tsx +57 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/GasAndWarningRows.native.tsx +183 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/GasAndWarningRows.tsx +5 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/GasAndWarningRows.web.tsx +60 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/SwapWarningModal.tsx +46 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/CanonicalBridgeLinkBanner.tsx +29 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/GasInfoRow.test.tsx +152 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/GasInfoRow.tsx +68 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/TradeInfoRow.tsx +92 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/TradeWarning.tsx +40 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/TradeInfoRow/useDebouncedTrade.ts +21 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/types.ts +11 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/GasAndWarningRows/useDebouncedGasInfo.ts +70 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormScreenDetails/SwapFormScreenFooter/SwapFormScreenFooter.tsx +65 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/AcrossRoutingTooltip.tsx +12 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/BestRouteTooltip.tsx +82 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/FeeDetailsTooltip.tsx +67 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/LargePriceDifferenceTooltip.tsx +17 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/MaxSlippageTooltip.tsx +144 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormTooltips/YouReceiveDetailsTooltip.tsx +96 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormWarningModals/BridgingModal.tsx +86 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapFormWarningModals/SwapFormWarningModals.tsx +113 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapTokenSelector/SwapTokenSelector.tsx +60 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapTokenSelector/hooks/useChainId.ts +36 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwapTokenSelector/hooks/useHideTokenSelector.ts +21 -0
- package/src/features/transactions/swap/form/SwapFormScreen/SwitchCurrenciesButton.tsx +63 -0
- package/src/features/transactions/swap/form/SwapFormScreen/WalletRestoreButton.tsx +41 -0
- package/src/features/transactions/swap/form/SwapFormScreen/YouReceiveDetails/SwapDetailsRow.tsx +169 -0
- package/src/features/transactions/swap/form/SwapFormScreen/YouReceiveDetails/YouReceiveDetails.native.tsx +5 -0
- package/src/features/transactions/swap/form/SwapFormScreen/YouReceiveDetails/YouReceiveDetails.tsx +12 -0
- package/src/features/transactions/swap/form/SwapFormScreen/YouReceiveDetails/YouReceiveDetails.web.tsx +413 -0
- package/src/features/transactions/swap/form/SwapFormScreen/hooks/useCurrencyInputFocusedStyle.ts +19 -0
- package/src/features/transactions/swap/form/hooks/useDecimalPadControlledField.ts +15 -0
- package/src/features/transactions/swap/form/hooks/useOnSelectCurrency.ts +245 -0
- package/src/features/transactions/swap/form/hooks/useSwapNetworkChangeEffect.test.ts +91 -0
- package/src/features/transactions/swap/form/hooks/useSwapPrefilledState.ts +118 -0
- package/src/features/transactions/swap/form/hooks/useSyncFiatAndTokenAmountUpdater.test.tsx +226 -0
- package/src/features/transactions/swap/form/hooks/useSyncFiatAndTokenAmountUpdater.tsx +84 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/SwapFormScreenStoreContext.ts +4 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/SwapFormScreenStoreContextProvider.tsx +268 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/createSwapFormScreenStore.ts +83 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/devUtils.ts +65 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/hooks/useChainIdsChangeEffect.test.ts +227 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/hooks/useChainIdsChangeEffect.ts +82 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/hooks/useSwapNetworkChangeEffect.ts +53 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/hooks/useTemporaryExactOutputUnavailableWarning.ts +44 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/hooks/useUpdateSwapFormOnMountIfExactOutputWillFail.ts +17 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/useSwapFormScreenCallbacks.test.ts +178 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/useSwapFormScreenCallbacks.ts +267 -0
- package/src/features/transactions/swap/form/stores/swapFormScreenStore/useSwapFormScreenStore.ts +23 -0
- package/src/features/transactions/swap/form/stores/swapFormWarningStore/SwapFormWarningStoreContext.ts +4 -0
- package/src/features/transactions/swap/form/stores/swapFormWarningStore/SwapFormWarningStoreContextProvider.tsx +9 -0
- package/src/features/transactions/swap/form/stores/swapFormWarningStore/createSwapFormWarningStore.ts +57 -0
- package/src/features/transactions/swap/form/stores/swapFormWarningStore/useSwapFormWarningStore.ts +30 -0
- package/src/features/transactions/swap/form/utils.test.ts +73 -0
- package/src/features/transactions/swap/form/utils.ts +17 -0
- package/src/features/transactions/swap/hooks/useEthAsErc20DEXQualifyingEvent.ts +244 -0
- package/src/features/transactions/swap/hooks/useFeeOnTransferAmount.ts +76 -0
- package/src/features/transactions/swap/hooks/useIsUnichainFlashblocksEnabled.ts +135 -0
- package/src/features/transactions/swap/hooks/useMostRecentSwapTx.ts +15 -0
- package/src/features/transactions/swap/hooks/useNeedsBridgedAssetWarning.ts +71 -0
- package/src/features/transactions/swap/hooks/usePriceDifference.test.ts +127 -0
- package/src/features/transactions/swap/hooks/usePriceDifference.ts +55 -0
- package/src/features/transactions/swap/hooks/usePriceUXEnabled.ts +11 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getBalanceWarning.test.ts +96 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getBalanceWarning.ts +39 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getFormIncompleteWarning.test.ts +127 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getFormIncompleteWarning.ts +26 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getPriceImpactWarning.test.ts +94 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getPriceImpactWarning.ts +51 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getSwapWarningFromError.ts +73 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getTokenBlockedWarning.test.ts +126 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/getTokenBlockedWarning.ts +30 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useNeedsBridgingWarning.ts +10 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useNeedsLowNativeBalanceWarning.ts +18 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useParsedActivePlanWarnings.test.ts +255 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useParsedActivePlanWarnings.ts +234 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/usePrefilledNeedsTokenProtectionWarning.ts +87 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useSwapWarnings.test.ts +168 -0
- package/src/features/transactions/swap/hooks/useSwapWarnings/useSwapWarnings.tsx +132 -0
- package/src/features/transactions/swap/hooks/useTrade/createGetQuoteRequestArgs.ts +72 -0
- package/src/features/transactions/swap/hooks/useTrade/logging.ts +142 -0
- package/src/features/transactions/swap/hooks/useTrade/parseQuoteCurrencies.ts +39 -0
- package/src/features/transactions/swap/hooks/useTrade/useIndicativeTradeQuery.ts +20 -0
- package/src/features/transactions/swap/hooks/useTrade/useIndicativeTradeServiceQueryOptions.ts +36 -0
- package/src/features/transactions/swap/hooks/useTrade/useTradeQuery.ts +46 -0
- package/src/features/transactions/swap/hooks/useTrade/useTradeServiceQueryOptions.ts +39 -0
- package/src/features/transactions/swap/hooks/useTrade.ts +81 -0
- package/src/features/transactions/swap/hooks/useTradeFromExistingPlan.ts +104 -0
- package/src/features/transactions/swap/hooks/useV4SwapEnabled.ts +25 -0
- package/src/features/transactions/swap/orders.ts +6 -0
- package/src/features/transactions/swap/plan/intermediaryState/useCanResumePlan.ts +53 -0
- package/src/features/transactions/swap/plan/intermediaryState/useIntermediaryPlanState.ts +90 -0
- package/src/features/transactions/swap/plan/intermediaryState/useIntermediaryPlanStateDescriptor.ts +73 -0
- package/src/features/transactions/swap/plan/intermediaryState/useResumePlanMutation.ts +112 -0
- package/src/features/transactions/swap/plan/planPollingUtils.ts +197 -0
- package/src/features/transactions/swap/plan/planSaga.test.ts +526 -0
- package/src/features/transactions/swap/plan/planSaga.ts +600 -0
- package/src/features/transactions/swap/plan/planSagaUtils.ts +399 -0
- package/src/features/transactions/swap/plan/planStepAnalytics.ts +127 -0
- package/src/features/transactions/swap/plan/planStepTransformer.ts +95 -0
- package/src/features/transactions/swap/plan/planWatcherSaga.ts +150 -0
- package/src/features/transactions/swap/plan/prefetchedPlanStore.ts +86 -0
- package/src/features/transactions/swap/plan/priceChangeDetection.test.ts +146 -0
- package/src/features/transactions/swap/plan/slippage.test.ts +124 -0
- package/src/features/transactions/swap/plan/slippage.ts +36 -0
- package/src/features/transactions/swap/plan/types.ts +158 -0
- package/src/features/transactions/swap/plan/utils.test.ts +97 -0
- package/src/features/transactions/swap/plan/utils.ts +271 -0
- package/src/features/transactions/swap/plan/watchPlanStepSaga.ts +146 -0
- package/src/features/transactions/swap/review/SwapDetails/AcceptNewQuoteRow.tsx +101 -0
- package/src/features/transactions/swap/review/SwapDetails/MarketPriceImpactWarningModal.tsx +84 -0
- package/src/features/transactions/swap/review/SwapDetails/SwapDetails.tsx +164 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapErrorScreen.tsx +104 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/DelayedSubmissionText.tsx +33 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/PendingSwapButton.native.tsx +163 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/PendingSwapButton.tsx +16 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/PendingSwapButton.web.tsx +160 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/SubmitSwapButton.tsx +268 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewFooter/SwapReviewFooter.tsx +143 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewLoadingView.tsx +17 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewScreen.tsx +189 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewSwapDetails.tsx +80 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewWarningModal.tsx +40 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/SwapReviewWrapTransactionDetails.tsx +39 -0
- package/src/features/transactions/swap/review/SwapReviewScreen/TransactionAmountsReview.tsx +219 -0
- package/src/features/transactions/swap/review/hooks/useAcceptedTrade.ts +66 -0
- package/src/features/transactions/swap/review/hooks/useActivePlanStatus.ts +31 -0
- package/src/features/transactions/swap/review/hooks/useCreateSwapReviewCallbacks.tsx +271 -0
- package/src/features/transactions/swap/review/hooks/usePrepareSwapTransactionEffect.ts +41 -0
- package/src/features/transactions/swap/review/hooks/useSwapOnPrevious.tsx +45 -0
- package/src/features/transactions/swap/review/hooks/useTokenApprovalInfo.test.ts +176 -0
- package/src/features/transactions/swap/review/hooks/useTokenApprovalInfo.ts +190 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/bridge/bridgeSwapTxAndGasInfoService.ts +25 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/chained/chainedActionTxSwapAndGasInfoService.ts +114 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/classic/classicSwapTxAndGasInfoService.ts +30 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/constants.ts +18 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/dex/dexSwapTxAndGasInfoService.ts +19 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/dex/utils.test.tsx +28 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/dex/utils.ts +69 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/evm/evmSwapInstructionsService.ts +147 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/evm/evmSwapRepository.ts +78 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/evm/hooks.ts +40 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/evm/logging.ts +46 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/evm/utils.ts +70 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/hooks.ts +335 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/svm/solanaSwapTxAndGasInfoService.ts +36 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/swapTxAndGasInfoService.ts +37 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/utils.test.ts +385 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/utils.ts +511 -0
- package/src/features/transactions/swap/review/services/swapTxAndGasInfoService/wrap/wrapTxAndGasInfoService.ts +25 -0
- package/src/features/transactions/swap/review/stores/activePlan/ActivePlanUpdater.ts +117 -0
- package/src/features/transactions/swap/review/stores/activePlan/activePlanStore.test.ts +123 -0
- package/src/features/transactions/swap/review/stores/activePlan/activePlanStore.ts +153 -0
- package/src/features/transactions/swap/review/stores/activePlan/usePopulateSwapFlowWithPlan.ts +45 -0
- package/src/features/transactions/swap/review/stores/swapReviewCallbacksStore/SwapReviewCallbacksStoreContext.ts +6 -0
- package/src/features/transactions/swap/review/stores/swapReviewCallbacksStore/SwapReviewCallbacksStoreContextProvider.tsx +90 -0
- package/src/features/transactions/swap/review/stores/swapReviewCallbacksStore/createSwapReviewCallbacksStore.ts +26 -0
- package/src/features/transactions/swap/review/stores/swapReviewCallbacksStore/useSwapReviewCallbacksStore.ts +24 -0
- package/src/features/transactions/swap/review/stores/swapReviewStore/SwapReviewContext.ts +4 -0
- package/src/features/transactions/swap/review/stores/swapReviewStore/SwapReviewStoreContextProvider.tsx +24 -0
- package/src/features/transactions/swap/review/stores/swapReviewStore/SyncActivePlanEffects.tsx +63 -0
- package/src/features/transactions/swap/review/stores/swapReviewStore/createSwapReviewStore.ts +52 -0
- package/src/features/transactions/swap/review/stores/swapReviewStore/useSwapReviewStore.ts +52 -0
- package/src/features/transactions/swap/review/stores/swapReviewTransactionStore/SwapReviewTransactionStoreContext.ts +6 -0
- package/src/features/transactions/swap/review/stores/swapReviewTransactionStore/SwapReviewTransactionStoreContextProvider.tsx +121 -0
- package/src/features/transactions/swap/review/stores/swapReviewTransactionStore/createSwapReviewTransactionStore.ts +53 -0
- package/src/features/transactions/swap/review/stores/swapReviewTransactionStore/useSwapReviewTransactionStore.ts +72 -0
- package/src/features/transactions/swap/review/stores/swapReviewWarningStore/SwapReviewWarningStoreContext.ts +4 -0
- package/src/features/transactions/swap/review/stores/swapReviewWarningStore/SwapReviewWarningStoreContextProvider.tsx +10 -0
- package/src/features/transactions/swap/review/stores/swapReviewWarningStore/createSwapReviewWarningStore.ts +43 -0
- package/src/features/transactions/swap/review/stores/swapReviewWarningStore/useSwapReviewWarningStore.ts +32 -0
- package/src/features/transactions/swap/services/executeSwapService.ts +83 -0
- package/src/features/transactions/swap/services/hooks/useExecuteSwap.ts +66 -0
- package/src/features/transactions/swap/services/hooks/usePrepareSwap.ts +95 -0
- package/src/features/transactions/swap/services/hooks/useWarningService.ts +48 -0
- package/src/features/transactions/swap/services/prepareSwapService.ts +212 -0
- package/src/features/transactions/swap/services/tradeService/evmTradeService.ts +218 -0
- package/src/features/transactions/swap/services/tradeService/svmTradeService.ts +93 -0
- package/src/features/transactions/swap/services/tradeService/tradeRepository.test.ts +224 -0
- package/src/features/transactions/swap/services/tradeService/tradeRepository.ts +99 -0
- package/src/features/transactions/swap/services/tradeService/tradeService.ts +50 -0
- package/src/features/transactions/swap/services/tradeService/transformations/buildQuoteRequest.ts +180 -0
- package/src/features/transactions/swap/services/tradeService/transformations/estimateGas.ts +9 -0
- package/src/features/transactions/swap/services/tradeService/transformations/transformQuoteToTrade.ts +64 -0
- package/src/features/transactions/swap/services/warningService.ts +11 -0
- package/src/features/transactions/swap/state/selectors.ts +5 -0
- package/src/features/transactions/swap/state/slice.ts +31 -0
- package/src/features/transactions/swap/steps/classicSteps.ts +58 -0
- package/src/features/transactions/swap/steps/dexSteps.ts +27 -0
- package/src/features/transactions/swap/steps/signOrder.ts +35 -0
- package/src/features/transactions/swap/steps/swap.ts +74 -0
- package/src/features/transactions/swap/stores/swapDependenciesStore/SwapDependenciesStoreContext.ts +4 -0
- package/src/features/transactions/swap/stores/swapDependenciesStore/SwapDependenciesStoreContextProvider.tsx +45 -0
- package/src/features/transactions/swap/stores/swapDependenciesStore/createSwapDependenciesStore.ts +48 -0
- package/src/features/transactions/swap/stores/swapDependenciesStore/useSwapDependenciesStore.ts +33 -0
- package/src/features/transactions/swap/stores/swapFormStore/SwapFormStoreContext.ts +4 -0
- package/src/features/transactions/swap/stores/swapFormStore/SwapFormStoreContextProvider.tsx +350 -0
- package/src/features/transactions/swap/stores/swapFormStore/createSwapFormStore.ts +163 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useDebouncedSwapFormAmounts.ts +45 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useDefaultSwapFormState.ts +39 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useDerivedSwapInfo.ts +196 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useFreezeWhileSubmitting.test.ts +310 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useFreezeWhileSubmitting.ts +21 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useOnToggleIsFiatMode.ts +68 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useOpenOutputSelectorOnPrefilledStateChange.ts +24 -0
- package/src/features/transactions/swap/stores/swapFormStore/hooks/useUpdateSwapFormFromPrefilledCurrencies.ts +30 -0
- package/src/features/transactions/swap/stores/swapFormStore/types.ts +73 -0
- package/src/features/transactions/swap/stores/swapFormStore/useSwapFormStore.ts +42 -0
- package/src/features/transactions/swap/stores/swapTxStore/SwapTxStoreContext.ts +4 -0
- package/src/features/transactions/swap/stores/swapTxStore/SwapTxStoreContextProvider.tsx +23 -0
- package/src/features/transactions/swap/stores/swapTxStore/createSwapTxStore.ts +33 -0
- package/src/features/transactions/swap/stores/swapTxStore/hooks/usePermit2Signature.ts +44 -0
- package/src/features/transactions/swap/stores/swapTxStore/hooks/useTransactionRequestInfo.test.ts +170 -0
- package/src/features/transactions/swap/stores/swapTxStore/hooks/useTransactionRequestInfo.ts +191 -0
- package/src/features/transactions/swap/stores/swapTxStore/useSwapTxStore.ts +24 -0
- package/src/features/transactions/swap/types/BlockingTradeError.ts +14 -0
- package/src/features/transactions/swap/types/derivedSwapInfo.ts +33 -0
- package/src/features/transactions/swap/types/getTradingApiSwapFee.test.ts +171 -0
- package/src/features/transactions/swap/types/getTradingApiSwapFee.ts +59 -0
- package/src/features/transactions/swap/types/solana.test.ts +235 -0
- package/src/features/transactions/swap/types/solana.ts +177 -0
- package/src/features/transactions/swap/types/swapCallback.ts +32 -0
- package/src/features/transactions/swap/types/swapHandlers.ts +50 -0
- package/src/features/transactions/swap/types/swapTxAndGasInfo.ts +248 -0
- package/src/features/transactions/swap/types/trade.test.ts +102 -0
- package/src/features/transactions/swap/types/trade.ts +921 -0
- package/src/features/transactions/swap/types/wrapCallback.ts +18 -0
- package/src/features/transactions/swap/utils/SwapEventTimestampTracker.test.ts +40 -0
- package/src/features/transactions/swap/utils/SwapEventTimestampTracker.ts +65 -0
- package/src/features/transactions/swap/utils/asset.ts +15 -0
- package/src/features/transactions/swap/utils/chainedActions.ts +34 -0
- package/src/features/transactions/swap/utils/format.ts +7 -0
- package/src/features/transactions/swap/utils/formatPriceImpact.test.ts +86 -0
- package/src/features/transactions/swap/utils/formatPriceImpact.ts +10 -0
- package/src/features/transactions/swap/utils/gas.test.ts +148 -0
- package/src/features/transactions/swap/utils/gas.ts +37 -0
- package/src/features/transactions/swap/utils/generateSwapTransactionSteps.test.ts +267 -0
- package/src/features/transactions/swap/utils/generateSwapTransactionSteps.ts +91 -0
- package/src/features/transactions/swap/utils/getAmountsFromTrade.ts +37 -0
- package/src/features/transactions/swap/utils/getExactOutputWillFail.test.ts +147 -0
- package/src/features/transactions/swap/utils/getExactOutputWillFail.ts +61 -0
- package/src/features/transactions/swap/utils/getIdForQuote.ts +10 -0
- package/src/features/transactions/swap/utils/getPriceImpact.test.ts +187 -0
- package/src/features/transactions/swap/utils/getPriceImpact.ts +60 -0
- package/src/features/transactions/swap/utils/getSwapFeeUsd.ts +46 -0
- package/src/features/transactions/swap/utils/getTradeAmounts.ts +50 -0
- package/src/features/transactions/swap/utils/maybeLogFirstSwapAction.ts +18 -0
- package/src/features/transactions/swap/utils/protocols.test.ts +367 -0
- package/src/features/transactions/swap/utils/protocols.ts +150 -0
- package/src/features/transactions/swap/utils/routing.ts +140 -0
- package/src/features/transactions/swap/utils/styleHelpers.ts +22 -0
- package/src/features/transactions/swap/utils/trade.test.ts +168 -0
- package/src/features/transactions/swap/utils/trade.ts +264 -0
- package/src/features/transactions/swap/utils/tradingApi.test.ts +189 -0
- package/src/features/transactions/swap/utils/tradingApi.ts +593 -0
- package/src/features/transactions/swap/utils/wrap.test.ts +35 -0
- package/src/features/transactions/swap/utils/wrap.ts +28 -0
- package/src/features/transactions/toucan/steps/submitBid.ts +5 -0
- package/src/features/transactions/toucan/steps/withdrawBidAndClaimTokens.ts +5 -0
- package/src/features/transactions/types/baseDerivedInfo.ts +18 -0
- package/src/features/transactions/types/transactionDetails.ts +831 -0
- package/src/features/transactions/types/transactionRequests.ts +14 -0
- package/src/features/transactions/types/transactionState.ts +70 -0
- package/src/features/transactions/types/utils.ts +131 -0
- package/src/features/transactions/types/wrap.ts +5 -0
- package/src/features/transactions/utils/dex.utils.test.ts +95 -0
- package/src/features/transactions/utils/dex.utils.ts +135 -0
- package/src/features/transactions/utils/permit2.ts +43 -0
- package/src/features/transactions/utils/receipt.test.ts +64 -0
- package/src/features/transactions/utils/receipt.ts +73 -0
- package/src/features/trm/hooks.ts +22 -0
- package/src/features/unitags/ClaimUnitagContent.tsx +450 -0
- package/src/features/unitags/UnitagInfoModal.tsx +75 -0
- package/src/features/unitags/UnitagName.test.tsx +12 -0
- package/src/features/unitags/UnitagName.tsx +74 -0
- package/src/features/unitags/__snapshots__/UnitagName.test.tsx.snap +70 -0
- package/src/features/unitags/avatars.ts +82 -0
- package/src/features/unitags/constants.ts +5 -0
- package/src/features/unitags/fileUtils.native.ts +72 -0
- package/src/features/unitags/fileUtils.ts +13 -0
- package/src/features/unitags/fileUtils.web.ts +104 -0
- package/src/features/unitags/hooks/useCanClaimUnitagName.test.ts +78 -0
- package/src/features/unitags/hooks/useCanClaimUnitagName.ts +81 -0
- package/src/features/unitags/hooks/useClaimUnitag.ts +92 -0
- package/src/features/unitags/utils.ts +31 -0
- package/src/features/visibility/hooks/useIsActivityHidden.ts +7 -0
- package/src/features/visibility/hooks/usePositionVisibilityCheck.ts +31 -0
- package/src/features/visibility/hooks/useTokenVisibility.ts +20 -0
- package/src/features/visibility/selectors.ts +16 -0
- package/src/features/visibility/slice.ts +69 -0
- package/src/features/visibility/utils.ts +21 -0
- package/src/features/visibility/visibility.test.ts +295 -0
- package/src/features/wallet/contexts/WalletProvider.tsx +34 -0
- package/src/features/wallet/hooks/useWallet.ts +8 -0
- package/src/features/wallet/services/IWalletService.ts +6 -0
- package/src/features/wallet/services/createEVMWalletService.ts +40 -0
- package/src/features/wallet/services/createWalletService.ts +19 -0
- package/src/features/wallet/types/AccountDetails.ts +25 -0
- package/src/features/wallet/types/Wallet.ts +6 -0
- package/src/features/wallet/types/WalletMeta.ts +5 -0
- package/src/hooks/useAppInsets.test.tsx +59 -0
- package/src/hooks/useAppInsets.tsx +24 -0
- package/src/hooks/useIsKeyboardOpen.test.ts +97 -0
- package/src/hooks/useSnowflakeAnimation.ts +482 -0
- package/src/i18n/changeLanguage.tsx +25 -0
- package/src/i18n/i18n-setup-interface.tsx +85 -0
- package/src/i18n/i18n-setup.tsx +95 -0
- package/src/i18n/index.ts +10 -0
- package/src/i18n/index.web-app.ts +11 -0
- package/src/i18n/locales/@types/i18next.ts +13 -0
- package/src/i18n/locales/source/en-US.json +2922 -0
- package/src/i18n/locales/source/en-US_old.json +21 -0
- package/src/i18n/locales/translations/es-ES.json +2919 -0
- package/src/i18n/locales/translations/fil-PH.json +2919 -0
- package/src/i18n/locales/translations/fr-FR.json +2919 -0
- package/src/i18n/locales/translations/id-ID.json +2919 -0
- package/src/i18n/locales/translations/ja-JP.json +2919 -0
- package/src/i18n/locales/translations/ko-KR.json +2919 -0
- package/src/i18n/locales/translations/nl-NL.json +2919 -0
- package/src/i18n/locales/translations/pt-BR.json +2310 -0
- package/src/i18n/locales/translations/pt-PT.json +2919 -0
- package/src/i18n/locales/translations/ru-RU.json +2919 -0
- package/src/i18n/locales/translations/tr-TR.json +2919 -0
- package/src/i18n/locales/translations/vi-VN.json +2919 -0
- package/src/i18n/locales/translations/zh-CN.json +2919 -0
- package/src/i18n/locales/translations/zh-TW.json +2919 -0
- package/src/i18n/shared.ts +1 -0
- package/src/i18n/utils.test.ts +112 -0
- package/src/i18n/utils.ts +70 -0
- package/src/index.ts +7 -0
- package/src/react-native-dotenv.d.ts +42 -0
- package/src/state/README.md +3 -0
- package/src/state/createAppStateResetter.test.ts +118 -0
- package/src/state/createAppStateResetter.ts +95 -0
- package/src/state/createSafeMigration.test.ts +119 -0
- package/src/state/createSafeMigration.ts +84 -0
- package/src/state/index.ts +5 -0
- package/src/state/luxMigrationTests.ts +71 -0
- package/src/state/luxMigrations.test.ts +423 -0
- package/src/state/luxMigrations.ts +266 -0
- package/src/state/luxReducer.ts +48 -0
- package/src/state/oldTypes.ts +94 -0
- package/src/tamagui.d.ts +40 -0
- package/src/test/fixtures/account.ts +19 -0
- package/src/test/fixtures/events.ts +5 -0
- package/src/test/fixtures/gql/activities/index.ts +91 -0
- package/src/test/fixtures/gql/activities/nfts.ts +31 -0
- package/src/test/fixtures/gql/activities/swap.ts +21 -0
- package/src/test/fixtures/gql/activities/tokens.ts +50 -0
- package/src/test/fixtures/gql/amounts.ts +31 -0
- package/src/test/fixtures/gql/assets/constants.ts +30 -0
- package/src/test/fixtures/gql/assets/index.ts +3 -0
- package/src/test/fixtures/gql/assets/nfts.ts +60 -0
- package/src/test/fixtures/gql/assets/tokens.ts +194 -0
- package/src/test/fixtures/gql/history.ts +70 -0
- package/src/test/fixtures/gql/index.ts +7 -0
- package/src/test/fixtures/gql/misc.ts +19 -0
- package/src/test/fixtures/gql/portfolio.ts +38 -0
- package/src/test/fixtures/gql/transactions.ts +34 -0
- package/src/test/fixtures/index.ts +4 -0
- package/src/test/fixtures/lib/ethers.ts +47 -0
- package/src/test/fixtures/lib/index.ts +3 -0
- package/src/test/fixtures/lib/netinfo.ts +29 -0
- package/src/test/fixtures/lib/sdk.ts +14 -0
- package/src/test/fixtures/permit.ts +19 -0
- package/src/test/fixtures/testIDs.ts +303 -0
- package/src/test/fixtures/tradingApi.ts +16 -0
- package/src/test/fixtures/transactions/swap.ts +269 -0
- package/src/test/fixtures/wallet/addresses.ts +1 -0
- package/src/test/fixtures/wallet/balances.ts +89 -0
- package/src/test/fixtures/wallet/currencies.ts +93 -0
- package/src/test/fixtures/wallet/index.ts +3 -0
- package/src/test/fixtures/wallet/transactions/fixtures.ts +205 -0
- package/src/test/fixtures/wallet/transactions/helpers.ts +116 -0
- package/src/test/fixtures/wallet/transactions/index.ts +2 -0
- package/src/test/fixtures/wallet/walletConnect.ts +18 -0
- package/src/test/mockFn.ts +39 -0
- package/src/test/mocks/gql/index.ts +1 -0
- package/src/test/mocks/gql/mocks.ts +90 -0
- package/src/test/mocks/gql/provider.tsx +49 -0
- package/src/test/mocks/gql/resolvers.ts +19 -0
- package/src/test/mocks/index.ts +2 -0
- package/src/test/mocks/locale.ts +114 -0
- package/src/test/mocks/mockSharedPersistQueryClientProvider.tsx +12 -0
- package/src/test/mocks/uniqueId.ts +5 -0
- package/src/test/render.tsx +189 -0
- package/src/test/shared.ts +9 -0
- package/src/test/test-utils.ts +6 -0
- package/src/test/utils/array.ts +31 -0
- package/src/test/utils/factory.ts +142 -0
- package/src/test/utils/index.ts +4 -0
- package/src/test/utils/random.ts +37 -0
- package/src/test/utils/resolvers.ts +142 -0
- package/src/test-shorthands.ts +14 -0
- package/src/types/RenderPassReport.ts +57 -0
- package/src/types/currency.ts +6 -0
- package/src/types/limits.ts +6 -0
- package/src/types/onboarding.ts +18 -0
- package/src/types/screens/extension.ts +50 -0
- package/src/types/screens/interface.ts +7 -0
- package/src/types/screens/mobile.ts +124 -0
- package/src/types/sharing.ts +6 -0
- package/src/types/walletConnect.ts +143 -0
- package/src/types/widgets.ts +9 -0
- package/src/utils/addresses.test.ts +65 -0
- package/src/utils/addresses.ts +213 -0
- package/src/utils/approvals.test.ts +40 -0
- package/src/utils/approvals.ts +13 -0
- package/src/utils/balances.ts +14 -0
- package/src/utils/clipboard.native.ts +71 -0
- package/src/utils/clipboard.ts +34 -0
- package/src/utils/cloud-backup/getCloudProviderName.native.ts +12 -0
- package/src/utils/cloud-backup/getCloudProviderName.ts +8 -0
- package/src/utils/colors.test.ts +31 -0
- package/src/utils/colors.tsx +127 -0
- package/src/utils/createTransactionId.ts +5 -0
- package/src/utils/currency.test.ts +40 -0
- package/src/utils/currency.ts +97 -0
- package/src/utils/currencyId.test.ts +130 -0
- package/src/utils/currencyId.ts +221 -0
- package/src/utils/datadog.native.ts +5 -0
- package/src/utils/datadog.ts +5 -0
- package/src/utils/datadog.web.ts +159 -0
- package/src/utils/isWSOL.test.ts +38 -0
- package/src/utils/isWSOL.ts +17 -0
- package/src/utils/link.native.ts +9 -0
- package/src/utils/link.ts +9 -0
- package/src/utils/link.web.ts +7 -0
- package/src/utils/linking.test.ts +61 -0
- package/src/utils/linking.ts +300 -0
- package/src/utils/number.test.ts +44 -0
- package/src/utils/number.ts +17 -0
- package/src/utils/polling.test.ts +118 -0
- package/src/utils/polling.ts +86 -0
- package/src/utils/routingDiagram/routingProviders/jupiterRoutingProvider.test.ts +241 -0
- package/src/utils/routingDiagram/routingProviders/jupiterRoutingProvider.ts +128 -0
- package/src/utils/routingDiagram/routingProviders/luxRoutingProvider.test.ts +450 -0
- package/src/utils/routingDiagram/routingProviders/luxRoutingProvider.ts +127 -0
- package/src/utils/routingDiagram/routingRegistry.ts +58 -0
- package/src/utils/routingDiagram/types.ts +35 -0
- package/src/utils/saga.ts +275 -0
- package/src/utils/search/doesTokenMatchSearchTerm.test.ts +419 -0
- package/src/utils/search/doesTokenMatchSearchTerm.ts +37 -0
- package/src/utils/search/getPossibleChainMatchFromSearchWord.test.ts +437 -0
- package/src/utils/search/getPossibleChainMatchFromSearchWord.ts +47 -0
- package/src/utils/search/parseChainFromTokenSearchQuery.test.ts +138 -0
- package/src/utils/search/parseChainFromTokenSearchQuery.ts +70 -0
- package/src/utils/useKeyboardLayout.android.test.ts +70 -0
- package/src/utils/useKeyboardLayout.ios.test.ts +87 -0
- package/src/utils/useKeyboardLayout.native.ts +42 -0
- package/src/utils/useKeyboardLayout.ts +7 -0
- package/src/utils/useKeyboardLayout.web.ts +6 -0
- package/src/utils/usePlatformBasedFetchPolicy.ts +19 -0
- package/src/utils/usePlatformBasedValue.native.ts +5 -0
- package/src/utils/usePlatformBasedValue.ts +33 -0
- package/tsconfig.eslint.json +6 -0
- package/tsconfig.json +43 -0
- package/vitest-package-mocks.ts +76 -0
- package/vitest-setup.ts +246 -0
- package/vitest.config.ts +86 -0
|
@@ -0,0 +1,2919 @@
|
|
|
1
|
+
{
|
|
2
|
+
"account.authHeader.claimReward": "Nhận phần thưởng {{amount}}",
|
|
3
|
+
"account.cloud.backup.subtitle": "Có nhiều cụm từ khôi phục được sao lưu vào {{cloudProviderName}} của bạn.",
|
|
4
|
+
"account.cloud.backup.title": "Chọn bản sao lưu để khôi phục",
|
|
5
|
+
"account.cloud.button.restore.android": "Khôi phục từ Google Drive",
|
|
6
|
+
"account.cloud.button.restore.ios": "Khôi phục từ iCloud",
|
|
7
|
+
"account.cloud.empty.description": "Có vẻ như bạn chưa sao lưu bất kỳ cụm từ khôi phục nào vào {{cloudProviderName}}.",
|
|
8
|
+
"account.cloud.empty.title": "Không tìm thấy bản sao lưu nào",
|
|
9
|
+
"account.cloud.error.backup.message": "Không thể nhập bản sao lưu do thiếu quyền truy cập, quá trình xác thực bị gián đoạn hoặc do lỗi đám mây",
|
|
10
|
+
"account.cloud.error.backup.title": "Lỗi khi nhập bản sao lưu",
|
|
11
|
+
"account.cloud.error.password.title": "Mật khẩu không hợp lệ. Vui lòng thử lại.",
|
|
12
|
+
"account.cloud.error.unavailable.button.cancel": "Không phải bây giờ",
|
|
13
|
+
"account.cloud.error.unavailable.button.settings": "Đi tới mục cài đặt",
|
|
14
|
+
"account.cloud.error.unavailable.message.android": "Vui lòng xác minh rằng bạn đã đăng nhập vào tài khoản Google có bật Google Drive trên thiết bị này và thử lại.",
|
|
15
|
+
"account.cloud.error.unavailable.message.ios": "Vui lòng xác minh rằng bạn đã đăng nhập vào Apple ID có bật iCloud Drive trên thiết bị này và thử lại.",
|
|
16
|
+
"account.cloud.error.unavailable.title.android": "Google Drive không khả dụng",
|
|
17
|
+
"account.cloud.error.unavailable.title.ios": "iCloud Drive không khả dụng",
|
|
18
|
+
"account.cloud.loading.title": "Đang tìm kiếm bản sao lưu...",
|
|
19
|
+
"account.cloud.lockout.time.hours_one": "Quá nhiều lần thử. Hãy thử lại sau 1 giờ.",
|
|
20
|
+
"account.cloud.lockout.time.hours_other": "Quá nhiều lần thử. Hãy thử lại sau {{count}} giờ.",
|
|
21
|
+
"account.cloud.lockout.time.minutes_one": "Quá nhiều lần thử. Hãy thử lại sau 1 phút.",
|
|
22
|
+
"account.cloud.lockout.time.minutes_other": "Quá nhiều lần thử. Hãy thử lại sau {{count}} phút.",
|
|
23
|
+
"account.cloud.password.input": "Nhập mật khẩu",
|
|
24
|
+
"account.cloud.password.recoveryPhrase": "Thay bằng nhập cụm từ khôi phục",
|
|
25
|
+
"account.cloud.password.subtitle": "Cần mật khẩu này để khôi phục bản sao lưu cụm từ khôi phục của bạn từ {{cloudProviderName}}.",
|
|
26
|
+
"account.cloud.password.title": "Nhập mật khẩu sao lưu",
|
|
27
|
+
"account.downloadWallet.subtitle": "Sao lưu ví, giao dịch mọi lúc mọi nơi, nhận cảnh báo giá tức thời và nhiều hơn nữa.",
|
|
28
|
+
"account.drawer.gitHash": "Git hash: ",
|
|
29
|
+
"account.drawer.gitVersion": "Phiên bản: ",
|
|
30
|
+
"account.drawer.modal.body": "Lưu trữ và hoán đổi token an toàn với ứng dụng Lux. Khả dụng trên iOS và Android.",
|
|
31
|
+
"account.drawer.modal.dont": "Bạn chưa có Lux Wallet?",
|
|
32
|
+
"account.drawer.modal.scan": "Quét bằng Lux Wallet",
|
|
33
|
+
"account.passkey.delete.acknowledge": "Tôi đã sao lưu cụm từ khôi phục và hiểu rằng Lux Labs không thể giúp tôi khôi phục ví của mình nếu tôi không sao lưu cụm từ khôi phục.",
|
|
34
|
+
"account.passkey.delete.description": "Hãy đảm bảo bạn đã sao lưu cụm từ khôi phục bằng ứng dụng Lux trên di động hoặc tiện ích mở rộng Lux cho trình duyệt.",
|
|
35
|
+
"account.passkey.delete.descriptionEmphasized": "Bạn có thể không truy cập được ví của mình nếu không có cụm từ khôi phục.",
|
|
36
|
+
"account.passkey.delete.speedbump.description": "Trước khi tiếp tục, hãy hoàn tất các bước sau để tránh mất quyền truy cập vào ví và quỹ của mình.",
|
|
37
|
+
"account.passkey.delete.speedbump.step1": "Tải xuống ứng dụng Lux trên di động hoặc tiện ích mở rộng Lux cho trình duyệt",
|
|
38
|
+
"account.passkey.delete.speedbump.step2": "Sao lưu cụm từ khôi phục",
|
|
39
|
+
"account.passkey.delete.speedbump.title": "Bạn chắc chứ?",
|
|
40
|
+
"account.passkey.delete.title": "Xóa khóa mật mã?",
|
|
41
|
+
"account.passkey.log.in.title": "Đăng nhập bằng khóa mật mã",
|
|
42
|
+
"account.passkey.type.crossplatform": "Điện thoại, máy tính bảng hoặc khóa bảo mật",
|
|
43
|
+
"account.passkey.type.platform": "Trình duyệt hoặc hệ điều hành",
|
|
44
|
+
"account.passkey.verify.button": "Xác minh bằng khóa mật mã",
|
|
45
|
+
"account.passkey.verify.description": "Để tiếp tục, vui lòng xác minh danh tính bằng khóa mật mã. Thao tác này giúp bảo vệ tài khoản của bạn.",
|
|
46
|
+
"account.passkey.verify.title": "Trước tiên, bạn cần xác minh danh tính",
|
|
47
|
+
"account.portfolio.activity.canceledBelow": "Lệnh này bị hủy vì số dư của bạn thấp hơn số tiền đầu vào.",
|
|
48
|
+
"account.portfolio.activity.signLimit": "Lệnh này sẽ không được khớp do số dư của bạn thấp hơn số tiền nhập. Hãy tăng số dư để khắc phục.",
|
|
49
|
+
"account.recoveryPhrase.education.part1": "Cụm từ khôi phục (hay cụm từ hạt giống) là một <highlight>tập hợp các từ</highlight> cần thiết để truy cập ví của bạn, <highlight>giống như một mật khẩu.</highlight>",
|
|
50
|
+
"account.recoveryPhrase.education.part2": "Bạn có thể <highlight>nhập</highlight> cụm từ khôi phục trên thiết bị mới <highlight>để khôi phục ví</highlight> và những thứ bên trong ví.",
|
|
51
|
+
"account.recoveryPhrase.education.part3": "Tuy nhiên, nếu bạn <highlight>mất cụm từ khôi phục</highlight>, bạn sẽ <highlight>mất quyền truy cập</highlight> vào ví của mình.",
|
|
52
|
+
"account.recoveryPhrase.education.part4": "Thay vì ghi nhớ cụm từ khôi phục, bạn có thể <highlight>sao lưu cụm từ này vào {{cloudProviderName}}</highlight> và bảo vệ bằng mật khẩu.",
|
|
53
|
+
"account.recoveryPhrase.education.part5": "Bạn cũng có thể sao lưu cụm từ khôi phục của mình theo cách thủ công, chính là <highlight>ghi lại</highlight> và cất giữ ở nơi an toàn.",
|
|
54
|
+
"account.recoveryPhrase.education.part6": "Chúng tôi khuyên bạn nên <highlight>sử dụng cả hai cách sao lưu</highlight>, vì nếu mất cụm từ khôi phục, bạn sẽ không thể khôi phục ví của mình.",
|
|
55
|
+
"account.recoveryPhrase.error.invalid": "Cụm từ không hợp lệ",
|
|
56
|
+
"account.recoveryPhrase.error.invalidWord": "Từ không hợp lệ: {{word}}",
|
|
57
|
+
"account.recoveryPhrase.error.phraseLength": "Cụm từ khôi phục phải dài 12-24 từ",
|
|
58
|
+
"account.recoveryPhrase.error.wordIsAddress": "Bạn vừa nhập địa chỉ thay vì cụm từ khôi phục",
|
|
59
|
+
"account.recoveryPhrase.error.wrong": "Cụm từ khôi phục sai",
|
|
60
|
+
"account.recoveryPhrase.helpText.import": "Làm cách nào để tìm thấy cụm từ khôi phục của tôi?",
|
|
61
|
+
"account.recoveryPhrase.helpText.restoring": "Hãy thử tìm kiếm lại",
|
|
62
|
+
"account.recoveryPhrase.input": "Nhập cụm từ khôi phục của bạn",
|
|
63
|
+
"account.recoveryPhrase.remove.final.description": "Hãy đảm bảo rằng bạn đã ghi lại cụm từ khôi phục hoặc sao lưu cụm từ này vào {{cloudProviderName}}. <highlight>Nếu mất, bạn sẽ không thể truy cập vào quỹ của mình.</highlight>",
|
|
64
|
+
"account.recoveryPhrase.remove.final.title": "Bạn đang xóa <highlight>cụm từ khôi phục</highlight> của mình",
|
|
65
|
+
"account.recoveryPhrase.remove.import.description": "Bạn chỉ có thể lưu giữ một cụm từ khôi phục tại một thời điểm. Để tiếp tục nhập cụm từ mới, bạn cần xóa cụm từ khôi phục hiện tại và các ví liên quan khỏi thiết bị này.",
|
|
66
|
+
"account.recoveryPhrase.remove.initial.description": "Thao tác này sẽ xóa ví của bạn cùng với cụm từ khôi phục khỏi thiết bị.",
|
|
67
|
+
"account.recoveryPhrase.remove.initial.title": "Bạn đang xóa <highlight>{{walletName}}</highlight>",
|
|
68
|
+
"account.recoveryPhrase.remove.mnemonic.description": "Cụm từ khôi phục của bạn vẫn được lưu trữ đến khi bạn xóa toàn bộ các ví còn lại.",
|
|
69
|
+
"account.recoveryPhrase.subtitle.import": "Cụm từ khôi phục của bạn sẽ chỉ được lưu trữ cục bộ trên thiết bị.",
|
|
70
|
+
"account.recoveryPhrase.subtitle.restoring": "Nhập cụm từ khôi phục của bạn bên dưới hoặc thử tìm kiếm lại bản sao lưu.",
|
|
71
|
+
"account.recoveryPhrase.title.import": "Nhập cụm từ khôi phục của bạn",
|
|
72
|
+
"account.recoveryPhrase.title.restoring": "Không tìm thấy bản sao lưu nào",
|
|
73
|
+
"account.wallet.action.copy": "Sao chép địa chỉ",
|
|
74
|
+
"account.wallet.action.manageConnections": "Quản lý kết nối",
|
|
75
|
+
"account.wallet.action.report": "Báo cáo hồ sơ",
|
|
76
|
+
"account.wallet.action.viewExplorer": "Xem trên {{blockExplorerName}}",
|
|
77
|
+
"account.wallet.button.add": "Thêm ví",
|
|
78
|
+
"account.wallet.button.addViewOnly": "Thêm ví chỉ xem",
|
|
79
|
+
"account.wallet.button.create": "Tạo ví mới",
|
|
80
|
+
"account.wallet.button.import": "Nhập ví mới",
|
|
81
|
+
"account.wallet.button.manage": "Cài đặt ví",
|
|
82
|
+
"account.wallet.button.remove": "Xóa ví",
|
|
83
|
+
"account.wallet.button.watch": "Theo dõi ví",
|
|
84
|
+
"account.wallet.create.placeholder": "Ví {{index}}",
|
|
85
|
+
"account.wallet.edit.label.input.placeholder": "Nhãn ví",
|
|
86
|
+
"account.wallet.header.button.disabled.title": "Chỉnh sửa hồ sơ",
|
|
87
|
+
"account.wallet.header.button.title": "Chỉnh sửa nhãn",
|
|
88
|
+
"account.wallet.header.viewOnly": "Ví chỉ xem",
|
|
89
|
+
"account.wallet.menu.claimUsername": "Nhận tên người dùng",
|
|
90
|
+
"account.wallet.menu.copy.title": "Sao chép địa chỉ ví",
|
|
91
|
+
"account.wallet.menu.edit.title": "Chỉnh sửa nhãn",
|
|
92
|
+
"account.wallet.menu.manageConnections": "Quản lý kết nối",
|
|
93
|
+
"account.wallet.menu.remove.title": "Xóa ví",
|
|
94
|
+
"account.wallet.remove.check": "Tôi đã sao lưu cụm từ khôi phục và hiểu rằng Lux Labs không thể giúp tôi khôi phục ví nếu tôi không làm điều đó.",
|
|
95
|
+
"account.wallet.remove.title": "Xóa {{name}}",
|
|
96
|
+
"account.wallet.remove.viewOnly": "Bạn luôn có thể thêm lại ví chỉ xem bằng cách nhập địa chỉ ví.",
|
|
97
|
+
"account.wallet.restore.new_device.description": "Vì đang sử dụng thiết bị mới nên bạn cần nhập cụm từ khôi phục hoặc mật khẩu sao lưu đám mây để tiếp tục.",
|
|
98
|
+
"account.wallet.restore.new_device.title": "Khôi phục ví của bạn",
|
|
99
|
+
"account.wallet.restore.seed_phrase.description": "Không tìm thấy cụm từ khôi phục trên thiết bị này. Để không bao giờ mất quyền truy cập vào quỹ của mình, vui lòng phục hồi ví của bạn.",
|
|
100
|
+
"account.wallet.restore.seed_phrase.title": "Khôi phục ví của bạn",
|
|
101
|
+
"account.wallet.select.error": "Không thể tải địa chỉ",
|
|
102
|
+
"account.wallet.select.loading.subtitle": "Ví của bạn sẽ xuất hiện bên dưới.",
|
|
103
|
+
"account.wallet.select.loading.title": "Đang tìm kiếm ví",
|
|
104
|
+
"account.wallet.select.smartWalletDisclaimer": "Theo cài đặt mặc định, tất cả các ví đủ điều kiện sẽ sử dụng tính năng ví thông minh sau khi bạn nhập ví. <highlight>Ví thông minh là gì?</highlight>",
|
|
105
|
+
"account.wallet.select.title_one_one": "Đã tìm thấy một ví",
|
|
106
|
+
"account.wallet.select.title_one_other": "Chọn ví để nhập",
|
|
107
|
+
"account.wallet.viewOnly.button": "Nhập ví",
|
|
108
|
+
"account.wallet.viewOnly.description": "Để hoán đổi, mua, gửi và nhận token, bạn cần nhập cụm từ khôi phục của ví này.",
|
|
109
|
+
"account.wallet.viewOnly.title": "Ví này ở chế độ chỉ xem",
|
|
110
|
+
"account.wallet.watch.error.alreadyImported": "Địa chỉ này đã được nhập",
|
|
111
|
+
"account.wallet.watch.error.notFound": "Không tìm thấy địa chỉ",
|
|
112
|
+
"account.wallet.watch.error.smartContract": "Địa chỉ là một hợp đồng thông minh",
|
|
113
|
+
"account.wallet.watch.message": "Việc thêm ví chỉ xem cho phép bạn dùng thử ứng dụng hoặc theo dõi ví. Bạn sẽ không thể hoán đổi hoặc gửi quỹ.",
|
|
114
|
+
"account.wallet.watch.placeholder": "ENS hoặc địa chỉ",
|
|
115
|
+
"account.wallet.watch.title": "Nhập địa chỉ ví",
|
|
116
|
+
"activity.list.noFilterResults.button": "Bỏ lọc",
|
|
117
|
+
"activity.list.noFilterResults.title": "Không có hoạt động nào phù hợp với bộ lọc của bạn",
|
|
118
|
+
"activity.list.none.button": "Xem hoạt độn",
|
|
119
|
+
"activity.list.none.description.default": "Các giao dịch mà bạn thực hiện sẽ xuất hiện ở đây.",
|
|
120
|
+
"activity.list.none.title": "Chưa có hoạt động nào",
|
|
121
|
+
"activity.list.noneOnChain.title": "Chưa có hoạt động nào trên {{chainName}}",
|
|
122
|
+
"activity.pending": "{{pendingActivityCount}} đang chờ xử lý",
|
|
123
|
+
"activity.recentActivity": "Hoạt động gần đây",
|
|
124
|
+
"activity.transaction.claim.descriptor": "Đã nhận {{amountWithSymbol}}",
|
|
125
|
+
"activity.transaction.lpRewards.descriptor": "Đã thu phần thưởng {{symbol}}",
|
|
126
|
+
"activity.transaction.send.descriptor": "{{amountWithSymbol}} đến {{walletAddress}}",
|
|
127
|
+
"activity.transaction.submitBid.descriptor": "{{amountWithSymbol}} đã được đặt giá chào mua cho {{walletAddress}}",
|
|
128
|
+
"activity.transaction.swap.descriptor": "{{amountWithSymbolA}} đổi lấy {{amountWithSymbolB}}",
|
|
129
|
+
"activity.transaction.tokens.descriptor": "{{amountWithSymbolA}} và {{amountWithSymbolB}}",
|
|
130
|
+
"activity.transaction.withdrawAndClaim.descriptor": "Đã rút {{withdrawnAmount}} và đã nhận {{claimedAmount}}",
|
|
131
|
+
"addLiquidity.shareOfPool": "Cổ phần trong pool",
|
|
132
|
+
"addressInput.recipient": "Người nhận",
|
|
133
|
+
"analytics.allow": "Cho phép phân tích",
|
|
134
|
+
"analytics.allow.message": "Chúng tôi sử dụng dữ liệu ẩn danh để nâng cao trải nghiệm của bạn với các sản phẩm của Lux Labs.",
|
|
135
|
+
"appRating.button.notReally": "Không hẳn",
|
|
136
|
+
"appRating.description": "Hãy cho chúng tôi biết trải nghiệm của bạn với ứng dụng này có tốt không",
|
|
137
|
+
"appRating.extension.review.description": "Hãy đưa ra xếp hạng sao và để lại đánh giá trên Chrome Web Store.",
|
|
138
|
+
"appRating.extension.review.title": "Đánh giá Tiện ích mở rộng Lux?",
|
|
139
|
+
"appRating.extension.title": "Bạn thích Tiện ích mở rộng Lux chứ?",
|
|
140
|
+
"appRating.feedback.button.send": "Gửi phản hồi",
|
|
141
|
+
"appRating.feedback.description": "Hãy cho chúng tôi biết cách chúng tôi có thể nâng cao trải nghiệm của bạn",
|
|
142
|
+
"appRating.feedback.title": "Chúng tôi rất tiếc khi nghe điều đó.",
|
|
143
|
+
"appRating.mobile.title": "Bạn thích Lux Wallet chứ?",
|
|
144
|
+
"auctions.table.search.placeholder": "Tìm kiếm phiên đấu giá",
|
|
145
|
+
"bridgedAsset.modal.button": "Tiếp tục hoán đổi",
|
|
146
|
+
"bridgedAsset.modal.description": "Đây là phiên bản {{chainName}} của {{currencySymbol}}, được neo giá và giữ nguyên giá so với {{currencySymbol}} gốc.",
|
|
147
|
+
"bridgedAsset.modal.feature.securelyBacked": "Neo giá an toàn",
|
|
148
|
+
"bridgedAsset.modal.feature.securelyBacked.description": "Neo giá 1:1 với {{currencySymbol}} gốc.",
|
|
149
|
+
"bridgedAsset.modal.feature.tradeSeamlessly": "Giao dịch liền mạch",
|
|
150
|
+
"bridgedAsset.modal.feature.tradeSeamlessly.description": "Mua và bán {{currencySymbol}} mà không cần rời Lux.",
|
|
151
|
+
"bridgedAsset.modal.feature.withdrawToNativeChain": "Rút sang {{nativeChainName}}",
|
|
152
|
+
"bridgedAsset.modal.feature.withdrawToNativeChain.description": "Bắc cầu về mạng gốc bất cứ lúc nào.",
|
|
153
|
+
"bridgedAsset.modal.title": "Giao dịch {{currencySymbol}} trên {{chainName}}",
|
|
154
|
+
"bridgedAsset.send.warning.description": "Bạn đang gửi phiên bản được bao bọc của {{currencySymbol}} trên {{chainName}}. Bạn sẽ mất quỹ tài sản này vĩnh viễn nếu gửi đến một sàn giao dịch tập trung.",
|
|
155
|
+
"bridgedAsset.send.warning.title": "Đảm bảo rằng bạn đang gửi đến một địa chỉ tương thích",
|
|
156
|
+
"bridgedAsset.tdp.description": "Đây là phiên bản bắc cầu của {{currencySymbol}}, được neo giá 1:1 với {{currencySymbol}} gốc.",
|
|
157
|
+
"bridgedAsset.wormhole.button": "Chuyển sang {{provider}}",
|
|
158
|
+
"bridgedAsset.wormhole.description": "Chuyển sang cổng thông tin {{provider}} để bắc cầu {{currencySymbol}} của bạn từ {{chainName}} sang {{nativeChainName}}.",
|
|
159
|
+
"bridgedAsset.wormhole.title": "Rút {{currencySymbol}} sang {{nativeChainName}}",
|
|
160
|
+
"bridgedAsset.wormhole.toNativeChain": "sang {{nativeChainName}}",
|
|
161
|
+
"bridgedAsset.wormhole.withdrawToNativeChain": "Rút sang {{nativeChainName}}",
|
|
162
|
+
"bridging.estimatedTime.minutesAndSeconds": "~{{minutes}} phút {{seconds}} giây",
|
|
163
|
+
"bridging.estimatedTime.minutesOnly": "~{{minutes}} phút",
|
|
164
|
+
"bridging.estimatedTime.secondsOnly": "~{{seconds}} giây",
|
|
165
|
+
"bridgingPopularTokens.banner.description": "Giờ đây, DOGE, XRP, XPL và ZEC đã có sẵn trên Unichain.",
|
|
166
|
+
"chart.error.pools": "Không thể hiển thị dữ liệu lịch sử cho pool hiện tại.",
|
|
167
|
+
"chart.error.tokens": "Không thể hiển thị dữ liệu lịch sử cho token hiện tại.",
|
|
168
|
+
"chart.missingData": "Thiếu dữ liệu biểu đồ",
|
|
169
|
+
"chart.price.label.close": "Đóng",
|
|
170
|
+
"chart.price.label.high": "Cao",
|
|
171
|
+
"chart.price.label.low": "Thấp",
|
|
172
|
+
"chart.price.label.open": "Mở",
|
|
173
|
+
"chart.settings.unavailable.label": "Cài đặt này không khả dụng cho biểu đồ hiện tại",
|
|
174
|
+
"claim.thanks": "Cảm ơn bạn đã tham gia cộng đồng Lux <heart />",
|
|
175
|
+
"claim.uni.arrived": "UNI đã đến",
|
|
176
|
+
"common.about": "Giới thiệu",
|
|
177
|
+
"common.accept": "Chấp nhận",
|
|
178
|
+
"common.active": "Đang hoạt động",
|
|
179
|
+
"common.activeNetworks": "Các mạng đang hoạt động",
|
|
180
|
+
"common.activity": "Hoạt động",
|
|
181
|
+
"common.add.label": "Thêm",
|
|
182
|
+
"common.add.liquidity.canceled": "Đã hủy thêm thanh khoản",
|
|
183
|
+
"common.addLiquidity": "Thêm thanh khoản",
|
|
184
|
+
"common.address": "Address",
|
|
185
|
+
"common.address.chain": "Địa chỉ {{chainName}}",
|
|
186
|
+
"common.addresses.count_one": "{{count}} địa chỉ",
|
|
187
|
+
"common.addresses.count_other": "{{count}} địa chỉ",
|
|
188
|
+
"common.addressOrENS": "Địa chỉ ví hoặc tên ENS",
|
|
189
|
+
"common.advanced": "Nâng cao",
|
|
190
|
+
"common.ago": "trước",
|
|
191
|
+
"common.all": "Tất cả",
|
|
192
|
+
"common.allTime": "Mọi thời điểm",
|
|
193
|
+
"common.and": "và",
|
|
194
|
+
"common.app": "Ứng dụng",
|
|
195
|
+
"common.approved": "Đã phê duyệt",
|
|
196
|
+
"common.approvedSpend": "Đã phê duyệt {{symbol}}",
|
|
197
|
+
"common.approvePending": "Đang chờ phê duyệt",
|
|
198
|
+
"common.approvePermitTx": "Phê duyệt yêu cầu {{indexText}}",
|
|
199
|
+
"common.approvePermitTx.active": "Phê duyệt yêu cầu {{indexText}} trong ví",
|
|
200
|
+
"common.approvePermitTx.explainer": "Phê duyệt Permit2 là gì?",
|
|
201
|
+
"common.approvePermitTx.pending": "Đang phê duyệt yêu cầu {{indexText}}...",
|
|
202
|
+
"common.approveSpend": "Phê duyệt {{symbol}}",
|
|
203
|
+
"common.approving": "Đang phê duyệt",
|
|
204
|
+
"common.approximatelyValue": "~{{value}}",
|
|
205
|
+
"common.areYouSure": "Bạn có chắc chắn không?",
|
|
206
|
+
"common.automatic": "Tự động",
|
|
207
|
+
"common.availableIn": "Lux khả dụng tại: <locale />",
|
|
208
|
+
"common.availableOnIOSAndroidChrome": "Khả dụng trên iOS, Android và Chrome",
|
|
209
|
+
"common.backToPositions": "Quay lại vị thế",
|
|
210
|
+
"common.bestRoute": "Tuyến",
|
|
211
|
+
"common.bestRoute.with": "Định tuyến qua {{provider}}",
|
|
212
|
+
"common.biometrics.generic": "Sinh trắc học",
|
|
213
|
+
"common.biometrics.touchId": "Touch ID",
|
|
214
|
+
"common.biometrics.windowsHello": "Windows Hello",
|
|
215
|
+
"common.blocked.ifError": "Nếu bạn cho rằng đây là lỗi, vui lòng gửi email kèm địa chỉ của bạn tới <emailAddress />",
|
|
216
|
+
"common.blocked.reason": "Địa chỉ này bị chặn trên giao diện Lux Labs vì được liên kết với một hoặc nhiều <link>hoạt động bị chặn</link>.",
|
|
217
|
+
"common.blockedAddress": "Địa chỉ bị chặn",
|
|
218
|
+
"common.blog": "Blog",
|
|
219
|
+
"common.bought": "Đã mua",
|
|
220
|
+
"common.brandAssets": "Tài sản thương hiệu",
|
|
221
|
+
"common.button.accept": "Chấp nhận",
|
|
222
|
+
"common.button.back": "Quay lại",
|
|
223
|
+
"common.button.buy": "Mua",
|
|
224
|
+
"common.button.cancel": "Hủy",
|
|
225
|
+
"common.button.checkin": "Điểm danh",
|
|
226
|
+
"common.button.close": "Đóng",
|
|
227
|
+
"common.button.confirm": "Xác nhận",
|
|
228
|
+
"common.button.connect": "Kết nối",
|
|
229
|
+
"common.button.continue": "Tiếp tục",
|
|
230
|
+
"common.button.copied": "Đã sao chép",
|
|
231
|
+
"common.button.copy": "Sao chép",
|
|
232
|
+
"common.button.create": "Tạo",
|
|
233
|
+
"common.button.delete": "Xóa",
|
|
234
|
+
"common.button.disable": "Tắt",
|
|
235
|
+
"common.button.disabling": "Đang tắt",
|
|
236
|
+
"common.button.disconnect": "Ngắt kết nối",
|
|
237
|
+
"common.button.dismiss": "Bỏ qua",
|
|
238
|
+
"common.button.done": "Xong",
|
|
239
|
+
"common.button.edit": "Chỉnh sửa",
|
|
240
|
+
"common.button.enable": "Bật",
|
|
241
|
+
"common.button.finish": "Hoàn tất",
|
|
242
|
+
"common.button.goBack": "Quay lại",
|
|
243
|
+
"common.button.later": "Để sau",
|
|
244
|
+
"common.button.learn": "Tìm hiểu thêm",
|
|
245
|
+
"common.button.next": "Tiếp",
|
|
246
|
+
"common.button.notNow": "Không phải bây giờ",
|
|
247
|
+
"common.button.ok": "OK",
|
|
248
|
+
"common.button.paste": "Dán",
|
|
249
|
+
"common.button.pay": "Thanh toán",
|
|
250
|
+
"common.button.proceed": "Tiếp tục",
|
|
251
|
+
"common.button.receive": "Nhận",
|
|
252
|
+
"common.button.remove": "Xóa",
|
|
253
|
+
"common.button.reset": "Đặt lại",
|
|
254
|
+
"common.button.retry": "Thử lại",
|
|
255
|
+
"common.button.reveal": "Hiện",
|
|
256
|
+
"common.button.review": "Xem lại",
|
|
257
|
+
"common.button.save": "Lưu",
|
|
258
|
+
"common.button.scrollDown": "Cuộn xuống",
|
|
259
|
+
"common.button.sell": "Bán",
|
|
260
|
+
"common.button.send": "Gửi",
|
|
261
|
+
"common.button.setup": "Thiết lập",
|
|
262
|
+
"common.button.share": "Chia sẻ",
|
|
263
|
+
"common.button.showLess": "Ẩn bớt",
|
|
264
|
+
"common.button.showMore": "Hiện thêm",
|
|
265
|
+
"common.button.sign": "Ký",
|
|
266
|
+
"common.button.skip": "Bỏ qua",
|
|
267
|
+
"common.button.swap": "Hoán đổi",
|
|
268
|
+
"common.button.tryAgain": "Thử lại",
|
|
269
|
+
"common.button.understand": "Tôi đã hiểu",
|
|
270
|
+
"common.button.unlock": "Mở khóa",
|
|
271
|
+
"common.button.view": "Xem",
|
|
272
|
+
"common.button.viewDetails": "Xem chi tiết",
|
|
273
|
+
"common.button.yes": "Có",
|
|
274
|
+
"common.buy.label": "Mua",
|
|
275
|
+
"common.buyAndSell": "Mua và bán trên Lux",
|
|
276
|
+
"common.cancellationSubmitted": "Đã gửi yêu cầu hủy",
|
|
277
|
+
"common.cancellationSuccessful": "Hủy thành công",
|
|
278
|
+
"common.cancelOrder": "Hủy lệnh",
|
|
279
|
+
"common.card.error.description": "Đã xảy ra lỗi",
|
|
280
|
+
"common.card.error.title": "Rất tiếc! Đã xảy ra lỗi.",
|
|
281
|
+
"common.careers": "Tuyển dụng",
|
|
282
|
+
"common.chain.networkCost": "Phí mạng {{chain}}",
|
|
283
|
+
"common.chart": "Biểu đồ",
|
|
284
|
+
"common.chromeExtension": "Tiện ích mở rộng",
|
|
285
|
+
"common.claim.failed": "Nhận không thành công",
|
|
286
|
+
"common.claimed": "Đã nhận",
|
|
287
|
+
"common.claiming": "Đang nhận",
|
|
288
|
+
"common.claimUnis": "Nhận token UNI của bạn",
|
|
289
|
+
"common.clear": "Xóa",
|
|
290
|
+
"common.close": "Đóng",
|
|
291
|
+
"common.closed": "Đã đóng",
|
|
292
|
+
"common.collect.button": "Thu",
|
|
293
|
+
"common.company": "Công ty",
|
|
294
|
+
"common.confirm": "Xác nhận",
|
|
295
|
+
"common.confirmCancellation": "Xác nhận hủy",
|
|
296
|
+
"common.confirmed": "Đã xác nhận",
|
|
297
|
+
"common.confirmSend.button": "Xác nhận gửi",
|
|
298
|
+
"common.confirmSwap": "Xác nhận hoán đổi trong ví",
|
|
299
|
+
"common.confirmTimedOut": "Đã hết thời gian xác nhận. Vui lòng thử lại.",
|
|
300
|
+
"common.confirmTransfer": "Xác nhận chuyển",
|
|
301
|
+
"common.confirmWallet": "Xác nhận trong ví",
|
|
302
|
+
"common.conjunction.and": "{{first}} và {{second}}",
|
|
303
|
+
"common.connect.button": "Kết nối",
|
|
304
|
+
"common.connectAWallet.button": "Kết nối ví",
|
|
305
|
+
"common.connectAWallet.button.evm": "Kết nối ví Ethereum",
|
|
306
|
+
"common.connectAWallet.button.evm.switch": "Chuyển ví Ethereum",
|
|
307
|
+
"common.connectAWallet.button.svm": "Kết nối ví Solana",
|
|
308
|
+
"common.connectAWallet.button.svm.switch": "Chuyển ví Solana",
|
|
309
|
+
"common.connectAWallet.button.switch": "Chuyển ví",
|
|
310
|
+
"common.connectTo": "Kết nối với {{platform}}",
|
|
311
|
+
"common.connectWallet.button": "Kết nối ví",
|
|
312
|
+
"common.contactUs.button": "Liên hệ",
|
|
313
|
+
"common.copied": "Đã sao chép",
|
|
314
|
+
"common.copy.address": "Sao chép địa chỉ",
|
|
315
|
+
"common.copy.poolId": "Sao chép ID pool",
|
|
316
|
+
"common.copyLink.button": "Sao chép liên kết",
|
|
317
|
+
"common.created.date": "Tạo vào {{date}}",
|
|
318
|
+
"common.currency": "Loại tiền",
|
|
319
|
+
"common.current": "Current",
|
|
320
|
+
"common.currentPrice": "Giá hiện tại",
|
|
321
|
+
"common.custom": "Tùy chỉnh",
|
|
322
|
+
"common.customRange": "Khoảng giá tùy chỉnh",
|
|
323
|
+
"common.dataOutdated": "Dữ liệu có thể đã cũ",
|
|
324
|
+
"common.day": "ngày",
|
|
325
|
+
"common.default": "Mặc định",
|
|
326
|
+
"common.deposit.toNetwork": "Nạp token vào mạng {{label}}.",
|
|
327
|
+
"common.depositing": "Đang nạp",
|
|
328
|
+
"common.depositTokens": "Nạp token",
|
|
329
|
+
"common.details": "Chi tiết",
|
|
330
|
+
"common.detected": "Đã phát hiện",
|
|
331
|
+
"common.developers": "Nhà phát triển",
|
|
332
|
+
"common.device": "Thiết bị này",
|
|
333
|
+
"common.device.other": "Thiết bị khác",
|
|
334
|
+
"common.dialog.dontShowAgain": "Không hiện lại",
|
|
335
|
+
"common.dismiss": "Bỏ qua",
|
|
336
|
+
"common.docs": "Tài liệu",
|
|
337
|
+
"common.donate": "Ủng hộ",
|
|
338
|
+
"common.done": "Xong",
|
|
339
|
+
"common.dontShowAgain": "Không hiện lại",
|
|
340
|
+
"common.download": "Tải xuống",
|
|
341
|
+
"common.downloadAppStore": "Tải xuống trên App Store",
|
|
342
|
+
"common.downloadPlayStore": "Tải xuống trên Play Store",
|
|
343
|
+
"common.downloadLuxApp": "Tải xuống ứng dụng Lux",
|
|
344
|
+
"common.downloadLuxWallet": "Tải Lux Wallet",
|
|
345
|
+
"common.dynamic": "Linh hoạt",
|
|
346
|
+
"common.edit.button": "Chỉnh sửa",
|
|
347
|
+
"common.ended": "Kết thúc",
|
|
348
|
+
"common.error.details": "Chi tiết lỗi",
|
|
349
|
+
"common.error.general": "Đã xảy ra lỗi",
|
|
350
|
+
"common.error.label": "Lỗi",
|
|
351
|
+
"common.error.request": "Rất tiếc, đã xảy ra lỗi khi xử lý yêu cầu của bạn. Hãy sao chép chi tiết lỗi này nếu bạn yêu cầu hỗ trợ.",
|
|
352
|
+
"common.error.somethingWrong": "Đã xảy ra lỗi!",
|
|
353
|
+
"common.errorConnecting.error": "Lỗi kết nối",
|
|
354
|
+
"common.errorLoadingData.error": "Lỗi tải dữ liệu",
|
|
355
|
+
"common.expiry": "Hết hạn",
|
|
356
|
+
"common.explore": "Tìm kiếm",
|
|
357
|
+
"common.explorer": "Trình duyệt",
|
|
358
|
+
"common.exploreTokens": "Tìm kiếm token",
|
|
359
|
+
"common.extension": "Tiện ích mở rộng Lux",
|
|
360
|
+
"common.failed": "Thất bại",
|
|
361
|
+
"common.failedSwitchNetwork": "Chuyển mạng không thành công",
|
|
362
|
+
"common.fee": "Phí",
|
|
363
|
+
"common.fees": "Phí",
|
|
364
|
+
"common.feesEarned": "Phí thu được",
|
|
365
|
+
"common.for": "Cho",
|
|
366
|
+
"common.free": "Miễn phí",
|
|
367
|
+
"common.fullRange": "Khoảng giá đầy đủ",
|
|
368
|
+
"common.getApp": "Tải ứng dụng",
|
|
369
|
+
"common.getHelp.button": "Nhận trợ giúp",
|
|
370
|
+
"common.getStarted": "Bắt đầu",
|
|
371
|
+
"common.getSupport.button": "Nhận hỗ trợ",
|
|
372
|
+
"common.getTheApp": "Tải ứng dụng",
|
|
373
|
+
"common.getLuxWallet": "Tải Lux Wallet",
|
|
374
|
+
"common.getLuxWallet.mobile": "Tải ứng dụng Lux trên di động",
|
|
375
|
+
"common.governance": "Quản trị",
|
|
376
|
+
"common.happyHolidays": "Chúc mừng ngày lễ từ đội ngũ Lux!",
|
|
377
|
+
"common.help": "Trợ giúp",
|
|
378
|
+
"common.helpCenter": "Trung tâm trợ giúp",
|
|
379
|
+
"common.hidden": "Đã ẩn",
|
|
380
|
+
"common.hide.button": "Ẩn",
|
|
381
|
+
"common.input.noRecipient.error": "Chọn người nhận",
|
|
382
|
+
"common.input.password.confirm": "Xác nhận mật khẩu",
|
|
383
|
+
"common.input.password.error.mismatch": "Mật khẩu không khớp",
|
|
384
|
+
"common.input.password.error.same": "Mật khẩu mới phải khác với mật khẩu hiện tại",
|
|
385
|
+
"common.input.password.error.weak": "Mật khẩu quá yếu",
|
|
386
|
+
"common.input.password.new": "Mật khẩu mới",
|
|
387
|
+
"common.input.password.placeholder": "Mật khẩu",
|
|
388
|
+
"common.input.password.strength.medium": "Trung bình",
|
|
389
|
+
"common.input.password.strength.strong": "Mạnh",
|
|
390
|
+
"common.input.password.strength.weak": "Yếu",
|
|
391
|
+
"common.input.search": "Tìm kiếm",
|
|
392
|
+
"common.insufficient.funds": "Không đủ quỹ",
|
|
393
|
+
"common.insufficientBalance.error": "Số dư không đủ",
|
|
394
|
+
"common.insufficientFundsForNetworkFee.error": "Không đủ quỹ để thanh toán phí mạng",
|
|
395
|
+
"common.insufficientTokenBalance.error": "Số dư {{tokenSymbol}} không đủ",
|
|
396
|
+
"common.insufficientTokenBalance.error.simple": "Không đủ {{tokenSymbol}}",
|
|
397
|
+
"common.invalidRecipient.error": "Người nhận không hợp lệ",
|
|
398
|
+
"common.iOSAndroid": "iOS và Android",
|
|
399
|
+
"common.language": "Ngôn ngữ",
|
|
400
|
+
"common.learnMoreLiquidity": "Tìm hiểu thêm về việc cung cấp thanh khoản",
|
|
401
|
+
"common.learnMoreSwap": "Tìm hiểu thêm về hoán đổi",
|
|
402
|
+
"common.legalAndPrivacy": "Pháp lý & quyền riêng tư",
|
|
403
|
+
"common.less": "Ít hơn",
|
|
404
|
+
"common.limit.cancel_one": "Hủy giới hạn",
|
|
405
|
+
"common.limit.cancel_other": "Hủy {{count}} giới hạn",
|
|
406
|
+
"common.limit.canceled": "Đã hủy lệnh giới hạn",
|
|
407
|
+
"common.limit.executed": "Đã thực thi giới hạn",
|
|
408
|
+
"common.limit.expired": "Giới hạn đã hết hạn",
|
|
409
|
+
"common.limit.failed": "Đặt giới hạn không thành công",
|
|
410
|
+
"common.limit.opened": "Đã mở giới hạn",
|
|
411
|
+
"common.limit.pending": "Giới hạn đang chờ",
|
|
412
|
+
"common.limits.approachMax": "Sắp đạt đến tối đa 100 giới hạn",
|
|
413
|
+
"common.limits.cancelProceed": "Hủy giới hạn để tiếp tục",
|
|
414
|
+
"common.limits.expiresIn": "Hết hạn trong {{duration}}",
|
|
415
|
+
"common.limits.open": "Mở giới hạn",
|
|
416
|
+
"common.links": "Liên kết",
|
|
417
|
+
"common.liquidity": "Thanh khoản",
|
|
418
|
+
"common.liquidity.provision": "Cung cấp thanh khoản",
|
|
419
|
+
"common.liquidity.removed": "Đã rút thanh khoản",
|
|
420
|
+
"common.loading": "Đang tải",
|
|
421
|
+
"common.longText.button.less": "Thu gọn",
|
|
422
|
+
"common.longText.button.more": "Đọc thêm",
|
|
423
|
+
"common.market.label": "Thị trường",
|
|
424
|
+
"common.marketPrice": "Giá thị trường",
|
|
425
|
+
"common.marketPrice.fetching": "Đang lấy giá thị trường...",
|
|
426
|
+
"common.marketPrice.unavailable": "Không tìm thấy giá thị trường. Vui lòng tự nghiên cứu để tránh mất quỹ.",
|
|
427
|
+
"common.max": "Tối đa",
|
|
428
|
+
"common.message": "Tin nhắn",
|
|
429
|
+
"common.migrate": "Di chuyển",
|
|
430
|
+
"common.migrate.liquidity.failed": "Di chuyển thanh khoản không thành công",
|
|
431
|
+
"common.migrate.position": "Di chuyển vị thế",
|
|
432
|
+
"common.migrated.liquidity": "Đã di chuyển thanh khoản",
|
|
433
|
+
"common.migrating.liquidity": "Đang di chuyển thanh khoản",
|
|
434
|
+
"common.min": "Tối thiểu",
|
|
435
|
+
"common.more": "Thêm",
|
|
436
|
+
"common.moreDetails": "Thêm thông tin chi tiết",
|
|
437
|
+
"common.navigation.settings": "Cài đặt",
|
|
438
|
+
"common.navigation.systemSettings": "Cài đặt",
|
|
439
|
+
"common.navigationButton": "Nút điều hướng",
|
|
440
|
+
"common.needHelp": "Cần trợ giúp?",
|
|
441
|
+
"common.networkCost": "Phí mạng",
|
|
442
|
+
"common.neverMind": "Bỏ qua",
|
|
443
|
+
"common.new": "Mới",
|
|
444
|
+
"common.new.exclamation": "Mới!",
|
|
445
|
+
"common.nft": "NFT",
|
|
446
|
+
"common.nfts": "NFT",
|
|
447
|
+
"common.noAmount.error": "Nhập số tiền",
|
|
448
|
+
"common.none": "Không có",
|
|
449
|
+
"common.noResults": "Không tìm thấy kết quả.",
|
|
450
|
+
"common.notAvailableInRegion.error": "Không khả dụng tại khu vực của bạn",
|
|
451
|
+
"common.notCreated.label": "Chưa được tạo",
|
|
452
|
+
"common.notSupported": "Không được hỗ trợ",
|
|
453
|
+
"common.oneDay": "1 ngày",
|
|
454
|
+
"common.oneDay.short": "1 ngày",
|
|
455
|
+
"common.oneHour.short": "1 giờ",
|
|
456
|
+
"common.oneMonth": "1 tháng",
|
|
457
|
+
"common.oneWeek": "1 tuần",
|
|
458
|
+
"common.oneYear": "1 năm",
|
|
459
|
+
"common.opensea.link": "Xem trên OpenSea",
|
|
460
|
+
"common.orderCanceled": "Đã hủy lệnh",
|
|
461
|
+
"common.orderExecuted": "Đã thực thi lệnh",
|
|
462
|
+
"common.orderExpired": "Lệnh đã hết hạn",
|
|
463
|
+
"common.orderPending": "Lệnh đang chờ",
|
|
464
|
+
"common.outOfRange": "Ngoài khoảng giá",
|
|
465
|
+
"common.pageNotFound": "Không tìm thấy trang!",
|
|
466
|
+
"common.passkey.count": "Khóa mật mã {{number}}",
|
|
467
|
+
"common.passkeys": "Khóa mật mã",
|
|
468
|
+
"common.passkeys.add": "Thêm khóa mật mã",
|
|
469
|
+
"common.passkeys.add.description": "Chọn nơi lưu khóa mật mã mới.",
|
|
470
|
+
"common.pastDay": "Ngày hôm qua",
|
|
471
|
+
"common.pastFiveMinutes": "5 phút trước",
|
|
472
|
+
"common.pastHour": "Giờ trước",
|
|
473
|
+
"common.pastMonth": "Tháng trước",
|
|
474
|
+
"common.pastWeek": "Tuần trước",
|
|
475
|
+
"common.pastYear": "Năm trước",
|
|
476
|
+
"common.pending": "Đang chờ",
|
|
477
|
+
"common.pending.cancellation": "Đang chờ hủy",
|
|
478
|
+
"common.pendingEllipsis": "Đang chờ...",
|
|
479
|
+
"common.permit": "Permit",
|
|
480
|
+
"common.plusMore": "+{{number}} nữa",
|
|
481
|
+
"common.pool": "Pool",
|
|
482
|
+
"common.pools": "Pool",
|
|
483
|
+
"common.portfolio": "Danh mục đầu tư",
|
|
484
|
+
"common.poweredBy": "Được cung cấp bởi <name />",
|
|
485
|
+
"common.price": "Giá",
|
|
486
|
+
"common.priceUpdated": "Đã cập nhật giá",
|
|
487
|
+
"common.privacyChoices": "Lựa chọn quyền riêng tư của bạn",
|
|
488
|
+
"common.privacyChoices.checkbox.description": "Sau khi chọn, chúng tôi sẽ không chia sẻ dữ liệu của bạn với các đối tác bên thứ ba cho việc cá nhân hóa quảng cáo. Bạn có thể cho phép chia sẻ bất cứ lúc nào bằng cách bỏ chọn ô này.",
|
|
489
|
+
"common.privacyChoices.checkbox.label": "Không chia sẻ thông tin của tôi",
|
|
490
|
+
"common.privacyChoices.description": "Có thể chúng tôi sẽ chia sẻ mã nhận dạng thiết bị với các đối tác quảng cáo nhằm quảng cáo dịch vụ của mình trên các trang web và nền tảng khác. Nếu việc này bị xem là buôn bán, chia sẻ hay quảng cáo nhắm mục tiêu theo luật hiện hành, bạn có thể từ chối bằng cách chọn ô \"Không chia sẻ thông tin của tôi\". Để biết thêm thông tin về việc thực hành quyền riêng tư của chúng tôi, vui lòng xem <privacyLink>Chính sách quyền riêng tư</privacyLink>.",
|
|
491
|
+
"common.privacyChoices.disclaimer": "Vui lòng lưu ý rằng lựa chọn của bạn sẽ chỉ áp dụng cho trình duyệt trên thiết bị này. Bạn cũng có thể bỏ chọn bằng cách bật thiết lập Kiểm soát quyền riêng tư toàn cầu trong trình duyệt mà bạn dùng để truy cập dịch vụ của chúng tôi. Để xem thêm lựa chọn, hãy đi đến cài đặt của bạn.",
|
|
492
|
+
"common.privacyPolicy": "Chính sách về quyền riêng tư",
|
|
493
|
+
"common.proceed": "Tiếp tục",
|
|
494
|
+
"common.proceedInWallet": "Tiếp tục trong ví của bạn",
|
|
495
|
+
"common.products": "Sản phẩm",
|
|
496
|
+
"common.protocol": "Giao thức",
|
|
497
|
+
"common.protocol.v2": "AMM v2",
|
|
498
|
+
"common.protocol.v3": "AMM v3",
|
|
499
|
+
"common.protocol.v4": "AMM v4",
|
|
500
|
+
"common.purchased": "Đã mua",
|
|
501
|
+
"common.rate": "Tỷ giá",
|
|
502
|
+
"common.readMore": "Đọc thêm",
|
|
503
|
+
"common.receive": "Nhận",
|
|
504
|
+
"common.received": "Đã nhận",
|
|
505
|
+
"common.recent": "Gần đây",
|
|
506
|
+
"common.refresh": "Làm mới",
|
|
507
|
+
"common.reload.label": "Tải lại ứng dụng",
|
|
508
|
+
"common.remove.label": "Xóa",
|
|
509
|
+
"common.remove.liquidity.canceled": "Đã hủy rút thanh khoản",
|
|
510
|
+
"common.remove.liquidity.failed": "Rút thanh khoản không thành công",
|
|
511
|
+
"common.removing.liquidity": "Đang xóa thanh khoản",
|
|
512
|
+
"common.report": "Báo cáo",
|
|
513
|
+
"common.reported": "Đã báo cáo",
|
|
514
|
+
"common.resetLimit": "Đặt lại giới hạn {{symbol}}",
|
|
515
|
+
"common.resetLimitWallet": "Đặt lại giới hạn {{symbol}} trong ví",
|
|
516
|
+
"common.resettingLimit": "Đang đặt lại giới hạn {{symbol}}...",
|
|
517
|
+
"common.revoke.approval.failed": "Thu hồi phê duyệt không thành công",
|
|
518
|
+
"common.revoked.approval": "Đã thu hồi phê duyệt",
|
|
519
|
+
"common.revoking.approval": "Đang thu hồi phê duyệt",
|
|
520
|
+
"common.scanQRDownload": "Quét mã QR bằng điện thoại để tải xuống",
|
|
521
|
+
"common.selectRegion.label": "Chọn khu vực của bạn",
|
|
522
|
+
"common.selectToken.label": "Chọn token",
|
|
523
|
+
"common.sell.label": "Bán",
|
|
524
|
+
"common.send.button": "Gửi",
|
|
525
|
+
"common.send.failed": "Gửi không thành công",
|
|
526
|
+
"common.sending": "Đang gửi",
|
|
527
|
+
"common.sent": "Đã gửi",
|
|
528
|
+
"common.session.fail": "Your connection needs to be verified. This may resolve with an app restart.",
|
|
529
|
+
"common.session.fail.browser": "Your connection needs to be verified. This may resolve with a page refresh.",
|
|
530
|
+
"common.session.fail.title": "Connection error",
|
|
531
|
+
"common.settings": "Cài đặt",
|
|
532
|
+
"common.share": "Chia sẻ",
|
|
533
|
+
"common.share.copyPortfolioLink": "Sao chép liên kết danh mục đầu tư",
|
|
534
|
+
"common.share.shareToTwitter": "Chia sẻ lên Twitter",
|
|
535
|
+
"common.share.twitter.token": "Xem {{name}}",
|
|
536
|
+
"common.share.twitter.wallet": "Xem ví này:",
|
|
537
|
+
"common.show.button": "Hiện",
|
|
538
|
+
"common.showLess.button": "Ẩn bớt",
|
|
539
|
+
"common.showMore.button": "Hiện thêm",
|
|
540
|
+
"common.signatureExpired": "Chữ ký của bạn đã hết hạn.",
|
|
541
|
+
"common.signMessage": "Ký tin nhắn",
|
|
542
|
+
"common.signMessageWallet": "Ký tin nhắn trong ví",
|
|
543
|
+
"common.socials": "Mạng xã hội",
|
|
544
|
+
"common.sold": "Đã bán",
|
|
545
|
+
"common.stats": "Thống kê",
|
|
546
|
+
"common.status": "Trạng thái",
|
|
547
|
+
"common.step.number": "Bước {{number}}",
|
|
548
|
+
"common.step.number.of": "Bước {{current}} trên {{total}}",
|
|
549
|
+
"common.submit": "Gửi",
|
|
550
|
+
"common.swap": "Hoán đổi",
|
|
551
|
+
"common.swap.expired": "Hoán đổi đã hết hạn",
|
|
552
|
+
"common.swap.failed": "Hoán đổi không thành công",
|
|
553
|
+
"common.swapPending": "Đang chờ hoán đổi...",
|
|
554
|
+
"common.termsOfService": "Điều khoản dịch vụ",
|
|
555
|
+
"common.text.connected": "Đã kết nối",
|
|
556
|
+
"common.text.contract": "Hợp đồng",
|
|
557
|
+
"common.text.disconnected": "Đã ngắt kết nối",
|
|
558
|
+
"common.text.error": "Lỗi",
|
|
559
|
+
"common.text.notAvailable": "Không áp dụng",
|
|
560
|
+
"common.text.recipient": "Đến",
|
|
561
|
+
"common.text.sender": "Từ",
|
|
562
|
+
"common.text.unknown": "Không xác định",
|
|
563
|
+
"common.thisAccount": "tài khoản này",
|
|
564
|
+
"common.thisMonth": "Tháng này",
|
|
565
|
+
"common.thisToken": "Token này",
|
|
566
|
+
"common.thisWeek": "Tuần này",
|
|
567
|
+
"common.thisYear": "Năm nay",
|
|
568
|
+
"common.tick": "Tick",
|
|
569
|
+
"common.ticks": "Ticks",
|
|
570
|
+
"common.time": "Thời gian",
|
|
571
|
+
"common.time.justNow": "Vừa xong",
|
|
572
|
+
"common.time.past.days": "{{days}} ngày",
|
|
573
|
+
"common.time.past.days.short": "{{days}} ngày",
|
|
574
|
+
"common.time.past.hours": "{{hours}} giờ",
|
|
575
|
+
"common.time.past.hours.short": "{{hours}} giờ",
|
|
576
|
+
"common.time.past.minutes.short": "{{minutes}} phút",
|
|
577
|
+
"common.time.past.months.short": "{{months}} tháng",
|
|
578
|
+
"common.time.past.seconds.short": "{{seconds}} giây",
|
|
579
|
+
"common.to": "đến",
|
|
580
|
+
"common.today": "Hôm nay",
|
|
581
|
+
"common.tokenA": "Token A",
|
|
582
|
+
"common.tokenAmount": "Số lượng token",
|
|
583
|
+
"common.tokenB": "Token B",
|
|
584
|
+
"common.tokenName": "Tên token",
|
|
585
|
+
"common.tokens": "Token",
|
|
586
|
+
"common.totalLuxTVL": "Tổng TVL Lux",
|
|
587
|
+
"common.totalValueLocked": "TVL",
|
|
588
|
+
"common.trade": "Giao dịch",
|
|
589
|
+
"common.trademarkPolicy": "Chính sách về nhãn hiệu",
|
|
590
|
+
"common.transactionDetails": "Chi tiết giao dịch",
|
|
591
|
+
"common.transactionId": "ID giao dịch",
|
|
592
|
+
"common.transactionPending": "Giao dịch đang chờ xử lý",
|
|
593
|
+
"common.transactions": "Giao dịch",
|
|
594
|
+
"common.transfer_one": "chuyển",
|
|
595
|
+
"common.transfer_other": "chuyển",
|
|
596
|
+
"common.tryAgain.error": "Thử lại",
|
|
597
|
+
"common.twitter": "Twitter",
|
|
598
|
+
"common.type.label": "Loại",
|
|
599
|
+
"common.unavailable": "Không khả dụng",
|
|
600
|
+
"common.unhide": "Hiện",
|
|
601
|
+
"common.unichain": "Unichain",
|
|
602
|
+
"common.luxMobile": "Lux trên di động",
|
|
603
|
+
"common.luxWallet": "Ví Lux",
|
|
604
|
+
"common.luxX": "DEX",
|
|
605
|
+
"common.unknown": "Không xác định",
|
|
606
|
+
"common.unknownError.error": "Lỗi không xác định",
|
|
607
|
+
"common.unwrap.button": "Hủy bao bọc",
|
|
608
|
+
"common.unwrap.failed": "Hủy bao bọc không thành công",
|
|
609
|
+
"common.unwrapped": "Đã hủy bao bọc",
|
|
610
|
+
"common.unwrapping": "Đang hủy bao bọc",
|
|
611
|
+
"common.view.profile": "Xem hồ sơ",
|
|
612
|
+
"common.viewOnExplorer": "Xem trên Trình duyệt",
|
|
613
|
+
"common.volume": "Khối lượng",
|
|
614
|
+
"common.vote": "Biểu quyết",
|
|
615
|
+
"common.wallet.approve": "Phê duyệt trong ví",
|
|
616
|
+
"common.wallet.label": "Ví",
|
|
617
|
+
"common.walletAddress": "Địa chỉ ví",
|
|
618
|
+
"common.warning": "Cảnh báo",
|
|
619
|
+
"common.webApp": "Ứng dụng web",
|
|
620
|
+
"common.website": "Trang web",
|
|
621
|
+
"common.whyApprove": "Tại sao tôi lại phải phê duyệt token?",
|
|
622
|
+
"common.whySign": "Tại sao cần có chữ ký?",
|
|
623
|
+
"common.whyWrap": "Tại sao tôi phải bao bọc {{symbol}} của tôi?",
|
|
624
|
+
"common.withdraw": "Rút",
|
|
625
|
+
"common.withdrawal.amount": "Số tiền rút",
|
|
626
|
+
"common.withinRange": "Trong khoảng giá",
|
|
627
|
+
"common.wrap": "Bao bọc {{symbol}}",
|
|
628
|
+
"common.wrap.failed": "Bao bọc không thành công",
|
|
629
|
+
"common.wrapIn": "Bao bọc {{symbol}} trong ví",
|
|
630
|
+
"common.wrapped": "Đã bao bọc",
|
|
631
|
+
"common.wrapping": "Đang bao bọc",
|
|
632
|
+
"common.wrappingToken": "Đang bao bọc {{symbol}}...",
|
|
633
|
+
"common.yesterday": "Hôm qua",
|
|
634
|
+
"common.your.account.had.insufficient.funds": "Tài khoản của bạn không đủ quỹ để hoàn tất hoán đổi này.",
|
|
635
|
+
"common.your.account.has.insufficient.funds": "Tài khoản của bạn không đủ quỹ để hoàn tất hoán đổi này.",
|
|
636
|
+
"common.your.connected.wallet": "Ví đã kết nối của bạn",
|
|
637
|
+
"common.your.limit.could.not.be.fulfilled": "Không thể thực hiện lệnh giới hạn của bạn lúc này. Vui lòng thử lại.",
|
|
638
|
+
"common.your.swap.could.not.be.fulfilled": "Không thể thực hiện hoán đổi của bạn lúc này. Vui lòng thử lại.",
|
|
639
|
+
"common.youreBuying": "Bạn đang mua",
|
|
640
|
+
"common.youReceive": "Bạn nhận được",
|
|
641
|
+
"common.youreSelling": "Bạn đang bán",
|
|
642
|
+
"currency.ars": "Peso Argentina",
|
|
643
|
+
"currency.aud": "Đô la Úc",
|
|
644
|
+
"currency.brl": "Real Brazil",
|
|
645
|
+
"currency.cad": "Đô la Canada",
|
|
646
|
+
"currency.cny": "Nhân dân tệ",
|
|
647
|
+
"currency.cop": "Peso Colombia",
|
|
648
|
+
"currency.eur": "Euro",
|
|
649
|
+
"currency.gbp": "Bảng Anh",
|
|
650
|
+
"currency.hkd": "Đô la Hồng Kông",
|
|
651
|
+
"currency.idr": "Rupiah Indonesia",
|
|
652
|
+
"currency.inr": "Rupee Ấn Độ",
|
|
653
|
+
"currency.jpy": "Yên Nhật",
|
|
654
|
+
"currency.krw": "Won Hàn Quốc",
|
|
655
|
+
"currency.mxn": "Peso Mexico",
|
|
656
|
+
"currency.ngn": "Naira Nigeria",
|
|
657
|
+
"currency.nzd": "New Zealand Dollar",
|
|
658
|
+
"currency.pkr": "Rupee Pakistan",
|
|
659
|
+
"currency.rub": "Rúp Nga",
|
|
660
|
+
"currency.sgd": "Đô la Singapore",
|
|
661
|
+
"currency.try": "Lira Thổ Nhĩ Kỳ",
|
|
662
|
+
"currency.uah": "Hryvnia Ukraina",
|
|
663
|
+
"currency.usd": "Đô la Mỹ",
|
|
664
|
+
"currency.vnd": "Đồng Việt Nam",
|
|
665
|
+
"dapp.request.actionCannotBeCompleted.description": "Một số tính năng hiện không khả dụng vì một ứng dụng ví khác đang quản lý cài đặt ví thông minh của bạn.",
|
|
666
|
+
"dapp.request.actionCannotBeCompleted.header": "Yêu cầu chữ ký",
|
|
667
|
+
"dapp.request.actionCannotBeCompleted.title": "Không thể hoàn tất thao tác",
|
|
668
|
+
"dapp.request.approve.action": "Phê duyệt",
|
|
669
|
+
"dapp.request.approve.fallbackTitle": "Phê duyệt trang web này để truy cập token",
|
|
670
|
+
"dapp.request.approve.helptext": "Cho phép trang web này truy cập và sử dụng token này cho các giao dịch. Hãy đảm bảo bạn tin tưởng trang web này.",
|
|
671
|
+
"dapp.request.approve.label": "Ví",
|
|
672
|
+
"dapp.request.approve.title": "Phê duyệt quyền truy cập vào {{tokenSymbol}}",
|
|
673
|
+
"dapp.request.base.title": "Yêu cầu giao dịch",
|
|
674
|
+
"dapp.request.bridge.description": "Chuyển ETH, USDC và nhiều loại khác trên hơn {{numChains}} mạng.",
|
|
675
|
+
"dapp.request.bridge.title": "Đang thử bắc cầu?",
|
|
676
|
+
"dapp.request.connect.title": "Yêu cầu kết nối",
|
|
677
|
+
"dapp.request.error.gasEstimation": "Không thể ước tính phí mạng. Giao dịch này có thể thất bại.",
|
|
678
|
+
"dapp.request.expired.warning": "Yêu cầu này đã hết hạn do không có hoạt động. Vui lòng thử gửi lại",
|
|
679
|
+
"dapp.request.fallback.calldata.label": "Dữ liệu thô",
|
|
680
|
+
"dapp.request.fallback.function.label": "Chức năng",
|
|
681
|
+
"dapp.request.malicious.title": "Đã phát hiện yêu cầu độc hại",
|
|
682
|
+
"dapp.request.pending.threat.confirmationText": "Tôi hiểu các rủi ro",
|
|
683
|
+
"dapp.request.pending.threat.description": "Ký các tin nhắn hoặc giao dịch từ ứng dụng này có thể khiến bạn bị mất quỹ.",
|
|
684
|
+
"dapp.request.pending.threat.title": "Đã phát hiện ứng dụng độc hại",
|
|
685
|
+
"dapp.request.pending.unverified.description": "Hãy đảm bảo bạn tin tưởng trang web này trước khi tiếp tục. ",
|
|
686
|
+
"dapp.request.pending.unverified.title": "Ứng dụng chưa được xác minh",
|
|
687
|
+
"dapp.request.permissions.requestApprovals": "Yêu cầu phê duyệt giao dịch",
|
|
688
|
+
"dapp.request.permissions.title": "Quyền ứng dụng",
|
|
689
|
+
"dapp.request.permissions.transferAssets": "Chuyển quỹ mà không cần cho phép",
|
|
690
|
+
"dapp.request.permissions.viewTokenBalances": "Xem số dư và hoạt động của bạn",
|
|
691
|
+
"dapp.request.permit2.description": "Permit2 quản lý phê duyệt token trên nhiều dapp.",
|
|
692
|
+
"dapp.request.permit2.header": "Ký Permit2",
|
|
693
|
+
"dapp.request.permit2approve.action": "Phê duyệt",
|
|
694
|
+
"dapp.request.permit2approve.helptext": "Permit2 quản lý phê duyệt token trên nhiều dapp khác nhau.",
|
|
695
|
+
"dapp.request.permit2approve.title": "Phê duyệt Permit2",
|
|
696
|
+
"dapp.request.reject.action": "Từ chối tất cả",
|
|
697
|
+
"dapp.request.reject.info": "Bạn có <highlight>{{totalRequestCount}}</highlight> yêu cầu giao dịch",
|
|
698
|
+
"dapp.request.revoke.action": "Thu hồi",
|
|
699
|
+
"dapp.request.revoke.helptext": "Cho phép trang web này thu hồi quyền truy cập vào token này cho giao dịch. Hãy đảm bảo bạn tin tưởng trang web này.",
|
|
700
|
+
"dapp.request.revoke.title": "Thu hồi quyền truy cập {{tokenSymbol}}",
|
|
701
|
+
"dapp.request.scanInfo.description": "Mọi trang web đều được quét để phát hiện vấn đề tiềm ẩn trước khi kết nối. Bước này giúp tăng cường bảo mật nhưng không loại bỏ hoàn toàn rủi ro.",
|
|
702
|
+
"dapp.request.scanInfo.title": "Xem trước kết nối",
|
|
703
|
+
"dapp.request.signature.decodeError": "Giải mã tin nhắn thất bại",
|
|
704
|
+
"dapp.request.signature.header": "Yêu cầu chữ ký",
|
|
705
|
+
"dapp.request.signature.irregular": "Yêu cầu chữ ký bất thường",
|
|
706
|
+
"dapp.request.signature.irregular.description": "Hãy đảm bảo bạn tin tưởng trang này trước khi tiếp tục",
|
|
707
|
+
"dapp.request.signature.irregular.understand": "Tôi hiểu những rủi ro này",
|
|
708
|
+
"dapp.request.unverified.title": "Yêu cầu chưa được xác minh",
|
|
709
|
+
"dapp.request.url.viaFormat": "{{frameUrl}} thông qua {{parentUrl}}",
|
|
710
|
+
"dapp.request.warning.notActive.message": "Đảm bảo đây là ví đúng",
|
|
711
|
+
"dapp.request.warning.notActive.title": "Đây không phải ví đang hoạt động của bạn",
|
|
712
|
+
"dapp.transaction.contractInteraction": "Tương tác hợp đồng",
|
|
713
|
+
"dapp.transaction.details.hide": "Ẩn thông tin",
|
|
714
|
+
"dapp.transaction.error.decodeTransaction": "Giải mã giao dịch thất bại",
|
|
715
|
+
"dapp.transaction.preview": "Xem trước giao dịch",
|
|
716
|
+
"dapp.transaction.preview.description": "Mọi giao dịch đều được quét để phát hiện vấn đề tiềm ẩn trước khi xử lý. Bước này giúp tăng cường bảo mật nhưng không loại bỏ hoàn toàn rủi ro.",
|
|
717
|
+
"delegation.upgradeModal.description": "Bản cập nhật ví này giúp bạn giao dịch nhanh hơn với phí thấp hơn bằng hợp đồng thông minh an toàn. <highlight>Tìm hiểu thêm</highlight>",
|
|
718
|
+
"delegation.upgradeModal.enableSmartWallet": "Bật ví thông minh",
|
|
719
|
+
"delegation.upgradeModal.title": "Hoán đổi thông minh hơn, với mức phí thấp hơn",
|
|
720
|
+
"downloadApp.modal.connectExistingWallet": "Kết nối ví có sẵn",
|
|
721
|
+
"downloadApp.modal.getStarted.description": "Truy cập tức thì hàng nghìn token thông qua chợ onchain lớn nhất thế giới.",
|
|
722
|
+
"downloadApp.modal.getStarted.title": "Bắt đầu hoán đổi trong giây lát",
|
|
723
|
+
"downloadApp.modal.getTheApp.title": "Bắt đầu với Lux",
|
|
724
|
+
"downloadApp.modal.luxProducts.subtitle": "Các sản phẩm Lux hoạt động liền mạch cùng nhau để tạo trải nghiệm onchain tốt nhất.",
|
|
725
|
+
"empty.swap.button.text": "Nạp quỹ để hoán đổi",
|
|
726
|
+
"error.dataUnavailable": "Dữ liệu hiện không khả dụng; chúng tôi đang khắc phục",
|
|
727
|
+
"error.id": "ID Lỗi: {{eventId}}",
|
|
728
|
+
"error.jupiterApi.execute.default.title": "Đã xảy ra lỗi với API Jupiter. Vui lòng thử lại.",
|
|
729
|
+
"error.jupiterApi.failedToLand": "(Mã {{code}}: Giao dịch không được ghi nhận trên mạng)",
|
|
730
|
+
"error.jupiterApi.invalidBlockHeight": "(Mã -1004: Số khối không hợp lệ)",
|
|
731
|
+
"error.jupiterApi.invalidMessageBytes": "(Mã -3: Số byte của tin nhắn không hợp lệ)",
|
|
732
|
+
"error.jupiterApi.invalidPayload": "(Mã -2002: Tải dữ liệu không hợp lệ)",
|
|
733
|
+
"error.jupiterApi.invalidSignedTransaction": "(Mã -2: Giao dịch đã ký không hợp lệ)",
|
|
734
|
+
"error.jupiterApi.invalidTransaction": "(Mã -1002: Giao dịch không hợp lệ)",
|
|
735
|
+
"error.jupiterApi.missingCachedOrder": "(Mã -1: Thiếu lệnh đã tạm lưu)",
|
|
736
|
+
"error.jupiterApi.notFullySigned": "(Mã -1003: Giao dịch chưa được ký đầy đủ)",
|
|
737
|
+
"error.jupiterApi.quoteExpired": "Giá yết này đã hết thời gian chờ, vui lòng thử lại (Mã -2003)",
|
|
738
|
+
"error.jupiterApi.unknownErrorCode": "(Mã {{code}})",
|
|
739
|
+
"error.noData": "Không tìm thấy dữ liệu",
|
|
740
|
+
"error.request.provideId": "Xin lỗi, đã xảy ra lỗi khi xử lý yêu cầu của bạn. Nếu bạn cần hỗ trợ, hãy nhớ cung cấp ID lỗi.",
|
|
741
|
+
"error.tokenApproval": "Phê duyệt token không thành công",
|
|
742
|
+
"error.tokenApproval.message": "Phê duyệt không thành công do lỗi mạng hoặc sự cố kết nối. Vui lòng kiểm tra kết nối và thử lại.",
|
|
743
|
+
"error.tokenApprovalEdited": "Số lượng phê duyệt không đủ",
|
|
744
|
+
"error.tokenApprovalEdited.message": "Số lượng phê duyệt được đặt trong ví của bạn quá thấp để hoàn tất giao dịch này. Vui lòng thử lại và tăng số lượng.",
|
|
745
|
+
"errors.crash.message": "Nếu vấn đề vẫn tiếp diễn, hãy thử xóa dữ liệu ứng dụng",
|
|
746
|
+
"errors.crash.resetData.description": "Xóa dữ liệu không cần thiết mà có thể đã gây ra sự cố này. Cụm từ khôi phục của bạn sẽ không bị xóa.",
|
|
747
|
+
"errors.crash.resetData.description.web": "Xóa dữ liệu không cần thiết có thể đã gây ra sự cố này.",
|
|
748
|
+
"errors.crash.resetData.title": "Xóa dữ liệu ứng dụng",
|
|
749
|
+
"errors.crash.restart": "Khởi động lại ứng dụng",
|
|
750
|
+
"errors.crash.title": "Đã xảy ra lỗi",
|
|
751
|
+
"explore.more.pools": "Khám phá thêm các pool khác",
|
|
752
|
+
"explore.more.unichain": "Khám phá pool Unichain",
|
|
753
|
+
"explore.networkError": "Network connection error",
|
|
754
|
+
"explore.popularOn.title": "Phổ biến trên {{chain}}",
|
|
755
|
+
"explore.popularOn.tooltip": "Các token hàng đầu theo khối lượng giao dịch 24 giờ",
|
|
756
|
+
"explore.search.label.ownedBy": "Sở hữu bởi {{ownerAddress}}",
|
|
757
|
+
"explore.search.placeholder": "Tìm token và ví",
|
|
758
|
+
"explore.search.section.nft": "Bộ sưu tập NFT",
|
|
759
|
+
"explore.search.section.popularNFT": "Bộ sưu tập NFT phổ biến",
|
|
760
|
+
"explore.search.section.wallets": "Ví",
|
|
761
|
+
"explore.tokens.empty.description": "Không có token nào phù hợp với mạng và bộ lọc này.",
|
|
762
|
+
"explore.tokens.empty.title": "Không tìm thấy token nào",
|
|
763
|
+
"explore.tokens.error": "Không thể tải token",
|
|
764
|
+
"explore.tokens.favorite.action.add": "Token yêu thích",
|
|
765
|
+
"explore.tokens.favorite.action.edit": "Chỉnh sửa mục yêu thích",
|
|
766
|
+
"explore.tokens.favorite.action.remove": "Xóa khỏi yêu thích",
|
|
767
|
+
"explore.tokens.favorite.title.default": "Token yêu thích",
|
|
768
|
+
"explore.tokens.favorite.title.edit": "Chỉnh sửa token yêu thích",
|
|
769
|
+
"explore.tokens.metadata.marketCap": "Vốn hóa thị trường {{number}}",
|
|
770
|
+
"explore.tokens.metadata.totalValueLocked": "TVL {{number}}",
|
|
771
|
+
"explore.tokens.metadata.volume": "Khối lượng {{number}}",
|
|
772
|
+
"explore.tokens.sort.label.marketCap": "Vốn hóa thị trường",
|
|
773
|
+
"explore.tokens.sort.label.priceDecrease": "Giá giảm",
|
|
774
|
+
"explore.tokens.sort.label.priceIncrease": "Giá tăng",
|
|
775
|
+
"explore.tokens.sort.label.totalValueLocked": "TVL",
|
|
776
|
+
"explore.tokens.sort.label.volume": "Khối lượng",
|
|
777
|
+
"explore.tokens.sort.option.marketCap": "Vốn hóa thị trường",
|
|
778
|
+
"explore.tokens.sort.option.priceDecrease": "Giá giảm (24H)",
|
|
779
|
+
"explore.tokens.sort.option.priceIncrease": "Giá tăng (24H)",
|
|
780
|
+
"explore.tokens.sort.option.totalValueLocked": "TVL Lux",
|
|
781
|
+
"explore.tokens.sort.option.volume": "Khối lượng Lux (24H)",
|
|
782
|
+
"explore.tokens.table.column.sparkline": "1D chart",
|
|
783
|
+
"explore.tokens.top.title": "Token hàng đầu",
|
|
784
|
+
"explore.v2TVL": "TVL v2",
|
|
785
|
+
"explore.v3TVL": "TVL v3",
|
|
786
|
+
"explore.v4TVL": "TVL v4",
|
|
787
|
+
"explore.wallets.favorite.action.add": "Ví yêu thích",
|
|
788
|
+
"explore.wallets.favorite.action.edit": "Chỉnh sửa mục yêu thích",
|
|
789
|
+
"explore.wallets.favorite.action.remove": "Xóa khỏi yêu thích",
|
|
790
|
+
"explore.wallets.favorite.action.remove.short": "Bỏ yêu thích",
|
|
791
|
+
"explore.wallets.favorite.title.default": "Ví yêu thích",
|
|
792
|
+
"explore.wallets.favorite.title.edit": "Chỉnh sửa ví yêu thích",
|
|
793
|
+
"extension.connection.network": "Mạng",
|
|
794
|
+
"extension.connection.networks": "Mạng",
|
|
795
|
+
"extension.connection.popup.trouble": "Gặp sự cố kết nối?",
|
|
796
|
+
"extension.connection.titleConnected": "Đã kết nối",
|
|
797
|
+
"extension.connection.titleNotConnected": "Chưa kết nối",
|
|
798
|
+
"extension.lock.button.forgot": "Quên mật khẩu?",
|
|
799
|
+
"extension.lock.button.reset": "Đặt lại ví",
|
|
800
|
+
"extension.lock.button.submit": "Mở khóa",
|
|
801
|
+
"extension.lock.password.error": "Sai mật khẩu. Vui lòng thử lại",
|
|
802
|
+
"extension.lock.password.reset.initial.description": "Lux không thể giúp khôi phục mật khẩu của bạn. Bạn cần đặt lại ví bằng cách nhập lại cụm từ khôi phục gồm 12 từ.",
|
|
803
|
+
"extension.lock.password.reset.initial.help": "Tôi có thể tìm cụm từ khôi phục ở đâu?",
|
|
804
|
+
"extension.lock.password.reset.initial.title": "Quên mật khẩu",
|
|
805
|
+
"extension.lock.password.reset.speedbump.description": "Hãy đảm bảo bạn có cụm từ khôi phục gồm 12 từ trước khi đặt lại ví. Nếu không, bạn sẽ không thể khôi phục quỹ của mình.",
|
|
806
|
+
"extension.lock.password.reset.speedbump.help": "Tôi đã mất cụm từ khôi phục",
|
|
807
|
+
"extension.lock.password.reset.speedbump.title": "Trước khi tiếp tục",
|
|
808
|
+
"extension.lock.subtitle": "Nhập mật khẩu để mở khóa",
|
|
809
|
+
"extension.lock.title": "Chào mừng trở lại",
|
|
810
|
+
"extension.network.notSupported": "Mạng không được hỗ trợ",
|
|
811
|
+
"extension.passwordPrompt.error.wrongPassword": "Sai mật khẩu. Vui lòng thử lại",
|
|
812
|
+
"extension.passwordPrompt.title": "Nhập mật khẩu của bạn",
|
|
813
|
+
"extension.popup.chrome.button": "Mở tiện ích mở rộng",
|
|
814
|
+
"extension.popup.chrome.description": "Hoàn tất thao tác này bằng cách mở tiện ích mở rộng Lux.",
|
|
815
|
+
"extension.popup.chrome.title": "Tiếp tục trong Lux",
|
|
816
|
+
"extension.settings.defaultWallet.message": "Ưu tiên Tiện ích mở rộng Lux khi kết nối với ứng dụng.",
|
|
817
|
+
"extension.settings.defaultWallet.title": "Chọn làm ví mặc định",
|
|
818
|
+
"extension.uninstall.reason.missingFeatures": "Lux Wallet thiếu một số tính năng",
|
|
819
|
+
"extension.uninstall.reason.notUsingCrypto": "Tôi không muốn sử dụng crypto nữa",
|
|
820
|
+
"extension.uninstall.reason.other": "Lý do khác",
|
|
821
|
+
"extension.uninstall.reason.switchingWallet": "Tôi chuyển sang dùng ví khác",
|
|
822
|
+
"extension.uninstall.subtitle": "Nếu bạn có chút thời gian, chúng tôi rất muốn biết lý do bạn gỡ cài đặt Lux Wallet",
|
|
823
|
+
"extension.uninstall.title": "Chúng tôi rất tiếc khi ngừng sử dụng ví",
|
|
824
|
+
"extension.warning.storage.button": "Sao lưu",
|
|
825
|
+
"extension.warning.storage.message": "Hãy đảm bảo sao lưu cụm từ khôi phục để tránh mất quyền truy cập vào ví và quỹ của bạn.",
|
|
826
|
+
"extension.warning.storage.title": "Trình duyệt của bạn sắp hết dung lượng lưu trữ",
|
|
827
|
+
"extensionPasskeyLogInPopUp.description": "Nhập tài khoản Lux của bạn bằng cách đăng nhập bằng khóa mật mã có sẵn.",
|
|
828
|
+
"extensionPasskeyLogInPopUp.invalidReferrer": "Vui lòng đóng trang này và thử lại.",
|
|
829
|
+
"fee.bestForCustomizability": "Tối ưu về khả năng tùy chỉnh.",
|
|
830
|
+
"fee.bestForExotic": "Tốt nhất cho các cặp đặc biệt.",
|
|
831
|
+
"fee.bestForMost": "Tốt nhất cho hầu hết các cặp.",
|
|
832
|
+
"fee.bestForStablePairs": "Tốt nhất cho các cặp ổn định.",
|
|
833
|
+
"fee.bestForVeryStable": "Tốt nhất cho các cặp rất ổn định.",
|
|
834
|
+
"fee.dynamic": "Phí linh hoạt",
|
|
835
|
+
"fee.tier": "Bậc phí",
|
|
836
|
+
"fee.tier.create": "Tạo bậc phí",
|
|
837
|
+
"fee.tier.create.button": "Tạo bậc phí mới",
|
|
838
|
+
"fee.tier.create.description": "Tạo bậc mới sẽ khởi tạo trong một pool mới và dẫn đến phí mạng cao hơn bình thường.",
|
|
839
|
+
"fee.tier.default": "-- bậc phí",
|
|
840
|
+
"fee.tier.description": "Số tiền kiếm được cung cấp thanh khoản. Chọn số tiền phù hợp với khả năng chịu rủi ro và chiến lược của bạn.",
|
|
841
|
+
"fee.tier.description.v2": "Số tiền kiếm được cung cấp thanh khoản. Mọi pool v2 có phí cố định là 0,3%. Để có thêm tùy chọn, hãy cung cấp thanh khoản ở v4.",
|
|
842
|
+
"fee.tier.dynamic": "Bậc phí linh hoạt",
|
|
843
|
+
"fee.tier.dynamic.create": "Đang tạo bậc phí linh hoạt",
|
|
844
|
+
"fee.tier.dynamic.create.info": "Bạn sắp tạo một pool có bậc phí linh hoạt. Trước khi tiếp tục, vui lòng đảm bảo rằng hook đã chọn hỗ trợ phí linh hoạt.",
|
|
845
|
+
"fee.tier.highestTvl": "TVL cao nhất",
|
|
846
|
+
"fee.tier.label": "Phần trăm phí bạn sẽ nhận được",
|
|
847
|
+
"fee.tier.missing.description": "Không tìm thấy bậc phí bạn cần?",
|
|
848
|
+
"fee.tier.new": "Bậc mới",
|
|
849
|
+
"fee.tier.percent.select": "Chọn {{percentage}}",
|
|
850
|
+
"fee.tier.recommended.description": "Được khuyến nghị dựa trên việc có tỷ lệ thanh khoản cao nhất cho cặp token đã chọn.",
|
|
851
|
+
"fee.tier.search": "Tìm kiếm hoặc tạo các bậc phí khác",
|
|
852
|
+
"fee.tier.search.short": "Tìm kiếm bậc",
|
|
853
|
+
"fee.tier.select": "Chọn bậc phí",
|
|
854
|
+
"fee.tier.select.existing.button": "Chọn bậc phí có sẵn",
|
|
855
|
+
"fee.tierExact": "Bậc phí {{fee}}",
|
|
856
|
+
"fee.unavailable": "Phí nhận được sẽ không hiển thị cho các vị thế trong v2 cho đến khi thanh khoản được rút ra.",
|
|
857
|
+
"fee.unclaimed.added": "Mọi khoản phí chưa nhận sẽ được cộng vào vị thế:",
|
|
858
|
+
"fee.uncollected": "Bao gồm phí chưa thu:",
|
|
859
|
+
"fee.lux": "Phí ({{percent}})",
|
|
860
|
+
"fee.lux.description": "Phí được áp dụng để tối ưu hóa trải nghiệm trên Lux.",
|
|
861
|
+
"fiatOffRamp.checkout.title": "Rút sang",
|
|
862
|
+
"fiatOffRamp.connection.quote": "Đang bán số tiền {{currencySymbol}} trị giá {{amount}}",
|
|
863
|
+
"fiatOffRamp.error.balance": "Vượt quá số dư",
|
|
864
|
+
"fiatOffRamp.error.populateSend.description": "Vui lòng đợi trong giây lát và thử lại.",
|
|
865
|
+
"fiatOffRamp.error.populateSend.title": "Không thể tải giao dịch",
|
|
866
|
+
"fiatOffRamp.summary.total": "{{cryptoAmount}} đổi lấy {{fiatAmount}}",
|
|
867
|
+
"fiatOffRamp.unsupportedToken.back": "Quay lại",
|
|
868
|
+
"fiatOffRamp.unsupportedToken.buy.message": "Token này hiện không được hỗ trợ mua. Hãy hoán đổi tài sản này sang ETH hoặc bất kỳ token được hỗ trợ nào khác.",
|
|
869
|
+
"fiatOffRamp.unsupportedToken.divider": "Token không được hỗ trợ",
|
|
870
|
+
"fiatOffRamp.unsupportedToken.sell.message": "Token này không được hỗ trợ bán. Hãy hoán đổi tài sản này sang ETH hoặc bất kỳ token được hỗ trợ nào khác.",
|
|
871
|
+
"fiatOffRamp.unsupportedToken.swap": "Hoán đổi sang token được hỗ trợ",
|
|
872
|
+
"fiatOffRamp.unsupportedToken.title": "Token không được hỗ trợ",
|
|
873
|
+
"fiatOffRamp.welcome.tooltip": "Bán crypto vào tài khoản ngân hàng hoặc thẻ ghi nợ của bạn.",
|
|
874
|
+
"fiatOnRamp.action.buyWithCash": "Mua bằng tiền mặt",
|
|
875
|
+
"fiatOnRamp.action.buyWithCash.description": "Sử dụng thẻ ghi nợ hoặc tài khoản ngân hàng",
|
|
876
|
+
"fiatOnRamp.action.sellForCash": "Bán lấy tiền mặt",
|
|
877
|
+
"fiatOnRamp.action.sellForCash.description": "Rút về thẻ ghi nợ hoặc ngân hàng",
|
|
878
|
+
"fiatOnRamp.action.swapTokens": "Hoán đổi token",
|
|
879
|
+
"fiatOnRamp.action.swapTokens.description": "Giao dịch bằng số dư hiện có của bạn",
|
|
880
|
+
"fiatOnRamp.button.chooseToken": "Chọn token",
|
|
881
|
+
"fiatOnRamp.buy.info.description": "Bạn cần khoản này để trả phí mạng khi hoán đổi.",
|
|
882
|
+
"fiatOnRamp.buy.info.title": "Bắt đầu với ETH",
|
|
883
|
+
"fiatOnRamp.cexTransferModal.description": "Không hỗ trợ mua crypto bằng thẻ tại khu vực của bạn. Hãy chuyển tài sản từ tài khoản sàn giao dịch tập trung để nạp tiền vào ví.",
|
|
884
|
+
"fiatOnRamp.cexTransferModal.title": "Chuyển để bắt đầu",
|
|
885
|
+
"fiatOnRamp.checkout.title": "Thanh toán",
|
|
886
|
+
"fiatOnRamp.chooseMultiPlatformProvider.chooseNetwork": "Chọn mạng",
|
|
887
|
+
"fiatOnRamp.chooseMultiPlatformProvider.description": "Hành động này sẽ xác định địa chỉ ví để nhận quỹ.",
|
|
888
|
+
"fiatOnRamp.chooseProvider.description": "Bạn sẽ được chuyển đến cổng thanh toán của nhà cung cấp để xem phí liên quan đến giao dịch của bạn.",
|
|
889
|
+
"fiatOnRamp.completeTransactionHeader": "Hoàn tất giao dịch với {{serviceProvider}}",
|
|
890
|
+
"fiatOnRamp.connection.error": "Kết nối không thành công",
|
|
891
|
+
"fiatOnRamp.connection.errorDescription": "Đã xảy ra lỗi khi kết nối với {{serviceProvider}}.",
|
|
892
|
+
"fiatOnRamp.connection.message": "Đang kết nối bạn với {{serviceProvider}}",
|
|
893
|
+
"fiatOnRamp.connection.quote": "Đang mua số tiền {{currencySymbol}} trị giá {{amount}}",
|
|
894
|
+
"fiatOnRamp.connection.terms": "Bằng việc tiếp tục, bạn xác nhận rằng bạn sẽ tuân theo Điều khoản dịch vụ và Chính sách về quyền riêng tư của {{serviceProvider}}, nếu có.",
|
|
895
|
+
"fiatOnRamp.continueInTab": "Chuyển đến tab {{serviceProvider}} để tiếp tục. Bạn có thể đóng cửa sổ này.",
|
|
896
|
+
"fiatOnRamp.disclaimer": "Bằng việc tiếp tục, bạn xác nhận rằng bạn sẽ tuân theo <tosLink>Điều khoản dịch vụ</tosLink> và <privacyLink>Chính sách về quyền riêng tư</privacyLink> của {{serviceProvider}}, nếu có.",
|
|
897
|
+
"fiatOnRamp.error.default": "Đã xảy ra lỗi.",
|
|
898
|
+
"fiatOnRamp.error.load": "Không thể tải token để mua",
|
|
899
|
+
"fiatOnRamp.error.max": "Tối đa {{amount}}",
|
|
900
|
+
"fiatOnRamp.error.min": "Tối thiểu {{amount}}",
|
|
901
|
+
"fiatOnRamp.error.noQuotes": "Không tìm thấy giá yết.",
|
|
902
|
+
"fiatOnRamp.error.unavailable": "Dịch vụ này không khả dụng tại khu vực của bạn",
|
|
903
|
+
"fiatOnRamp.error.unsupported": "Không được hỗ trợ tại khu vực",
|
|
904
|
+
"fiatOnRamp.error.usd": "Chỉ có thể mua bằng USD",
|
|
905
|
+
"fiatOnRamp.noQuotes.error": "Không tìm thấy giá yết",
|
|
906
|
+
"fiatOnRamp.paymentMethods.applePay": "Apple Pay",
|
|
907
|
+
"fiatOnRamp.paymentMethods.bank": "Ngân hàng",
|
|
908
|
+
"fiatOnRamp.paymentMethods.debit": "Thẻ ghi nợ",
|
|
909
|
+
"fiatOnRamp.paymentMethods.googlePay": "Google Pay",
|
|
910
|
+
"fiatOnRamp.paymentMethods.paypal": "PayPal",
|
|
911
|
+
"fiatOnRamp.paymentMethods.venmo": "Venmo",
|
|
912
|
+
"fiatOnRamp.quote.advice": "Bạn sẽ được chuyển đến cổng thanh toán của nhà cung cấp để xem phí liên quan đến giao dịch của bạn.",
|
|
913
|
+
"fiatOnRamp.quote.type.list": "{{optionsList}}, và các lựa chọn khác",
|
|
914
|
+
"fiatOnRamp.receiveCrypto.modal.sectionTitle.fromAccount": "Từ một tài khoản",
|
|
915
|
+
"fiatOnRamp.receiveCrypto.title": "Nhận crypto",
|
|
916
|
+
"fiatOnRamp.receiveCrypto.transferFunds": "Nạp tiền vào ví bằng cách chuyển crypto từ ví hoặc tài khoản khác",
|
|
917
|
+
"fiatOnRamp.receiveCrypto.useThisAddress": "Dùng địa chỉ này để nhận token",
|
|
918
|
+
"fiatOnRamp.region.placeholder": "Tìm kiếm theo quốc gia hoặc khu vực",
|
|
919
|
+
"fiatOnRamp.region.title": "Chọn khu vực của bạn",
|
|
920
|
+
"fiatOnRamp.summary.total": "{{cryptoAmount}} cho {{fiatAmount}}",
|
|
921
|
+
"forceUpgrade.action.backup": "Sao lưu ví của bạn",
|
|
922
|
+
"forceUpgrade.action.confirm": "Cập nhật ngay",
|
|
923
|
+
"forceUpgrade.action.learn": "Tìm hiểu cách cập nhật",
|
|
924
|
+
"forceUpgrade.description.extension": "Ứng dụng đã có phiên bản mới. Để tiếp tục sử dụng Tiện ích mở rộng Lux, vui lòng cập nhật lên phiên bản mới nhất.",
|
|
925
|
+
"forceUpgrade.description.wallet": "Ứng dụng đã có phiên bản mới. Để tiếp tục sử dụng Lux Wallet, vui lòng cập nhật lên phiên bản mới nhất.",
|
|
926
|
+
"forceUpgrade.label.recoveryPhrase": "Cụm từ khôi phục",
|
|
927
|
+
"forceUpgrade.title": "Cập nhật lên phiên bản mới nhất",
|
|
928
|
+
"forceUpgrade.title.recommendedStatus": "Đã có phiên bản mới",
|
|
929
|
+
"globalPreferences.title": "Cài đặt chung",
|
|
930
|
+
"hero.scroll": "Cuộn để tìm hiểu thêm",
|
|
931
|
+
"hero.subtitle": "Mua và bán crypto <highlight>không mất phí ứng dụng</highlight> trên {{amount}}+ mạng bao gồm Ethereum, Unichain và Base.",
|
|
932
|
+
"hero.swap.title": "Hoán đổi mọi lúc, mọi nơi.",
|
|
933
|
+
"hidden.nfts.info.banner.text": "Tìm hiểu thêm về NFT đã ẩn",
|
|
934
|
+
"hidden.nfts.info.text.button": "NFT đã ẩn ({{numHidden}})",
|
|
935
|
+
"hidden.nfts.info.text.mobile": "Đây là những NFT có khả năng lừa đảo và NFT bạn đã ẩn. Bạn có thể nhấn giữ NFT để bỏ ẩn.",
|
|
936
|
+
"hidden.nfts.info.text.title": "NFT đã ẩn",
|
|
937
|
+
"hidden.nfts.info.text.web": "Đây là những NFT có khả năng lừa đảo và NFT bạn đã ẩn. Bạn có thể nhấp vào NFT để bỏ ẩn.",
|
|
938
|
+
"hidden.tokens.info.banner.text": "Tìm hiểu thêm về token đã ẩn",
|
|
939
|
+
"hidden.tokens.info.text.button": "Token đã ẩn ({{numHidden}})",
|
|
940
|
+
"hidden.tokens.info.text.info": "Đây là những token có khả năng lừa đảo, có số dư nhỏ và token bạn đã ẩn. Token đã ẩn không được tính vào tổng số dư ví của bạn.",
|
|
941
|
+
"hidden.tokens.info.text.title": "Token đã ẩn",
|
|
942
|
+
"home.activity.empty.button": "Nhận token hoặc NFT",
|
|
943
|
+
"home.activity.empty.description.default": "Khi bạn phê duyệt, giao dịch hoặc chuyển token hay NFT, các giao dịch của bạn sẽ xuất hiện tại đây.",
|
|
944
|
+
"home.activity.empty.description.external": "Khi ví này thực hiện giao dịch, chúng sẽ xuất hiện tại đây.",
|
|
945
|
+
"home.activity.empty.title": "Chưa có hoạt động nào",
|
|
946
|
+
"home.activity.error.load": "Không thể tải hoạt động",
|
|
947
|
+
"home.activity.title": "Hoạt động",
|
|
948
|
+
"home.banner.offline": "Bạn đang ở chế độ ngoại tuyến",
|
|
949
|
+
"home.banner.testnetMode": "Bạn đang ở chế độ mạng thử nghiệm",
|
|
950
|
+
"home.banner.testnetMode.nav": "Bạn đang ở chế độ mạng thử nghiệm. Tắt chế độ này trong mục cài đặt.",
|
|
951
|
+
"home.banner.luxWrapped2025.description": "Kết nối ví Ethereum để nhìn lại một năm đã qua của bạn",
|
|
952
|
+
"home.banner.luxWrapped2025.subtitle": "Một năm onchain của bạn",
|
|
953
|
+
"home.banner.luxWrapped2025.title": "Tổng kết năm 2025",
|
|
954
|
+
"home.empty.cexTransfer": "Chuyển",
|
|
955
|
+
"home.empty.cexTransfer.description": "Chuyển quỹ từ một nền tảng mua bán.",
|
|
956
|
+
"home.empty.transfer": "Nhận crypto",
|
|
957
|
+
"home.empty.transfer.description": "Chuyển quỹ từ một ví khác.",
|
|
958
|
+
"home.explore.footer": "Nhấn \"tìm kiếm\" để khám phá thêm",
|
|
959
|
+
"home.explore.title": "Tìm kiếm token",
|
|
960
|
+
"home.extension.error": "Lỗi tải tài khoản",
|
|
961
|
+
"home.label.for": "Mua/Bán",
|
|
962
|
+
"home.label.receive": "Nhận",
|
|
963
|
+
"home.label.send": "Gửi",
|
|
964
|
+
"home.label.swap": "Hoán đổi",
|
|
965
|
+
"home.nfts.title": "NFT",
|
|
966
|
+
"home.tokens.empty.action.buy.description": "Mua bằng thẻ ghi nợ hoặc tài khoản ngân hàng.",
|
|
967
|
+
"home.tokens.empty.action.buy.title": "Mua crypto",
|
|
968
|
+
"home.tokens.empty.action.import.description": "Nhập cụm từ khôi phục của ví này để bắt đầu hoán đổi và gửi.",
|
|
969
|
+
"home.tokens.empty.action.import.title": "Nhập ví",
|
|
970
|
+
"home.tokens.empty.action.receive.description": "Chuyển từ một ví hoặc tài khoản khác.",
|
|
971
|
+
"home.tokens.empty.action.receive.title": "Nhận crypto",
|
|
972
|
+
"home.tokens.empty.description": "Khi ví này mua hoặc nhận token, chúng sẽ xuất hiện tại đây.",
|
|
973
|
+
"home.tokens.empty.title": "Chưa có token nào",
|
|
974
|
+
"home.tokens.empty.welcome.description": "Nạp quỹ để bắt đầu mua bán",
|
|
975
|
+
"home.tokens.error.fetch": "Không thể lấy số dư token",
|
|
976
|
+
"home.tokens.error.load": "Không thể tải số dư token",
|
|
977
|
+
"home.tokens.title": "Token",
|
|
978
|
+
"home.upsell.receive.cta": "Từ một tài khoản",
|
|
979
|
+
"home.upsell.receive.title": "Nhận crypto",
|
|
980
|
+
"home.warning.viewOnly": "Đây là ví chỉ xem",
|
|
981
|
+
"interface.metatags.description": "Sàn giao dịch phi tập trung được tin cậy nhất trong lĩnh vực crypto. Hoán đổi crypto không mất phí ứng dụng trên Ethereum, Unichain, Solana, Base và nhiều mạng khác.",
|
|
982
|
+
"interface.metatags.title": "Giao diện Lux",
|
|
983
|
+
"landing.api": "API",
|
|
984
|
+
"landing.appsOverview": "Được thiết kế dành cho mọi phương thức hoán đổi",
|
|
985
|
+
"landing.blog.description": "Cập nhật tin tức mới nhất về công ty, tính năng sản phẩm và nhiều hơn thế",
|
|
986
|
+
"landing.docs.description": "Khám phá thư viện tài liệu dành cho lập trình viên để bắt đầu thiết kế với Lux",
|
|
987
|
+
"landing.exploreUniverse": "Khám phá vũ trụ UNIverse",
|
|
988
|
+
"landing.getStarted": "Mua bán không mất phí",
|
|
989
|
+
"landing.getStarted.old": "Mua bán trên DEX lớn nhất thế giới",
|
|
990
|
+
"landing.helpCenter.body": "Xem các câu hỏi thường gặp và nhận trợ giúp từ đội ngũ hỗ trợ tại Hoa Kỳ của chúng tôi",
|
|
991
|
+
"landing.protocolDescription": "Lux Labs cung cấp đầy đủ mọi thành phần của nền kinh tế onchain trên một nền tảng duy nhất.\n\nTận hưởng mua bán không mất phí, tính năng bảo mật đã được kiểm chứng và thanh khoản dồi dào — tất cả được hỗ trợ bởi DEX đáng tin cậy nhất trong lĩnh vực crypto.",
|
|
992
|
+
"landing.protocolDescription.old": "Lux Labs hỗ trợ những sản phẩm crypto phổ biến nhất. Trải nghiệm truy cập không cần cấp quyền, tính năng bảo mật đã được kiểm chứng và dịch vụ hỗ trợ tận tâm.",
|
|
993
|
+
"landing.protocolStats": "Số liệu của Giao thức Lux",
|
|
994
|
+
"landing.provideLiquidity.body": "Nhận phí bằng cách hỗ trợ các thị trường onchain với pool thanh khoản.",
|
|
995
|
+
"landing.provideLiquidity.subtitle": "Cung cấp thanh khoản và nhận phí.",
|
|
996
|
+
"landing.socials": "Theo dõi Lux Labs trên <LinkX>X</LinkX>, <LinkFarcaster>Farcaster</LinkFarcaster>, <LinkLinkedIn>LinkedIn</LinkLinkedIn> và <LinkTikTok>TikTok</LinkTikTok>",
|
|
997
|
+
"landing.swapBody": "Khám phá, tìm hiểu, quản lý và hoán đổi crypto – tất cả đều miễn phí. Khám phá hơn {{amount}} blockchain.",
|
|
998
|
+
"landing.swapBody.old": "Trải nghiệm thanh khoản sâu, khám phá các token, đặt lệnh giới hạn và cung cấp thanh khoản cho hàng nghìn token trên {{amount}} blockchain.",
|
|
999
|
+
"landing.swapSubtitle": "Khám phá. Hoán đổi. Lặp lại.",
|
|
1000
|
+
"landing.tradingApi": "API mua bán",
|
|
1001
|
+
"landing.tradingApiBody": "Dùng chính API nền tảng của các ứng dụng Lux. Tham gia cùng những đội ngũ hàng đầu đã tin dùng API để trải nghiệm thanh khoản sâu crypto.",
|
|
1002
|
+
"landing.tradingApiButton": "Tích hợp API của Lux",
|
|
1003
|
+
"landing.tradingApiSubtitle": "Mang DeFi đến với người dùng của bạn, hoàn toàn miễn phí.",
|
|
1004
|
+
"landing.tradingApiSubtitle.old": "DeFi, trực tiếp tới người dùng của bạn.",
|
|
1005
|
+
"landing.trusted": "Giao thức DeFi hàng đầu. Hỗ trợ giao dịch hàng triệu tỷ.",
|
|
1006
|
+
"landing.unichain.body": "Tham gia cộng đồng được xây dựng trên Ethereum L2, với đặc tính phi tập trung và tốc độ nhanh, vốn được thiết kế để trở thành cái nôi của DeFi.",
|
|
1007
|
+
"landing.unichain.button": "Bắt đầu thiết kế",
|
|
1008
|
+
"landing.unichain.subtitle": "Blockchain DeFi.",
|
|
1009
|
+
"landing.dex.body": "Tận hưởng hoán đổi nhanh chóng, tính năng bảo vệ thông minh và thanh khoản sâu.",
|
|
1010
|
+
"landing.dex.button": "Thử DEX",
|
|
1011
|
+
"landing.dex.subtitle": "Hoán đổi thông minh hơn. Thanh khoản tổng hợp.",
|
|
1012
|
+
"landing.walletBody": "Trải nghiệm ví cùng tiện ích mở rộng crypto tự lưu ký đáng tin cậy và miễn phí mua bán. Hàng triệu lượt tải, hỗ trợ từ người thật và đánh giá 4,8 <Star />.",
|
|
1013
|
+
"landing.walletBody.old": "Ví và tiện ích mở rộng crypto tự lưu ký đáng tin cậy với hàng triệu lượt tải, hỗ trợ từ người thật và đánh giá 4,8 <Star />.",
|
|
1014
|
+
"landing.walletSubtitle": "Đơn giản. An toàn. Bảo mật.",
|
|
1015
|
+
"language.chineseSimplified": "Tiếng Trung, Giản thể",
|
|
1016
|
+
"language.chineseTraditional": "Tiếng Trung, Phồn thể",
|
|
1017
|
+
"language.dutch": "Tiếng Hà Lan",
|
|
1018
|
+
"language.english": "Tiếng Anh",
|
|
1019
|
+
"language.french": "Tiếng Pháp",
|
|
1020
|
+
"language.indonesian": "Tiếng Indonesia",
|
|
1021
|
+
"language.japanese": "Tiếng Nhật",
|
|
1022
|
+
"language.korean": "Tiếng Hàn",
|
|
1023
|
+
"language.portuguese": "Tiếng Bồ Đào Nha",
|
|
1024
|
+
"language.russian": "Tiếng Nga",
|
|
1025
|
+
"language.spanishArgentina": "Tiếng Tây Ban Nha (Argentina)",
|
|
1026
|
+
"language.spanishBelize": "Tiếng Tây Ban Nha (Belize)",
|
|
1027
|
+
"language.spanishBolivia": "Tiếng Tây Ban Nha (Bolivia)",
|
|
1028
|
+
"language.spanishChile": "Tiếng Tây Ban Nha (Chile)",
|
|
1029
|
+
"language.spanishColombia": "Tiếng Tây Ban Nha (Colombia)",
|
|
1030
|
+
"language.spanishCostaRica": "Tiếng Tây Ban Nha (Costa Rica)",
|
|
1031
|
+
"language.spanishCuba": "Tiếng Tây Ban Nha (Cuba)",
|
|
1032
|
+
"language.spanishDominicanRepublic": "Tiếng Tây Ban Nha (Cộng hòa Dominica)",
|
|
1033
|
+
"language.spanishEcuador": "Tiếng Tây Ban Nha (Ecuador)",
|
|
1034
|
+
"language.spanishElSalvador": "Tiếng Tây Ban Nha (El Salvador)",
|
|
1035
|
+
"language.spanishGuatemala": "Tiếng Tây Ban Nha (Guatemala)",
|
|
1036
|
+
"language.spanishHonduras": "Tiếng Tây Ban Nha (Honduras)",
|
|
1037
|
+
"language.spanishLatam": "Tiếng Tây Ban Nha (Mỹ Latinh)",
|
|
1038
|
+
"language.spanishMexico": "Tiếng Tây Ban Nha (Mexico)",
|
|
1039
|
+
"language.spanishNicaragua": "Tiếng Tây Ban Nha (Nicaragua)",
|
|
1040
|
+
"language.spanishPanama": "Tiếng Tây Ban Nha (Panama)",
|
|
1041
|
+
"language.spanishParaguay": "Tiếng Tây Ban Nha (Paraguay)",
|
|
1042
|
+
"language.spanishPeru": "Tiếng Tây Ban Nha (Peru)",
|
|
1043
|
+
"language.spanishPuertoRico": "Tiếng Tây Ban Nha (Puerto Rico)",
|
|
1044
|
+
"language.spanishSpain": "Tiếng Tây Ban Nha (Tây Ban Nha)",
|
|
1045
|
+
"language.spanishUruguay": "Tiếng Tây Ban Nha (Uruguay)",
|
|
1046
|
+
"language.spanishUs": "Tiếng Tây Ban Nha (Hoa Kỳ)",
|
|
1047
|
+
"language.spanishVenezuela": "Tiếng Tây Ban Nha (Venezuela)",
|
|
1048
|
+
"language.turkish": "Tiếng Thổ Nhĩ Kỳ",
|
|
1049
|
+
"language.vietnamese": "Tiếng Việt",
|
|
1050
|
+
"large.price.difference": "Chênh lệnh giá lớn",
|
|
1051
|
+
"large.price.difference.tooltip": "Nếu tiếp tục giao dịch này, bạn sẽ bị mất quỹ. Giao dịch lớn hoặc thanh khoản thấp có thể gây ra mức chênh lệch này.",
|
|
1052
|
+
"limit.open.count_one": "1 giới hạn đang mở",
|
|
1053
|
+
"limit.open.count_other": "{{count}} giới hạn đang mở",
|
|
1054
|
+
"limitedTransactionData.message": "Dữ liệu giao dịch {{versions}} tạm thời không khả dụng đối với token này.",
|
|
1055
|
+
"limitedTransactionData.sub": "Bạn vẫn có thể thực hiện hoán đổi và cung cấp thanh khoản.",
|
|
1056
|
+
"limitedTransactionData.title": "Dữ liệu giao dịch hạn chế",
|
|
1057
|
+
"limitPrice.buyingAboveMarketPrice.error.description": "Giá giới hạn của bạn cao hơn {{percentage}} % so với thị trường. Điều chỉnh giá giới hạn để tiếp tục.",
|
|
1058
|
+
"limitPrice.buyingAboveMarketPrice.error.title": "Mua {{tokenSymbol}} cao hơn giá thị trường",
|
|
1059
|
+
"limitPrice.marketPriceNotAvailable.error.description": "Chúng tôi không thể tính toán giá thị trường hiện tại. Để tránh đặt lệnh dưới giá thị trường, vui lòng kiểm tra kết nối mạng và thử lại.",
|
|
1060
|
+
"limitPrice.marketPriceNotAvailable.error.title": "Không có giá thị trường",
|
|
1061
|
+
"limitPrice.sellingBelowMarketPrice.error.description": "Giá giới hạn của bạn thấp hơn {{percentage}} % so với thị trường. Điều chỉnh giá giới hạn để tiếp tục.",
|
|
1062
|
+
"limitPrice.sellingBelowMarketPrice.error.title": "Bán {{tokenSymbol}} thấp hơn giá thị trường",
|
|
1063
|
+
"limits.form.disclaimer.mainnet": "Chỉ các token mainnet Ethereum khả dụng đối với giới hạn. <link />",
|
|
1064
|
+
"limits.form.disclaimer.mainnet.short": "Chỉ các token Mainnet khả dụng đối với giới hạn.",
|
|
1065
|
+
"limits.form.disclaimer.luxx": "Giới hạn có thể không thực thi ngay khi token đạt đến giá đã định. <link />",
|
|
1066
|
+
"limits.learnMore": "Tìm hiểu thêm về giới hạn",
|
|
1067
|
+
"limits.price.input.label": "Khi 1 <tokenSymbol /> có giá trị",
|
|
1068
|
+
"limits.price.label": "Giá giới hạn",
|
|
1069
|
+
"limits.selectSupportedTokens": "Chọn token được hỗ trợ",
|
|
1070
|
+
"liquidity.hooks": "Hook trên v4",
|
|
1071
|
+
"liquidity.hooks.address.input": "Nhập địa chỉ hook",
|
|
1072
|
+
"liquidity.hooks.address.tooltip": "Địa chỉ hook: {{address}}",
|
|
1073
|
+
"liquidity.learnMoreLabel": "Tìm hiểu về cung cấp thanh khoản",
|
|
1074
|
+
"liquidity.notEnough.label": "Không đủ thanh khoản để hiển thị giá trị USD chính xác.",
|
|
1075
|
+
"liquidity.provideOnProtocols": "Cung cấp thanh khoản trên các giao thức khác nhau",
|
|
1076
|
+
"liquidityPool.page.title": "Thêm thanh khoản vào pool {{version}} trên Lux",
|
|
1077
|
+
"liquidityPool.positions.loadingMore": "Đang tải thêm vị thế...",
|
|
1078
|
+
"liquidityPool.positions.page.title": "Quản lý thanh khoản pool {{quoteSymbol}}/{{baseSymbol}} trên Lux",
|
|
1079
|
+
"liquidityPool.positions.page.version.description": "Xem vị thế thanh khoản {{version}} đang hoạt động của bạn. Thêm vị thế mới.",
|
|
1080
|
+
"liquidityPool.positions.page.version.title": "Quản lý thanh khoản pool {{version}} trên Lux",
|
|
1081
|
+
"migrate.migrating": "Đang di chuyển",
|
|
1082
|
+
"migrate.refund": "Bạn không thể di chuyển vị thế toàn dải giá của bạn tới khoảng giá đã chọn. Số dư còn lại theo ước tính này sẽ được hoàn về ví của bạn.",
|
|
1083
|
+
"migrate.refund.title": "Bạn sẽ được hoàn lại",
|
|
1084
|
+
"migrate.selectFeeTier": "Chọn bậc phí",
|
|
1085
|
+
"migrate.setRange": "Đặt khoảng giá",
|
|
1086
|
+
"mobileAppPromo.banner.getTheApp.link": "Tải ứng dụng Lux Wallet",
|
|
1087
|
+
"mobileAppPromo.banner.title": "Lux: Ví Crypto & NFT",
|
|
1088
|
+
"moonpay.poweredBy": "Đổi tiền pháp định sang tiền mã hóa được cung cấp bởi MoonPay USA LLC",
|
|
1089
|
+
"nav.createAccount.button": "Tạo tài khoản",
|
|
1090
|
+
"nav.logIn.button": "Đăng nhập",
|
|
1091
|
+
"nav.logInOrConnect.title": "Đăng nhập hoặc kết nối",
|
|
1092
|
+
"nav.products.tradingApi": "Tích hợp giao thức",
|
|
1093
|
+
"nav.products.unichain": "Blockchain DeFi",
|
|
1094
|
+
"nav.products.luxX": "Trình siêu tổng hợp",
|
|
1095
|
+
"nav.products.wallet": "Hoán đổi, lưu trữ và khám phá",
|
|
1096
|
+
"nav.signUp.button": "Đăng ký",
|
|
1097
|
+
"nav.tabs.createPosition": "Tạo vị thế",
|
|
1098
|
+
"nav.tabs.viewPositions": "Xem vị thế",
|
|
1099
|
+
"network.lostConnection": "Có thể bạn đã mất kết nối mạng.",
|
|
1100
|
+
"network.mightBeDown": "{{network}} có thể đang gặp sự cố, hoặc có thể bạn đã mất kết nối mạng.",
|
|
1101
|
+
"network.warning": "Cảnh báo mạng",
|
|
1102
|
+
"nft.reportSpam": "Báo cáo là spam",
|
|
1103
|
+
"notFound.oops": "Ối, đưa tôi về trang Hoán đổi",
|
|
1104
|
+
"notice.uk": "Ứng dụng web này được cung cấp như một công cụ để người dùng tương tác với Giao thức Lux theo sáng kiến của riêng họ, không có sự chứng thực hay khuyến nghị nào về hoạt động mua bán tiền mã hóa. Khi làm như vậy, Lux không khuyến nghị người dùng hoặc người dùng tiềm năng tham gia hoạt động mua bán tài sản mã hóa, và người dùng hoặc người dùng tiềm năng của ứng dụng web không nên coi trang web này hoặc nội dung của trang web là có bao gồm bất kỳ hình thức khuyến nghị, mời hay khuyến khích giao dịch tài sản crypto nào.",
|
|
1105
|
+
"notice.uk.label": "Tuyên bố miễn trừ của UK:",
|
|
1106
|
+
"notification.assetVisibility.hidden": "Đã ẩn {{assetName}}",
|
|
1107
|
+
"notification.assetVisibility.unhidden": "Đã bỏ ẩn {{assetName}}",
|
|
1108
|
+
"notification.buy.network": "Mua trên {{network}}",
|
|
1109
|
+
"notification.copied.address": "Đã sao chép địa chỉ",
|
|
1110
|
+
"notification.copied.calldata": "Đã sao chép dữ liệu gọi",
|
|
1111
|
+
"notification.copied.contractAddress": "Đã sao chép địa chỉ hợp đồng",
|
|
1112
|
+
"notification.copied.failed": "Không thể sao chép vào bộ nhớ tạm",
|
|
1113
|
+
"notification.copied.image": "Đã sao chép hình ảnh",
|
|
1114
|
+
"notification.copied.linkUrl": "Đã sao chép liên kết",
|
|
1115
|
+
"notification.copied.message": "Đã sao chép tin nhắn",
|
|
1116
|
+
"notification.copied.nftUrl": "Đã sao chép URL NFT",
|
|
1117
|
+
"notification.copied.poolId": "Đã sao chép ID pool",
|
|
1118
|
+
"notification.copied.tokenUrl": "Đã sao chép URL token",
|
|
1119
|
+
"notification.copied.transactionId": "Đã sao chép ID giao dịch",
|
|
1120
|
+
"notification.copied.unitag": "Đã sao chép tên người dùng",
|
|
1121
|
+
"notification.countryChange": "Đã chuyển sang {{countryName}}",
|
|
1122
|
+
"notification.limit.network": "Tạo lệnh giới hạn trên {{network}}",
|
|
1123
|
+
"notification.lp.network": "Cung cấp thanh khoản trên {{network}}",
|
|
1124
|
+
"notification.network.changed": "Đã chuyển sang {{network}}",
|
|
1125
|
+
"notification.noAppFees.subtitle": "Không còn phí mua bán tại ứng dụng trên Giao thức Lux.",
|
|
1126
|
+
"notification.noAppFees.title": "Tận hưởng mua bán miễn phí trên các ứng dụng Lux",
|
|
1127
|
+
"notification.passwordChanged": "Đã thay đổi mật khẩu",
|
|
1128
|
+
"notification.poolFinder.network": "Tìm pool trên {{network}}",
|
|
1129
|
+
"notification.restore.success": "Đã khôi phục ví!",
|
|
1130
|
+
"notification.sell.network": "Bán trên {{network}}",
|
|
1131
|
+
"notification.send.network": "Đang gửi trên {{network}}",
|
|
1132
|
+
"notification.smartWallet.disabled": "Đã tắt trên 1 mạng",
|
|
1133
|
+
"notification.smartWallet.disabled.all": "Đã tắt ví thông minh",
|
|
1134
|
+
"notification.smartWallet.disabled.plural": "Đã tắt trên {{amount}} mạng",
|
|
1135
|
+
"notification.spam.NFT.failed": "Không thể báo cáo NFT. Thử lại sau.",
|
|
1136
|
+
"notification.swap.network": "Đang hoán đổi trên {{network}}",
|
|
1137
|
+
"notification.swap.pending.swap": "Đang chờ hoán đổi",
|
|
1138
|
+
"notification.swap.pending.unwrap": "Đang chờ hủy bao bọc",
|
|
1139
|
+
"notification.swap.pending.wrap": "Đang chờ bao bọc",
|
|
1140
|
+
"notification.transaction.approve.canceled": "Đã hủy phê duyệt {{currencySymbol}}.",
|
|
1141
|
+
"notification.transaction.approve.fail": "Không thể phê duyệt {{currencySymbol}} để sử dụng với {{address}}.",
|
|
1142
|
+
"notification.transaction.approve.success": "Đã phê duyệt {{currencySymbol}} để sử dụng với {{address}}.",
|
|
1143
|
+
"notification.transaction.pending": "Giao dịch đang chờ xử lý",
|
|
1144
|
+
"notification.transaction.swap.canceled": "Đã hủy hoán đổi {{inputCurrencySymbol}}-{{outputCurrencySymbol}}.",
|
|
1145
|
+
"notification.transaction.swap.expired": "Hoán đổi {{inputCurrencyAmountWithSymbol}} lấy {{outputCurrencyAmountWithSymbol}} đã hết hạn.",
|
|
1146
|
+
"notification.transaction.swap.fail": "Không thể hoán đổi {{inputCurrencyAmountWithSymbol}} lấy {{outputCurrencyAmountWithSymbol}}.",
|
|
1147
|
+
"notification.transaction.swap.success": "Đã hoán đổi {{inputCurrencyAmountWithSymbol}} lấy {{outputCurrencyAmountWithSymbol}}.",
|
|
1148
|
+
"notification.transaction.transfer.canceled": "Đã hủy gửi {{tokenNameOrAddress}}",
|
|
1149
|
+
"notification.transaction.transfer.fail": "Không thể gửi {{tokenNameOrAddress}} đến {{walletNameOrAddress}}",
|
|
1150
|
+
"notification.transaction.transfer.received": "Đã nhận {{tokenNameOrAddress}} từ {{walletNameOrAddress}}",
|
|
1151
|
+
"notification.transaction.transfer.success": "Đã gửi {{tokenNameOrAddress}} đến {{walletNameOrAddress}}",
|
|
1152
|
+
"notification.transaction.unknown.fail.full": "Không thể giao dịch với {{addressOrEnsName}}",
|
|
1153
|
+
"notification.transaction.unknown.fail.short": "Giao dịch không thành công",
|
|
1154
|
+
"notification.transaction.unknown.success.full": "Đã giao dịch với {{addressOrEnsName}}",
|
|
1155
|
+
"notification.transaction.unknown.success.short": "Giao dịch đã được xác nhận",
|
|
1156
|
+
"notification.transaction.unwrap.canceled": "Đã hủy thao tác hủy bao bọc {{inputCurrencySymbol}}.",
|
|
1157
|
+
"notification.transaction.unwrap.fail": "Không thể hủy bao bọc {{inputCurrencyAmountWithSymbol}}.",
|
|
1158
|
+
"notification.transaction.unwrap.success": "Đã hủy bao bọc {{inputCurrencyAmountWithSymbol}} và nhận {{outputCurrencyAmountWithSymbol}}.",
|
|
1159
|
+
"notification.transaction.wrap.canceled": "Đã hủy thao tác bao bọc {{inputCurrencySymbol}}.",
|
|
1160
|
+
"notification.transaction.wrap.fail": "Không thể bao bọc {{inputCurrencyAmountWithSymbol}}.",
|
|
1161
|
+
"notification.transaction.wrap.success": "Đã bao bọc {{inputCurrencyAmountWithSymbol}} và nhận {{outputCurrencyAmountWithSymbol}}.",
|
|
1162
|
+
"notification.transfer.pending": "Đang chờ gửi",
|
|
1163
|
+
"notification.walletConnect.confirmed": "Giao dịch đã được xác nhận với {{dappName}}",
|
|
1164
|
+
"notification.walletConnect.connected": "Đã kết nối",
|
|
1165
|
+
"notification.walletConnect.disconnected": "Đã ngắt kết nối",
|
|
1166
|
+
"notification.walletConnect.failed": "Giao dịch không thành công với {{dappName}}",
|
|
1167
|
+
"notification.walletConnect.networkChanged.full": "Đã chuyển sang {{networkName}}",
|
|
1168
|
+
"notification.walletConnect.networkChanged.short": "Đã chuyển đổi mạng",
|
|
1169
|
+
"notifications.scantastic.subtitle": "Tiếp tục trên Tiện ích mở rộng Lux",
|
|
1170
|
+
"notifications.scantastic.title": "Thành công!",
|
|
1171
|
+
"onboarding.backup.manual.banner": "Chúng tôi khuyên bạn nên ghi lại ra một tờ giấy và cất giữ ở nơi an toàn, chẳng hạn như két sắt.",
|
|
1172
|
+
"onboarding.backup.manual.displayWarning.description": "Đọc kỹ những điều sau trước khi tiếp tục.",
|
|
1173
|
+
"onboarding.backup.manual.displayWarning.note.access": "Cụm từ khôi phục này cho bạn toàn quyền truy cập vào ví và tiền quỹ của bạn",
|
|
1174
|
+
"onboarding.backup.manual.displayWarning.note.secure": "Xem nội dung này ở chế độ riêng tư và không chia sẻ với bất kỳ ai",
|
|
1175
|
+
"onboarding.backup.manual.displayWarning.note.storage": "Ghi lại và cất giữ ở một nơi an toàn",
|
|
1176
|
+
"onboarding.backup.manual.displayWarning.title": "Một số điều quan trọng cần biết",
|
|
1177
|
+
"onboarding.backup.manual.error": "Từ không hợp lệ hoặc sai chính tả",
|
|
1178
|
+
"onboarding.backup.manual.placeholder": "Từ bí mật",
|
|
1179
|
+
"onboarding.backup.manual.progress": "Đã hoàn thành {{completedStepsCount}}/{{totalStepsCount}}",
|
|
1180
|
+
"onboarding.backup.manual.selectedWordPlaceholder": "Chọn từ",
|
|
1181
|
+
"onboarding.backup.manual.subtitle_one": "Từ thứ {{count}} trong cụm từ khôi phục của bạn là gì?",
|
|
1182
|
+
"onboarding.backup.manual.subtitle_two": "Từ thứ {{count}} trong cụm từ khôi phục của bạn là gì?",
|
|
1183
|
+
"onboarding.backup.manual.subtitle_few": "Từ thứ {{count}} trong cụm từ khôi phục của bạn là gì?",
|
|
1184
|
+
"onboarding.backup.manual.subtitle_other": "Từ thứ {{count}} trong cụm từ khôi phục của bạn là gì?",
|
|
1185
|
+
"onboarding.backup.manual.title": "Hãy đảm bảo rằng bạn đã ghi lại chính xác",
|
|
1186
|
+
"onboarding.backup.option.badge.quick": "Nhanh",
|
|
1187
|
+
"onboarding.backup.option.cloud.description": "Sao lưu ví của bạn qua {{cloudProviderName}}, được bảo vệ bằng mật khẩu khôi phục.",
|
|
1188
|
+
"onboarding.backup.option.cloud.title": "Đặt mật khẩu khôi phục",
|
|
1189
|
+
"onboarding.backup.option.manual.description": "Ghi lại 12 từ bí mật của bạn vào một tờ giấy và cất giữ ở nơi an toàn.",
|
|
1190
|
+
"onboarding.backup.option.manual.title": "Ghi lại cụm từ khôi phục",
|
|
1191
|
+
"onboarding.backup.reminder.backupNowButton": "Sao lưu ngay",
|
|
1192
|
+
"onboarding.backup.reminder.remindMeLaterButton": "Nhắc tôi sau",
|
|
1193
|
+
"onboarding.backup.reminder.title": "Sao lưu ví của bạn",
|
|
1194
|
+
"onboarding.backup.reminder.warning.description": "Sao lưu ví của bạn để có thể khôi phục tài sản khi bạn mất hoặc đổi điện thoại.",
|
|
1195
|
+
"onboarding.backup.reminder.warning.fundsLabel": "Quỹ tài sản gặp rủi ro",
|
|
1196
|
+
"onboarding.backup.reminder.warning.title": "Bạn có thể mất quỹ",
|
|
1197
|
+
"onboarding.backup.speedBump.cloud.description": "Nếu bạn quên mật khẩu, chúng tôi không thể đặt lại cho bạn. Hãy ghi lại và cất giữ ở một nơi an toàn hoặc lưu trữ trong trình quản lý mật khẩu bảo mật.",
|
|
1198
|
+
"onboarding.backup.speedBump.cloud.disclaimer": "Tôi hiểu rằng Lux Labs không thể thiết lập lại mật khẩu khôi phục của tôi.",
|
|
1199
|
+
"onboarding.backup.speedBump.cloud.title": "Việc lưu mật khẩu này rất quan trọng",
|
|
1200
|
+
"onboarding.backup.speedBump.manual.description": "Hãy đảm bảo bạn đã ghi lại đúng cụm từ khôi phục và có nơi an toàn để cất giữ.",
|
|
1201
|
+
"onboarding.backup.speedBump.manual.disclaimer": "Tôi hiểu rằng Lux Labs không thể khôi phục ví của tôi nếu tôi đánh mất cụm từ này.",
|
|
1202
|
+
"onboarding.backup.speedBump.manual.title": "Trước khi hoàn tất...",
|
|
1203
|
+
"onboarding.backup.subtitle": "Đây là cách bạn sẽ khôi phục ví nếu xóa ứng dụng hoặc mất thiết bị.",
|
|
1204
|
+
"onboarding.backup.title.existing": "Sao lưu ví của bạn",
|
|
1205
|
+
"onboarding.backup.title.new": "Chọn phương thức sao lưu",
|
|
1206
|
+
"onboarding.backup.view.subtitle.message1": "Đọc kỹ những điều sau trước khi tiếp tục",
|
|
1207
|
+
"onboarding.backup.view.subtitle.message2": "Bạn sẽ cần nhập tất cả 12 từ bí mật này để khôi phục ví của mình.",
|
|
1208
|
+
"onboarding.backup.view.title": "Ghi lại cụm từ khôi phục của bạn",
|
|
1209
|
+
"onboarding.backup.view.warning.message1": "Cụm từ khôi phục này cho bạn toàn quyền truy cập vào ví và quỹ của bạn",
|
|
1210
|
+
"onboarding.backup.view.warning.message2": "Ghi lại và cất giữ ở một nơi an toàn",
|
|
1211
|
+
"onboarding.backup.view.warning.message3": "Xem nội dung này ở chế độ riêng tư và <u>không chia sẻ với bất kỳ ai</u>",
|
|
1212
|
+
"onboarding.cloud.confirm.description": "Bạn sẽ cần nhập mật khẩu này để khôi phục quỹ của mình. Nếu bạn quên, chúng tôi sẽ không thể lấy lại được cho bạn.",
|
|
1213
|
+
"onboarding.cloud.confirm.title": "Xác nhận mật khẩu khôi phục",
|
|
1214
|
+
"onboarding.cloud.createPassword.description": "Bạn sẽ cần nhập mật khẩu này để khôi phục quỹ của mình. Nếu bạn quên, chúng tôi sẽ không thể lấy lại được cho bạn.",
|
|
1215
|
+
"onboarding.cloud.createPassword.title": "Tạo mật khẩu khôi phục",
|
|
1216
|
+
"onboarding.complete.button": "Mở Tiện ích mở rộng Lux",
|
|
1217
|
+
"onboarding.complete.description": "Ví của bạn đã sẵn sàng gửi và nhận crypto. Mở Tiện ích mở rộng Lux bằng phím tắt bên dưới.",
|
|
1218
|
+
"onboarding.complete.go_to_lux": "Đi tới Lux Web App",
|
|
1219
|
+
"onboarding.complete.pin.description": "Nhấp vào biểu tượng ghim để thêm Tiện ích mở rộng Lux vào thanh công cụ.",
|
|
1220
|
+
"onboarding.complete.pin.title": "Ghim Tiện ích mở rộng Lux",
|
|
1221
|
+
"onboarding.complete.title": "Bạn đã sẵn sàng",
|
|
1222
|
+
"onboarding.extension.biometrics.subtitle.fingerprint": "Truy cập ví nhanh chóng và an toàn chỉ bằng vân tay của bạn.",
|
|
1223
|
+
"onboarding.extension.biometrics.title": "Bật {{biometricsMethod}}",
|
|
1224
|
+
"onboarding.extension.password.subtitle": "Bạn sẽ cần mật khẩu này để mở khóa ví và truy cập cụm từ khôi phục",
|
|
1225
|
+
"onboarding.extension.password.title.default": "Tạo mật khẩu",
|
|
1226
|
+
"onboarding.extension.password.title.reset": "Đặt lại mật khẩu",
|
|
1227
|
+
"onboarding.extension.unsupported.android.description": "Tiện ích mở rộng Lux chỉ tương thích với Chrome trên máy tính.",
|
|
1228
|
+
"onboarding.extension.unsupported.android.title": "Chrome trên thiết bị di động (vẫn) chưa được hỗ trợ",
|
|
1229
|
+
"onboarding.extension.unsupported.description": "Hiện tại Tiện ích mở rộng Lux chỉ tương thích với Chrome.",
|
|
1230
|
+
"onboarding.extension.unsupported.title": "Trình duyệt này (vẫn) chưa được hỗ trợ",
|
|
1231
|
+
"onboarding.home.intro.backup.description.extension": "Lưu cụm từ khôi phục để đảm bảo bạn sẽ không mất quyền truy cập vào ví của mình.",
|
|
1232
|
+
"onboarding.home.intro.backup.description.mobile": "Lập kế hoạch khôi phục phòng khi bạn mất hoặc đổi điện thoại.",
|
|
1233
|
+
"onboarding.home.intro.backup.title": "Sao lưu ví của bạn",
|
|
1234
|
+
"onboarding.home.intro.bridgedAssets.description": "Giờ đây, SOL, WIF, BONK và JUP đã có sẵn trên Unichain",
|
|
1235
|
+
"onboarding.home.intro.bridgedAssets.description.v2": "Giờ đây, DOGE, XRP, XPL và ZEC đã có sẵn trên Unichain",
|
|
1236
|
+
"onboarding.home.intro.bridgedAssets.title": "Giao dịch các token mới trên Unichain",
|
|
1237
|
+
"onboarding.home.intro.fund.description": "Nạp tiền vào ví bằng cách mua crypto hoặc chuyển từ tài khoản khác.",
|
|
1238
|
+
"onboarding.home.intro.fund.title": "Nhận token đầu tiên của bạn",
|
|
1239
|
+
"onboarding.home.intro.label.required": "Bắt buộc",
|
|
1240
|
+
"onboarding.home.intro.label.swipe": "Vuốt",
|
|
1241
|
+
"onboarding.home.intro.pushNotifications.description": "Nhận cảnh báo giá về token yêu thích, xu hướng thị trường và nhiều thông tin khác.",
|
|
1242
|
+
"onboarding.home.intro.pushNotifications.title": "Luôn nắm được tin tức",
|
|
1243
|
+
"onboarding.home.intro.unitag.description": "Xây dựng hồ sơ web3 được cá nhân hóa và dễ dàng chia sẻ địa chỉ của bạn với bạn bè.",
|
|
1244
|
+
"onboarding.home.intro.unitag.title": "Lấy tên người dùng {{unitagDomain}}",
|
|
1245
|
+
"onboarding.import.error.invalidWords_one": "1 từ không hợp lệ hoặc sai chính tả",
|
|
1246
|
+
"onboarding.import.error.invalidWords_other": "{{count}} từ không hợp lệ hoặc sai chính tả",
|
|
1247
|
+
"onboarding.import.method.restore.message.android": "Thêm ví bạn đã sao lưu vào tài khoản Google Drive.",
|
|
1248
|
+
"onboarding.import.method.restore.message.ios": "Thêm ví bạn đã sao lưu vào tài khoản iCloud.",
|
|
1249
|
+
"onboarding.import.method.restore.title": "Khôi phục ví",
|
|
1250
|
+
"onboarding.import.method.restoreSeedPhrase.cloud.desc.android": "Nhập mật khẩu khôi phục để khôi phục ví từ bản sao lưu trên Google Drive.",
|
|
1251
|
+
"onboarding.import.method.restoreSeedPhrase.cloud.desc.ios": "Nhập mật khẩu khôi phục để khôi phục ví từ bản sao lưu trên iCloud.",
|
|
1252
|
+
"onboarding.import.method.restoreSeedPhrase.cloud.title.android": "Khôi phục từ Google Drive",
|
|
1253
|
+
"onboarding.import.method.restoreSeedPhrase.cloud.title.ios": "Khôi phục từ iCloud",
|
|
1254
|
+
"onboarding.import.method.restoreSeedPhrase.title": "Chọn cách khôi phục ví",
|
|
1255
|
+
"onboarding.import.method.restoreSeedPhrase.wallet.desc": "Nhập 12 từ bí mật mà bạn đã lưu trữ ở một nơi an toàn trước đây.",
|
|
1256
|
+
"onboarding.import.method.restoreSeedPhrase.wallet.title": "Nhập cụm từ khôi phục",
|
|
1257
|
+
"onboarding.import.method.viewPrivateKeys.button.desc": "Xem khóa riêng tư của bạn",
|
|
1258
|
+
"onboarding.import.method.viewPrivateKeys.title": "Không có những thông tin trên? ",
|
|
1259
|
+
"onboarding.import.onDeviceRecovery.other_options": "Tạo hoặc nhập ví khác",
|
|
1260
|
+
"onboarding.import.onDeviceRecovery.other_options.label": "Bạn không muốn bất kỳ phương án nào ở trên?",
|
|
1261
|
+
"onboarding.import.onDeviceRecovery.subtitle": "Chọn ví bạn muốn đăng nhập lại.",
|
|
1262
|
+
"onboarding.import.onDeviceRecovery.title": "Chào mừng trở lại Lux",
|
|
1263
|
+
"onboarding.import.onDeviceRecovery.wallet.button": "Xem cụm từ khôi phục",
|
|
1264
|
+
"onboarding.import.onDeviceRecovery.wallet.count_one": "+1 ví khác",
|
|
1265
|
+
"onboarding.import.onDeviceRecovery.wallet.count_other": "+{{count}} ví khác",
|
|
1266
|
+
"onboarding.import.onDeviceRecovery.warning.caption": "Vui lòng đảm bảo bạn đã sao lưu tất cả các ví khác. Đến một thời điểm bạn muốn khôi phục các ví đó, bạn sẽ cần cụm từ khôi phục hoặc bản sao lưu {{cloudProvider}} tương ứng của chúng.",
|
|
1267
|
+
"onboarding.import.onDeviceRecovery.warning.title": "Bạn có chắc chắn không?",
|
|
1268
|
+
"onboarding.import.selectMethod.errorMessage": "Xảy ra lỗi không mong muốn. Vui lòng thử lại.",
|
|
1269
|
+
"onboarding.import.selectMethod.mobileApp.subtitle": "Nhập ví từ ứng dụng di động bằng mã QR.",
|
|
1270
|
+
"onboarding.import.selectMethod.mobileApp.title": "Sử dụng Lux trên di động",
|
|
1271
|
+
"onboarding.import.selectMethod.passkey.subtitle": "Đồng bộ Lux Wallet của bạn bằng khóa mật mã có sẵn.",
|
|
1272
|
+
"onboarding.import.selectMethod.passkey.title": "Đăng nhập bằng khóa mật mã",
|
|
1273
|
+
"onboarding.import.selectMethod.recoveryPhrase.subtitle": "Nhập từ một ví crypto khác.",
|
|
1274
|
+
"onboarding.import.selectMethod.recoveryPhrase.title": "Nhập cụm từ khôi phục",
|
|
1275
|
+
"onboarding.import.selectMethod.title": "Đăng nhập hoặc nhập ví",
|
|
1276
|
+
"onboarding.import.title": "Chọn cách thêm ví của bạn",
|
|
1277
|
+
"onboarding.importMnemonic.button.default": "Cụm từ khôi phục của tôi có 12 từ",
|
|
1278
|
+
"onboarding.importMnemonic.button.importing": "Đang nhập...",
|
|
1279
|
+
"onboarding.importMnemonic.button.longPhrase": "Cụm từ khôi phục của tôi dài hơn",
|
|
1280
|
+
"onboarding.importMnemonic.error.invalidPhrase": "Cụm từ bạn đã nhập không hợp lệ",
|
|
1281
|
+
"onboarding.importMnemonic.subtitle": "Nhập hoặc dán cụm từ khôi phục gồm 12 từ của bạn",
|
|
1282
|
+
"onboarding.importMnemonic.title": "Nhập cụm từ khôi phục của bạn",
|
|
1283
|
+
"onboarding.importPasskey.bringWindowToFront": "Đưa cửa sổ lên trên",
|
|
1284
|
+
"onboarding.importPasskey.continueInSecureWindow": "Tiếp tục ở cửa sổ đăng nhập bảo mật.",
|
|
1285
|
+
"onboarding.intro.button.alreadyHave": "Tôi đã có ví",
|
|
1286
|
+
"onboarding.intro.button.logInOrImport": "Đăng nhập hoặc nhập",
|
|
1287
|
+
"onboarding.intro.mobileScan.button": "Quét mã QR để nhập",
|
|
1288
|
+
"onboarding.intro.mobileScan.title": "Bạn đã có ứng dụng Lux?",
|
|
1289
|
+
"onboarding.landing.button.add": "Thêm ví hiện có",
|
|
1290
|
+
"onboarding.landing.button.create": "Tạo ví",
|
|
1291
|
+
"onboarding.landing.button.createAccount": "Tạo tài khoản",
|
|
1292
|
+
"onboarding.name.choose": "Chọn tên người dùng",
|
|
1293
|
+
"onboarding.name.choose.subtitle": "Đây là tên công khai mà ai cũng có thể sử dụng để gửi crypto cho bạn.",
|
|
1294
|
+
"onboarding.notification.permission.message": "Để nhận thông báo, hãy bật thông báo cho Lux Wallet trong mục cài đặt của thiết bị bạn.",
|
|
1295
|
+
"onboarding.notification.permission.title": "Quyền thông báo",
|
|
1296
|
+
"onboarding.notification.subtitle": "Theo dõi trạng thái giao dịch và biến động mạnh về giá của các token yêu thích.",
|
|
1297
|
+
"onboarding.notification.title": "Bật thông báo",
|
|
1298
|
+
"onboarding.passkey.create": "Tạo khóa mật mã",
|
|
1299
|
+
"onboarding.passkey.loading.subtitle": "Quá trình này sẽ hoàn tất trong chốc lát.",
|
|
1300
|
+
"onboarding.passkey.loading.title": "Đang tìm ví của bạn...",
|
|
1301
|
+
"onboarding.passkey.secure": "Bảo vệ tài khoản của bạn",
|
|
1302
|
+
"onboarding.passkey.secure.description": "Khóa mật mã giúp bạn truy cập tài khoản nhanh chóng và an toàn mà chỉ cần sử dụng khuôn mặt hoặc dấu vân tay.",
|
|
1303
|
+
"onboarding.recoveryPhrase.confirm.subtitle.combined": "Hãy xác nhận bạn đã ghi đúng. Nếu bạn làm mất hoặc ghi sai, bạn sẽ không thể khôi phục quỹ của mình.",
|
|
1304
|
+
"onboarding.recoveryPhrase.confirm.subtitle.default": "Nếu bạn làm mất hoặc ghi sai, bạn sẽ không thể khôi phục quỹ của mình.",
|
|
1305
|
+
"onboarding.recoveryPhrase.confirm.title": "Hãy xác nhận bạn đã ghi đúng",
|
|
1306
|
+
"onboarding.recoveryPhrase.view.subtitle": "Bạn sẽ cần nhập tất cả 12 từ bí mật này để khôi phục ví của mình.",
|
|
1307
|
+
"onboarding.recoveryPhrase.view.title": "Ghi lại cụm từ khôi phục của bạn",
|
|
1308
|
+
"onboarding.recoveryPhrase.view.title.hasPassword": "Nếu bạn quên mật khẩu...",
|
|
1309
|
+
"onboarding.recoveryPhrase.warning.final.button": "Tôi đã sẵn sàng",
|
|
1310
|
+
"onboarding.recoveryPhrase.warning.final.message": "Cụm từ khôi phục cho phép bạn (và bất kỳ ai có cụm từ khôi phục) truy cập vào quỹ của mình. Hãy đảm bảo giữ cụm từ này chỉ mình bạn biết.",
|
|
1311
|
+
"onboarding.recoveryPhrase.warning.final.title": "Thực hiện bước này ở nơi riêng tư",
|
|
1312
|
+
"onboarding.recoveryPhrase.warning.screenshot.message": "Bất kỳ ai truy cập được ảnh của bạn đều có thể truy cập vào ví của bạn. Chúng tôi khuyên bạn nên ghi lại các từ thay vì chụp ảnh.",
|
|
1313
|
+
"onboarding.recoveryPhrase.warning.screenshot.title": "Ảnh chụp màn hình không an toàn",
|
|
1314
|
+
"onboarding.resetPassword.complete.safety": "Tìm hiểu thêm về an toàn ví",
|
|
1315
|
+
"onboarding.resetPassword.complete.subtitle": "Sử dụng mật khẩu mới để mở khóa ví của bạn.",
|
|
1316
|
+
"onboarding.resetPassword.complete.title": "Đặt lại mật khẩu",
|
|
1317
|
+
"onboarding.scan.error": "Có lỗi khi tải mã QR",
|
|
1318
|
+
"onboarding.scan.otp.error": "Mã bạn đã gửi không đúng, hoặc đã xảy ra lỗi khi gửi. Vui lòng thử lại.",
|
|
1319
|
+
"onboarding.scan.otp.failed": "Số lần thử không thành công: {{number}}",
|
|
1320
|
+
"onboarding.scan.otp.subtitle": "Kiểm tra mã 6 ký tự trong ứng dụng Lux trên di động",
|
|
1321
|
+
"onboarding.scan.otp.title": "Nhập mã một lần",
|
|
1322
|
+
"onboarding.scan.subtitle": "Quét mã QR bằng ứng dụng Lux trên di động để bắt đầu nhập ví của bạn.",
|
|
1323
|
+
"onboarding.scan.title": "Nhập ví từ ứng dụng",
|
|
1324
|
+
"onboarding.scan.troubleScanning.message": "Nhập thông qua cụm từ khôi phục",
|
|
1325
|
+
"onboarding.scan.troubleScanning.title": "Không quét được?",
|
|
1326
|
+
"onboarding.scan.wifi": "Kết nối điện thoại của bạn vào cùng mạng WiFi của máy tính.",
|
|
1327
|
+
"onboarding.security.alert.biometrics.message.android": "Để sử dụng sinh trắc học, vui lòng thiết lập trước trong phần cài đặt",
|
|
1328
|
+
"onboarding.security.alert.biometrics.message.ios": "Để sử dụng {{biometricsMethod}}, hãy cho phép quyền truy cập trong mục cài đặt hệ thống",
|
|
1329
|
+
"onboarding.security.alert.biometrics.title.android": "Sinh trắc học đã bị tắt",
|
|
1330
|
+
"onboarding.security.alert.biometrics.title.ios": "{{biometricsMethod}} đã bị tắt",
|
|
1331
|
+
"onboarding.security.button.confirm.android": "Bật sinh trắc học",
|
|
1332
|
+
"onboarding.security.button.confirm.ios": "Bật {{biometricsMethod}}",
|
|
1333
|
+
"onboarding.security.button.setup": "Thiết lập",
|
|
1334
|
+
"onboarding.security.subtitle.android": "Thêm một tầng bảo mật bổ sung bằng cách yêu cầu sinh trắc học để gửi giao dịch.",
|
|
1335
|
+
"onboarding.security.subtitle.ios": "Thêm một tầng bảo mật bổ sung bằng cách yêu cầu {{biometricsMethod}} để gửi giao dịch.",
|
|
1336
|
+
"onboarding.security.title": "Bảo vệ ví của bạn",
|
|
1337
|
+
"onboarding.selectWallets.error": "Không thể tải địa chỉ",
|
|
1338
|
+
"onboarding.selectWallets.title.default": "Chọn ví để nhập",
|
|
1339
|
+
"onboarding.selectWallets.title.error": "Lỗi khi nhập ví",
|
|
1340
|
+
"onboarding.termsOfService": "Bằng việc tiếp tục, tôi đồng ý với<highlightTerms> Điều khoản dịch vụ </highlightTerms>và chấp nhận<highlightPrivacy> Chính sách về quyền riêng tư</highlightPrivacy>",
|
|
1341
|
+
"onboarding.tooltip.recoveryPhrase.trigger": "Cụm từ khôi phục là gì?",
|
|
1342
|
+
"onboarding.wallet.continue": "Hãy giữ an toàn",
|
|
1343
|
+
"onboarding.wallet.defaultName": "Ví {{number}}",
|
|
1344
|
+
"onboarding.wallet.description.full": "Đây là không gian cá nhân của bạn cho token, NFT và tất cả giao dịch của bạn. Hoàn tất thiết lập để giữ an toàn cho quỹ của mình.",
|
|
1345
|
+
"onboarding.wallet.title": "Chào mừng đến với ví mới của bạn",
|
|
1346
|
+
"onboarding.welcome.subtitle": "Hoàn tất thiết lập ví của bạn.",
|
|
1347
|
+
"onboarding.welcome.title": "Chào mừng!",
|
|
1348
|
+
"outageBanner.message": "Hiện không có dữ liệu {{chainName}}{{versionDescription}}, nhưng chúng tôi sẽ sớm giải quyết vấn đề này.",
|
|
1349
|
+
"outageBanner.message.sub": "Bạn vẫn có thể hoán đổi và cung cấp thanh khoản trên blockchain này mà không gặp vấn đề.",
|
|
1350
|
+
"outageBanner.title": "{{versionName}} sẽ sớm trở lại",
|
|
1351
|
+
"passkeys.help.modal.subtitle": "Nếu gặp vấn đề với khóa mật mã, bạn có thể truy cập Trung tâm trợ giúp Lux để được hỗ trợ.",
|
|
1352
|
+
"passkeys.help.modal.subtitle.invalidPasskey": "Không thể hoàn thành yêu cầu của bạn. Vui lòng thử lại với khóa mật mã liên kết với ",
|
|
1353
|
+
"passkeys.help.modal.subtitle.technicalError": "Không thể hoàn thành yêu cầu của bạn do xảy ra lỗi kỹ thuật không mong muốn. Quỹ tài sản của bạn vẫn an toàn. Vui lòng thử lại.",
|
|
1354
|
+
"passkeys.help.modal.title": "Cần trợ giúp?",
|
|
1355
|
+
"passkeys.help.modal.title.invalidPasskey": "Khóa mật mã không hợp lệ",
|
|
1356
|
+
"passkeys.help.modal.title.technicalError": "Lỗi kỹ thuật",
|
|
1357
|
+
"passkeys.manage.modal.subtitle": "Để thêm hoặc xóa khóa mật mã, vui lòng đăng nhập tại <highlightLink>{{passkeyManagementUrl}}</highlightLink>.",
|
|
1358
|
+
"passkeys.manage.modal.title": "Quản lý khóa mật mã",
|
|
1359
|
+
"permit.approval.fail": "Phê duyệt cho phép không thành công",
|
|
1360
|
+
"permit.approval.fail.message": "Permit2 cho phép phê duyệt token được chia sẻ và quản lý trên các ứng dụng khác nhau.",
|
|
1361
|
+
"pool.activeRange": "Khoảng giá theo nấc giá đang hoạt động",
|
|
1362
|
+
"pool.addAs": "Thêm dưới dạng {{nativeWrappedSymbol}}",
|
|
1363
|
+
"pool.apr": "APR",
|
|
1364
|
+
"pool.apr.base": "Base APR",
|
|
1365
|
+
"pool.apr.description": "Tính theo năm dựa trên phí 1 ngày",
|
|
1366
|
+
"pool.apr.reward": "Phần thưởng APR",
|
|
1367
|
+
"pool.aprText": "APR pool",
|
|
1368
|
+
"pool.balances": "Số dư pool",
|
|
1369
|
+
"pool.closedCTA.description": "Bạn có thể xem chúng bằng cách sử dụng bộ lọc ở đầu trang.",
|
|
1370
|
+
"pool.closedCTA.title": "Tìm kiếm vị thế đã đóng?",
|
|
1371
|
+
"pool.collectAs": "Thu dưới dạng {{nativeWrappedSymbol}}",
|
|
1372
|
+
"pool.collectFees": "Thu phí",
|
|
1373
|
+
"pool.connectEthereumToView": "Kết nối một ví Ethereum để xem các pool của bạn",
|
|
1374
|
+
"pool.create": "Đang tạo pool mới",
|
|
1375
|
+
"pool.create.info": "Lựa chọn của bạn sẽ tạo một pool thanh khoản mới có thể dẫn đến thanh khoản ban đầu thấp hơn và biến động tăng cao. Hãy cân nhắc thêm vào pool hiện có để giảm thiểu những rủi ro này.",
|
|
1376
|
+
"pool.createdPosition": "Đã tạo vị thế",
|
|
1377
|
+
"pool.createdPosition.canceled": "Đã hủy tạo vị thế",
|
|
1378
|
+
"pool.createdPosition.failed": "Tạo vị thế thất bại",
|
|
1379
|
+
"pool.dynamic": "Pool linh hoạt",
|
|
1380
|
+
"pool.earnings": "Thu nhập",
|
|
1381
|
+
"pool.earnings.empty": "Bạn chưa có thu nhập",
|
|
1382
|
+
"pool.explorers": "Trình duyệt",
|
|
1383
|
+
"pool.import": "Nhập pool",
|
|
1384
|
+
"pool.import.link.description": "Một số vị thế v2 không tự động hiển thị.",
|
|
1385
|
+
"pool.import.positions.v2": "Nhập các vị thế V2",
|
|
1386
|
+
"pool.import.positions.v2.selectPair.description": "Một số vị thế v2 không tự động hiển thị. Hãy chọn một cặp token để nhập và xem vị thế của bạn.",
|
|
1387
|
+
"pool.import.success": "Đã nhập pool",
|
|
1388
|
+
"pool.incentives.administeredRewards": "Hợp đồng tự trị Merkl Distributor phụ trách phân phối phần thưởng.",
|
|
1389
|
+
"pool.incentives.collect": "Thu thập",
|
|
1390
|
+
"pool.incentives.collectedRewards": "Phần thưởng đã thu thập",
|
|
1391
|
+
"pool.incentives.collectFailed": "Thu thập thất bại.",
|
|
1392
|
+
"pool.incentives.collectFailedNoRetry": "Thu thập phần thưởng thất bại.",
|
|
1393
|
+
"pool.incentives.collectingRewards": "Đang thu thập phần thưởng",
|
|
1394
|
+
"pool.incentives.collectRewards": "Thu thập phần thưởng",
|
|
1395
|
+
"pool.incentives.collectRewardsCanceled": "Đã hủy thu phần thưởng",
|
|
1396
|
+
"pool.incentives.daysLeft": "ngày còn lại",
|
|
1397
|
+
"pool.incentives.eligible": "Các pool đủ điều kiện có phần thưởng token để bạn có thể tăng thu nhập",
|
|
1398
|
+
"pool.incentives.eligibleTooltip": "Earn UNI rewards by providing liquidity to eligible pools.",
|
|
1399
|
+
"pool.incentives.merklDocs": "Tính bằng Merkl dựa trên phần thưởng phát hành và TVL của pool.",
|
|
1400
|
+
"pool.incentives.rewardsDistribution": "Phân phối phần thưởng",
|
|
1401
|
+
"pool.incentives.rewardsEarned": "Phần thưởng thu được",
|
|
1402
|
+
"pool.incentives.similarPoolHasRewards": "Một pool tương tự có phần thưởng UNI",
|
|
1403
|
+
"pool.incentives.switchPools": "Đổi pool",
|
|
1404
|
+
"pool.incentives.timePeriod": "Khoảng thời gian",
|
|
1405
|
+
"pool.incentives.uni.findMore": "Tìm pool có phần thưởng UNI",
|
|
1406
|
+
"pool.incentives.yourRewards.error": "Hiện chưa có phần thưởng cho bạn",
|
|
1407
|
+
"pool.incentives.yourRewards.error.description": "Không thể lấy phần thưởng. Nguyên nhân có thể do sự cố mạng. Vui lòng tải lại trang.",
|
|
1408
|
+
"pool.info": "Thông tin pool",
|
|
1409
|
+
"pool.limitFluctuation.warning": "Xin lưu ý rằng việc thực thi giới hạn có thể thay đổi dựa trên biến động thị trường thời gian thực và tắc nghẽn mạng Ethereum. Giới hạn có thể không thực thi chính xác khi token đạt đến giá đã định.",
|
|
1410
|
+
"pool.liquidity.data.error.message": "Gặp lỗi khi lấy dữ liệu cần thiết cho giao dịch của bạn.",
|
|
1411
|
+
"pool.liquidity.outOfSync": "Giá pool và giá thị trường không khớp",
|
|
1412
|
+
"pool.liquidity.outOfSync.message": "Các token đã chọn có giá trong pool khác với giá thị trường. Hãy điều chỉnh khoảng giá phù hợp hoặc đợi pool tái cân bằng nhằm tránh thua lỗ.",
|
|
1413
|
+
"pool.liquidity.parsing.error": "Lỗi dữ liệu pool",
|
|
1414
|
+
"pool.liquidity.parsing.error.message": "Không thể xử lý thông tin pool. Hãy thử làm mới để cập nhật dữ liệu mới nhất.",
|
|
1415
|
+
"pool.maxPrice": "Giá tối đa",
|
|
1416
|
+
"pool.migrateLiquidity": "Di chuyển thanh khoản",
|
|
1417
|
+
"pool.migrateLiquidityDisabledTooltip": "Blockchain này không hỗ trợ các pool thanh khoản v4.",
|
|
1418
|
+
"pool.migrateToV4": "Di chuyển sang v4",
|
|
1419
|
+
"pool.minPrice": "Giá tối thiểu",
|
|
1420
|
+
"pool.newPosition.title": "Vị thế mới",
|
|
1421
|
+
"pool.newSpecificPosition": "Vị thế {{symbol}} mới",
|
|
1422
|
+
"pool.notAvailableOnSolana": "Pool không khả dụng trên Solana",
|
|
1423
|
+
"pool.notFound.description": "Xin lỗi, chúng tôi không tìm thấy thông tin về pool này. Vui lòng kiểm tra tên và địa chỉ, sau đó thử lại.",
|
|
1424
|
+
"pool.notFound.title": "Không tìm thấy pool",
|
|
1425
|
+
"pool.percent": "Pool {{pct}}%",
|
|
1426
|
+
"pool.position": "Vị thế",
|
|
1427
|
+
"pool.positions": "Vị thế",
|
|
1428
|
+
"pool.positions.title": "Vị thế của bạn",
|
|
1429
|
+
"pool.positions.transaction.settings": "Cài đặt giao dịch",
|
|
1430
|
+
"pool.positions.usdValueUnavailable": "Không có giá trị USD",
|
|
1431
|
+
"pool.positions.usdValueUnavailable.tooltip": "Hiện tại không có giá trị USD cho vị thế này. Xem chi tiết vị thế để biết số lượng token đã nạp.",
|
|
1432
|
+
"pool.refresh.data": "Làm mới dữ liệu",
|
|
1433
|
+
"pool.refresh.prices": "Làm mới giá",
|
|
1434
|
+
"pool.removeLiquidity": "Rút thanh khoản",
|
|
1435
|
+
"pool.rewardAPR": "APR phần thưởng (UNI)",
|
|
1436
|
+
"pool.rewardAPR.percent": "APR phần thưởng {{pct}}",
|
|
1437
|
+
"pool.rewards": "Phần thưởng",
|
|
1438
|
+
"pool.selectPair": "Chọn cặp",
|
|
1439
|
+
"pool.specificPosition": "Vị thế {{symbol}}",
|
|
1440
|
+
"pool.tokenPair": "Cặp token",
|
|
1441
|
+
"pool.top.rewards": "Pool có phần thưởng",
|
|
1442
|
+
"pool.top.tvl": "Pool hàng đầu theo TVL",
|
|
1443
|
+
"pool.top.volume": "Pool theo khối lượng trong 24H",
|
|
1444
|
+
"pool.totalAPR": "Tổng APR",
|
|
1445
|
+
"pool.totalTokens": "Tổng token trong pool của bạn:",
|
|
1446
|
+
"pool.via": "{{tokenPair}} thông qua {{dex}}",
|
|
1447
|
+
"pool.volOverTvl": "Khối lượng trong 1 ngày/TVL",
|
|
1448
|
+
"pool.volume.thirtyDay": "Khối lượng 30 ngày",
|
|
1449
|
+
"pool.volume.thirtyDay.short": "KL 30N",
|
|
1450
|
+
"pool.withdrawAs": "Rút về dưới dạng {{nativeWrappedSymbol}}",
|
|
1451
|
+
"poolFinder.availablePools": "Pool có sẵn",
|
|
1452
|
+
"poolFinder.availablePools.found.description": "Pool v2 trùng khớp với cặp bạn lựa chọn.",
|
|
1453
|
+
"poolFinder.availablePools.notFound.description": "Không tìm thấy pool v2 trùng khớp. Hãy kiểm tra lại lựa chọn token của bạn và đảm bảo bạn đã kết nối với đúng ví.",
|
|
1454
|
+
"pools.explore": "Khám phá pool",
|
|
1455
|
+
"portfolio.activity.filters.timePeriod.all": "Mọi thời điểm",
|
|
1456
|
+
"portfolio.activity.filters.transactionType.addLiquidity": "Thanh khoản đã thêm",
|
|
1457
|
+
"portfolio.activity.filters.transactionType.all": "Mọi loại",
|
|
1458
|
+
"portfolio.activity.filters.transactionType.approvals": "Phê duyệt",
|
|
1459
|
+
"portfolio.activity.filters.transactionType.claimFees": "Phí đã nhận",
|
|
1460
|
+
"portfolio.activity.filters.transactionType.createPool": "Pool đã tạo",
|
|
1461
|
+
"portfolio.activity.filters.transactionType.mints": "Đúc",
|
|
1462
|
+
"portfolio.activity.filters.transactionType.receives": "Nhận",
|
|
1463
|
+
"portfolio.activity.filters.transactionType.removeLiquidity": "Thanh khoản đã rút",
|
|
1464
|
+
"portfolio.activity.filters.transactionType.sends": "Gửi",
|
|
1465
|
+
"portfolio.activity.filters.transactionType.swaps": "Các giao dịch hoán đổi",
|
|
1466
|
+
"portfolio.activity.filters.transactionType.wraps": "Bao bọc",
|
|
1467
|
+
"portfolio.activity.table.column.address": "Địa chỉ",
|
|
1468
|
+
"portfolio.activity.table.column.amount": "Số tiền",
|
|
1469
|
+
"portfolio.activity.table.column.time": "Thời gian",
|
|
1470
|
+
"portfolio.activity.table.column.type": "Loại",
|
|
1471
|
+
"portfolio.activity.title": "Hoạt động",
|
|
1472
|
+
"portfolio.defi.title": "DeFi",
|
|
1473
|
+
"portfolio.description": "Theo dõi danh mục đầu tư crypto của bạn trên tất cả các blockchain và giao thức",
|
|
1474
|
+
"portfolio.disconnected.connectWallet.cta": "Theo dõi danh mục đầu tư của bạn",
|
|
1475
|
+
"portfolio.disconnected.demoWallet.description": "Đây là ví dụ chỉ xem. Hãy kết nối ví của bạn để quản lý danh mục đầu tư.",
|
|
1476
|
+
"portfolio.disconnected.demoWallet.title": "Ví mẫu",
|
|
1477
|
+
"portfolio.disconnected.viewYourPortfolio.cta": "để xem danh mục đầu tư của bạn",
|
|
1478
|
+
"portfolio.limits.table.column.amount": "Số lượng",
|
|
1479
|
+
"portfolio.limits.table.column.limit": "Giới hạn",
|
|
1480
|
+
"portfolio.networkFilter.seeAllNetworks": "Xem tất cả các mạng",
|
|
1481
|
+
"portfolio.nfts.search.placeholder": "Tìm kiếm NFT",
|
|
1482
|
+
"portfolio.nfts.title": "NFT",
|
|
1483
|
+
"portfolio.overview.activity.seeAllActivity": "Xem hoạt động trên tất cả các mạng",
|
|
1484
|
+
"portfolio.overview.activity.table.empty_one": "Không có hoạt động gần đây",
|
|
1485
|
+
"portfolio.overview.activity.table.empty_other": "Không có hoạt động gần đây",
|
|
1486
|
+
"portfolio.overview.activity.table.subtitle_one": "{{count}} giao dịch trong 7 ngày qua",
|
|
1487
|
+
"portfolio.overview.activity.table.subtitle_other": "{{count}} giao dịch trong 7 ngày qua",
|
|
1488
|
+
"portfolio.overview.activity.table.subtitle_most_recent_one": "{{count}} giao dịch",
|
|
1489
|
+
"portfolio.overview.activity.table.subtitle_most_recent_other": "{{count}} giao dịch",
|
|
1490
|
+
"portfolio.overview.activity.table.title": "Hoạt động gần đây",
|
|
1491
|
+
"portfolio.overview.activity.table.title.noRecentActivity": "Không có hoạt động gần đây",
|
|
1492
|
+
"portfolio.overview.activity.table.viewAllActivity": "Xem tất cả hoạt động",
|
|
1493
|
+
"portfolio.overview.chart.errorText": "Dữ liệu về số dư danh mục đầu tư không khả dụng",
|
|
1494
|
+
"portfolio.overview.limits.table.openLimits_one": "{{count}} lệnh đang mở",
|
|
1495
|
+
"portfolio.overview.limits.table.openLimits_other": "{{count}} lệnh đang mở",
|
|
1496
|
+
"portfolio.overview.miniTokensTable.viewAllTokens": "Xem tất cả token",
|
|
1497
|
+
"portfolio.overview.pools.column.balance": "Số dư",
|
|
1498
|
+
"portfolio.overview.pools.subtitle.openPositions_one": "{{numPositions}} vị thế đang mở",
|
|
1499
|
+
"portfolio.overview.pools.subtitle.openPositions_other": "{{numPositions}} vị thế đang mở",
|
|
1500
|
+
"portfolio.overview.pools.table.viewAllPools": "Xem tất cả pool",
|
|
1501
|
+
"portfolio.overview.stats.swappedThisWeek": "Đã hoán đổi tuần này",
|
|
1502
|
+
"portfolio.overview.stats.swapsThisWeek": "Hoán đổi tuần này",
|
|
1503
|
+
"portfolio.overview.title": "Tổng quan",
|
|
1504
|
+
"portfolio.tokens.balance.totalTokens_one": "{{count}} token",
|
|
1505
|
+
"portfolio.tokens.balance.totalTokens_other": "{{count}} token",
|
|
1506
|
+
"portfolio.tokens.table.column.allocation": "Phân bổ",
|
|
1507
|
+
"portfolio.tokens.table.column.balance": "Số dư",
|
|
1508
|
+
"portfolio.tokens.table.column.change1d": "Biến động trong 1 ngày",
|
|
1509
|
+
"portfolio.tokens.table.column.price": "Giá",
|
|
1510
|
+
"portfolio.tokens.table.column.token": "Token",
|
|
1511
|
+
"portfolio.tokens.table.column.value": "Giá trị",
|
|
1512
|
+
"portfolio.tokens.title": "Token",
|
|
1513
|
+
"portfolio.view": "Xem danh mục đầu tư",
|
|
1514
|
+
"position.addHook": "Thêm Hook",
|
|
1515
|
+
"position.addHook.tooltip": "Hook là tính năng nâng cao cho phép pool tương tác với hợp đồng thông minh, mở khóa nhiều khả năng khác nhau. Hãy thận trọng khi thêm hook, vì một số hook có thể độc hại hoặc gây ra hậu quả không mong muốn.",
|
|
1516
|
+
"position.addingHook": "Đang thêm hook",
|
|
1517
|
+
"position.addingHook.disclaimer": "Việc thêm hook có thể gây ra hậu quả không mong muốn. Hãy nghiên cứu kỹ và tự chịu rủi ro khi tiến hành.",
|
|
1518
|
+
"position.addingHook.hideProperties": "Ẩn thuộc tính",
|
|
1519
|
+
"position.addingHook.invalidAddress": "Nhập địa chỉ hook hợp lệ",
|
|
1520
|
+
"position.addingHook.viewProperties": "Xem thuộc tính",
|
|
1521
|
+
"position.create.confirm": "Xác nhận vị thế",
|
|
1522
|
+
"position.create.invalidPrice": "Giá không hợp lệ",
|
|
1523
|
+
"position.create.invalidRange": "Khoảng giá không hợp lệ",
|
|
1524
|
+
"position.create.modal.header": "Đang tạo vị thế",
|
|
1525
|
+
"position.create.unsupportedSolana": "Không hỗ trợ các pool Solana.",
|
|
1526
|
+
"position.create.unsupportedSolana.description": "Để tạo pool, vui lòng chuyển sang một blockchain EVM được hỗ trợ.",
|
|
1527
|
+
"position.create.unsupportedToken.description": "Thử tạo với phiên bản giao thức khác.",
|
|
1528
|
+
"position.create.v2unsupportedChain": "Blockchain này không hỗ trợ các pool v2.",
|
|
1529
|
+
"position.currentValue": "Giá trị vị thế hiện tại",
|
|
1530
|
+
"position.default_price_strategies": "Chiến lược giá",
|
|
1531
|
+
"position.default_price_strategies.error": "Không thể thiết lập chiến lược giá",
|
|
1532
|
+
"position.deposit.confirm.create.description.less": "Giá ban đầu đã nhập thấp hơn {{value}}% so với giá thị trường và có thể khiến bạn mất quỹ. Bạn có muốn tiếp tục không?",
|
|
1533
|
+
"position.deposit.confirm.create.description.more": "Giá ban đầu đã nhập cao hơn {{value}}% so với giá thị trường và có thể khiến bạn mất quỹ. Bạn có muốn tiếp tục không?",
|
|
1534
|
+
"position.deposit.confirm.create.title": "Chênh lệnh giá lớn so với thị trường",
|
|
1535
|
+
"position.deposit.description": "Xác định số lượng token cho phần đóng góp thanh khoản của bạn.",
|
|
1536
|
+
"position.depositedCurrency": "Đã nạp {{currencySymbol}}",
|
|
1537
|
+
"position.fot.warning": "{{token}} và các token có \"tính phí trên mỗi giao dịch\" chỉ được hỗ trợ trên AMM v2.",
|
|
1538
|
+
"position.fot.warning.cta": "Tạo một vị thế v2",
|
|
1539
|
+
"position.hook.disclaimer": "Tôi hiểu rủi ro tiềm ẩn liên quan đến việc thêm hook này.",
|
|
1540
|
+
"position.hook.donateWarning": "Thiết lập này có thể khiến số phí kiếm được thay đổi.",
|
|
1541
|
+
"position.hook.liquidityWarning": "Cờ này có thể khiến pool chặn việc thêm thanh khoản mới. Giao dịch của bạn có thể bị hoàn tác.",
|
|
1542
|
+
"position.hook.removeWarning": "Có thể khiến quỹ của bạn bị khóa hoặc bạn không thu được phí.",
|
|
1543
|
+
"position.hook.swapWarning": "Thiết lập này có thể cho phép các nhà cung cấp thanh khoản dễ dàng sử dụng đòn bẩy với thanh khoản Kịp thời, nhưng lại làm giảm số phí kiếm được.",
|
|
1544
|
+
"position.hook.warningHeader": "Quan trọng: phát hiện rủi ro với hook",
|
|
1545
|
+
"position.hook.warningInfo": "Chúng tôi phát hiện hook này có rủi ro tiềm ẩn. Vui lòng đảm bảo rằng bạn hiểu cách hoạt động của hook này hoạt động trước khi quyết định tiếp tục.",
|
|
1546
|
+
"position.increase.fot": "Không hỗ trợ thêm thanh khoản cho {{token}} và các token có \"tính phí trên mỗi giao dịch\" khác.",
|
|
1547
|
+
"position.initialPrice": "Giá ban đầu",
|
|
1548
|
+
"position.initialPrice.difference.negative": "Thấp hơn {{ value }}% so với giá thị trường",
|
|
1549
|
+
"position.initialPrice.difference.positive": "Cao hơn {{ value }}% so với giá thị trường",
|
|
1550
|
+
"position.initialPrice.info": "Khi tạo một pool mới, bạn phải đặt tỷ giá hối đoái khởi điểm cho cả hai token. Tỷ giá này sẽ thể hiện giá thị trường ban đầu.",
|
|
1551
|
+
"position.initialPrice.set": "Đặt giá ban đầu",
|
|
1552
|
+
"position.initialPrice.useMarketPrice": "Dùng giá thị trường",
|
|
1553
|
+
"position.migrate.liquidity": "Khi di chuyển vị thế, bạn không thể thay đổi cặp token, nhưng có thể thêm hook để tăng cường chức năng.",
|
|
1554
|
+
"position.migrate.v4unsupportedChain": "Blockchain này không hỗ trợ các pool v4.",
|
|
1555
|
+
"position.new": "Vị thế mới",
|
|
1556
|
+
"position.new.protocol": "Vị thế {{protocol}} mới",
|
|
1557
|
+
"position.notFound": "Không tìm thấy vị thế",
|
|
1558
|
+
"position.notFound.description": "Không có thông tin chi tiết về vị thế này. Vui lòng kiểm tra xem bạn đã kết nối với đúng ví chưa.",
|
|
1559
|
+
"position.one_sided_lower": "Một phía thấp hơn",
|
|
1560
|
+
"position.one_sided_lower.description": "Cung cấp thanh khoản nếu giá giảm",
|
|
1561
|
+
"position.one_sided_upper": "Một phía cao hơn",
|
|
1562
|
+
"position.one_sided_upper.description": "Cung cấp thanh khoản nếu giá tăng",
|
|
1563
|
+
"position.protocol": "Vị thế {{protocol}}",
|
|
1564
|
+
"position.provide.liquidity": "Chọn token bạn muốn cung cấp thanh khoản. Bạn có thể chọn token trên tất cả các mạng được hỗ trợ.",
|
|
1565
|
+
"position.provide.liquidityDescription": "Việc cung cấp thanh khoản khoảng giá đầy đủ đảm bảo sự tham gia thị trường liên tục ở mọi mức giá có thể, mang lại sự đơn giản nhưng có khả năng gây ra tổn thất tạm thời cao hơn.",
|
|
1566
|
+
"position.provide.liquidityDescription.creatingPool": "Đặt thanh khoản mọi khoảng giá khi tạo một pool mới giúp đảm bảo sự tham gia liên tục của thị trường trên tất cả các mức giá có thể và giúp đơn giản hóa, tuy nhiên có thể dẫn đến tổn thất tạm thời cao hơn.",
|
|
1567
|
+
"position.provide.liquidityDescription.custom": "Khoảng giá tùy chỉnh cho phép bạn tập trung thanh khoản của mình trong các giới hạn giá cụ thể, giúp tăng hiệu quả sử dụng vốn và thu nhập từ phí, nhưng đòi hỏi phải tích cực quản lý hơn.",
|
|
1568
|
+
"position.provide.outOfRange.closePosition": "Đóng vị thế",
|
|
1569
|
+
"position.provide.outOfRange.description": "Không thể điều chỉnh khoảng giá của vị thế này trong khi di chuyển. Để đặt một khoảng giá mới, hãy đóng vị thế này và mở một vị thế v4 mới.",
|
|
1570
|
+
"position.provide.outOfRange.title": "Bang đang di chuyển một vị thế ngoài khoảng giá",
|
|
1571
|
+
"position.removeHook": "Xóa hook",
|
|
1572
|
+
"position.resetDescription": "Token, giá và lựa chọn khoảng giá của bạn sẽ được đặt lại.",
|
|
1573
|
+
"position.setRange": "Đặt khoảng giá",
|
|
1574
|
+
"position.setRange.inputsBelow": "Sử dụng các trường nhập liệu bên dưới để thiết lập khoảng giá của bạn.",
|
|
1575
|
+
"position.stable": "Ổn định",
|
|
1576
|
+
"position.stable.description": "Phù hợp với stablecoin hoặc các cặp ít biến động",
|
|
1577
|
+
"position.step.deposit": "Nhập số tiền nạp",
|
|
1578
|
+
"position.step.price": "Đặt giá ban đầu và số tiền nạp",
|
|
1579
|
+
"position.step.range": "Đặt khoảng giá và số tiền nạp",
|
|
1580
|
+
"position.step.select": "Chọn cặp token và phí",
|
|
1581
|
+
"position.value": "Giá trị vị thế",
|
|
1582
|
+
"position.valueUnavailable": "Hiện tại không có giá trị USD cho vị thế này. Xem chi tiết vị thế để biết số lượng token đã nạp.",
|
|
1583
|
+
"position.wide": "Toàn bộ",
|
|
1584
|
+
"position.wide.description": "Phù hợp với các cặp hay biến động",
|
|
1585
|
+
"position.wrapped.unwrap": "Hủy bao bọc {{wrappedToken}}",
|
|
1586
|
+
"position.wrapped.warning": "Cần {{nativeToken}} để dùng pool v4",
|
|
1587
|
+
"position.wrapped.warning.info": "Hủy bao bọc {{wrappedToken}} và nạp {{nativeToken}} để cung cấp thêm thanh khoản một cách hiệu quả và tiết kiệm chi phí.",
|
|
1588
|
+
"positions.noPositions.description": "Bạn không có vị thế thanh khoản nào. Tạo vị thế mới để bắt đầu nhận phí và phần thưởng từ các pool đủ điều kiện.",
|
|
1589
|
+
"positions.noPositions.title": "Không có vị thế nào",
|
|
1590
|
+
"positions.welcome.connect.description": "Bạn cần kết nối ví để xem các vị thế và phần thưởng của bạn.",
|
|
1591
|
+
"positions.welcome.connect.wallet": "Kết nối ví của bạn",
|
|
1592
|
+
"privacy.anonymizedLogs": "Ứng dụng ghi lại số liệu thống kê sử dụng ẩn danh để cải thiện theo thời gian.",
|
|
1593
|
+
"privacy.autoRouter": "Ứng dụng lấy lộ trình giao dịch tối ưu từ máy chủ Lux Labs.",
|
|
1594
|
+
"privacy.infura": "Ứng dụng lấy dữ liệu onchain và xây dựng lệnh gọi hợp đồng với API Infura.",
|
|
1595
|
+
"privacy.thirdPartyApis": "Ứng dụng này sử dụng các API bên thứ ba sau:",
|
|
1596
|
+
"privacy.trm": "Ứng dụng thu thập an toàn địa chỉ ví của bạn và chia sẻ với TRM Labs Inc. cho mục đích rủi ro và tuân thủ.",
|
|
1597
|
+
"privacy.luxtos": "Điều khoản dịch vụ của Lux Labs",
|
|
1598
|
+
"privateKeys.export.modal.speedbump.bullet1": "Xem thông tin này ở chế độ riêng tư",
|
|
1599
|
+
"privateKeys.export.modal.speedbump.bullet2": "Không chia sẻ với bất kỳ ai",
|
|
1600
|
+
"privateKeys.export.modal.speedbump.bullet3": "Đừng bao giờ nhập thông tin này lên bất kỳ trang web hay ứng dụng nào",
|
|
1601
|
+
"privateKeys.export.modal.speedbump.subtitle": "Bất kỳ ai biết khóa riêng tư của bạn sẽ có quyền truy cập vào ví và quỹ tài sản của bạn.",
|
|
1602
|
+
"privateKeys.export.modal.speedbump.title": "Trước khi bạn tiếp tục",
|
|
1603
|
+
"privateKeys.export.modal.subtitle": "Có vẻ như bạn không thể khôi phục hoàn toàn ví của mình. Để đảm bảo bạn không mất quyền truy cập vào quỹ tài sản, vui lòng sao chép khóa riêng tư của bạn.",
|
|
1604
|
+
"privateKeys.export.modal.title": "Xuất khóa riêng tư của bạn",
|
|
1605
|
+
"privateKeys.export.modal.warning": "Nếu bạn làm mất điện thoại hoặc xóa ứng dụng, bạn sẽ cần nhập khóa này vào một ví khác.",
|
|
1606
|
+
"privateKeys.view.button.continue": "Tôi đã sao chép toàn bộ.",
|
|
1607
|
+
"privateKeys.view.button.continue.single": "Tôi đã sao lưu.",
|
|
1608
|
+
"privateKeys.view.subtitle": "Khóa riêng tư của bạn cấp quyền truy cập vào một ví cụ thể. Mỗi ví có một khóa riêng tư khác nhau.",
|
|
1609
|
+
"privateKeys.view.title": "Khóa Riêng Tư",
|
|
1610
|
+
"qrScanner.button.connections_one": "1 ứng dụng được kết nối",
|
|
1611
|
+
"qrScanner.button.connections_other": "{{count}} ứng dụng được kết nối",
|
|
1612
|
+
"qrScanner.error.camera.message": "Để quét mã, hãy cho phép truy cập vào Máy ảnh trong mục cài đặt hệ thống",
|
|
1613
|
+
"qrScanner.error.camera.title": "Máy ảnh bị tắt",
|
|
1614
|
+
"qrScanner.error.none": "Không tìm thấy mã QR",
|
|
1615
|
+
"qrScanner.recipient.action.scan": "Quét mã QR",
|
|
1616
|
+
"qrScanner.recipient.action.show": "Hiện mã QR của tôi",
|
|
1617
|
+
"qrScanner.recipient.error.message": "Đảm bảo bạn đang quét mã QR địa chỉ Ethereum hợp lệ trước khi thử lại.",
|
|
1618
|
+
"qrScanner.recipient.error.title": "Mã QR không hợp lệ",
|
|
1619
|
+
"qrScanner.request.message.unavailable": "Không tìm thấy tin nhắn.",
|
|
1620
|
+
"qrScanner.request.method.default": "Yêu cầu từ {{dappNameOrUrl}}",
|
|
1621
|
+
"qrScanner.request.method.signature": "Yêu cầu chữ ký từ {{dappNameOrUrl}}",
|
|
1622
|
+
"qrScanner.request.method.transaction": "Yêu cầu giao dịch từ {{dappNameOrUrl}}",
|
|
1623
|
+
"qrScanner.request.withAmount": "Cho phép {{dappName}} sử dụng tối đa<highlight> {{amount}} </highlight>{{currencySymbol}}?",
|
|
1624
|
+
"qrScanner.request.withoutAmount": "Cho phép {{dappName}} sử dụng {{currencySymbol}} của bạn?",
|
|
1625
|
+
"qrScanner.status.connecting": "Đang kết nối...",
|
|
1626
|
+
"qrScanner.status.loading": "Đang tải...",
|
|
1627
|
+
"qrScanner.title": "Quét mã QR",
|
|
1628
|
+
"qrScanner.wallet.networks": "Các mạng được hỗ trợ",
|
|
1629
|
+
"range.outOfView": "Khoảng giá ngoài phạm vi hiển thị",
|
|
1630
|
+
"reporting.activity.confirm.subtitle": "Hoạt động đã báo cáo bị ẩn theo mặc định. Bạn có thể cập nhật điều này trong Cài đặt bất cứ lúc nào.",
|
|
1631
|
+
"reporting.activity.confirm.title": "Báo cáo giao dịch là spam",
|
|
1632
|
+
"reporting.activity.unhide.action": "Bỏ ẩn hoạt động",
|
|
1633
|
+
"reporting.pool.data.options.liquidity.subtitle": "Số dư pool không đúng hoặc không khả dụng",
|
|
1634
|
+
"reporting.pool.data.options.price.subtitle": "Tỷ giá quy đổi token không đúng hoặc không khả dụng",
|
|
1635
|
+
"reporting.pool.data.options.priceChart.subtitle": "Dữ liệu không đúng, không hoàn chỉnh hoặc không khả dụng",
|
|
1636
|
+
"reporting.pool.data.options.priceChart.title": "Biểu đồ pool",
|
|
1637
|
+
"reporting.pool.data.options.volume.subtitle": "Khối lượng pool không đúng hoặc không khả dụng",
|
|
1638
|
+
"reporting.pool.details.title": "Không nhận ra vị thế này?",
|
|
1639
|
+
"reporting.token.data.options.price.subtitle": "Giá token không đúng hoặc không khả dụng",
|
|
1640
|
+
"reporting.token.data.options.price.title": "Giá",
|
|
1641
|
+
"reporting.token.data.options.priceChart.subtitle": "Dữ liệu không đúng hoặc không hoàn chỉnh",
|
|
1642
|
+
"reporting.token.data.options.priceChart.title": "Biểu đồ giá",
|
|
1643
|
+
"reporting.token.data.options.tokenDetails.subtitle": "Hình ảnh, mô tả hoặc liên kết của token có vấn đề",
|
|
1644
|
+
"reporting.token.data.options.tokenDetails.title": "Chi tiết token",
|
|
1645
|
+
"reporting.token.data.options.volume.subtitle": "Khối lượng token không đúng hoặc không khả dụng",
|
|
1646
|
+
"reporting.token.data.options.volume.title": "Khối lượng",
|
|
1647
|
+
"reporting.token.data.title": "Vấn đề về dữ liệu",
|
|
1648
|
+
"reporting.token.data.title.withSymbol": "Báo cáo vấn đề về dữ liệu {{symbol}}",
|
|
1649
|
+
"reporting.token.options.hiddenFees.subtitle": "Token có khoản phí không được báo trước khi mua/bán",
|
|
1650
|
+
"reporting.token.options.hiddenFees.title": "Phí ẩn",
|
|
1651
|
+
"reporting.token.options.imposter.subtitle": "Token có vẻ như có tính chất gian dối hoặc gây hiểu lầm",
|
|
1652
|
+
"reporting.token.options.imposter.title": "Token mạo danh",
|
|
1653
|
+
"reporting.token.options.other.title": "Vấn đề khác",
|
|
1654
|
+
"reporting.token.options.spam.subtitle": "Token xuất hiện bất thường trong ví",
|
|
1655
|
+
"reporting.token.options.spam.title": "Token spam",
|
|
1656
|
+
"reporting.token.report.button.disabled": "Chọn một vấn đề",
|
|
1657
|
+
"reporting.token.report.other.placeholder": "Mô tả vấn đề",
|
|
1658
|
+
"reporting.token.report.title": "Báo cáo token",
|
|
1659
|
+
"reporting.token.report.title.withSymbol": "Báo cáo {{symbol}}",
|
|
1660
|
+
"reporting.token.warning.button": "Cảnh báo này không chính xác",
|
|
1661
|
+
"reporting.token.warning.report.placeholder": "Thêm chi tiết (không bắt buộc)",
|
|
1662
|
+
"reporting.token.warning.report.submit": "Báo cáo vấn đề",
|
|
1663
|
+
"reporting.token.warning.report.subtitle": "Hãy báo cáo vấn đề nếu cảnh báo bên dưới có vẻ không đúng. Chúng tôi sẽ xem xét kỹ hơn.",
|
|
1664
|
+
"reporting.token.warning.report.title": "Báo cáo cảnh báo không chính xác",
|
|
1665
|
+
"revoke.failed.message": "Thu hồi không thành công do lỗi mạng hoặc sự cố kết nối. Vui lòng kiểm tra kết nối và thử lại.",
|
|
1666
|
+
"routing.aggregateLiquidity.luxx": "DEX tổng hợp các nguồn thanh khoản onchain và offchain để đem tới mức giá tốt nhất và giao dịch hoán đổi không tốn gas.",
|
|
1667
|
+
"scantastic.code.expired": "Đã hết hạn",
|
|
1668
|
+
"scantastic.code.subtitle": "Nhập mã này vào Tiện ích mở rộng Lux. Cụm từ khôi phục của bạn sẽ được mã hóa an toàn và chuyển đi.",
|
|
1669
|
+
"scantastic.code.timeRemaining.shorthand.hours": "Mã mới sau {{hours}} giờ {{minutes}} phút {{seconds}} giây",
|
|
1670
|
+
"scantastic.code.timeRemaining.shorthand.minutes": "Mã mới sau {{minutes}} phút {{seconds}} giây",
|
|
1671
|
+
"scantastic.code.timeRemaining.shorthand.seconds": "Mã mới sau {{seconds}} giây",
|
|
1672
|
+
"scantastic.code.title": "Mã Lux một lần",
|
|
1673
|
+
"scantastic.confirmation.button.continue": "Có, tiếp tục",
|
|
1674
|
+
"scantastic.confirmation.label.browser": "Trình duyệt",
|
|
1675
|
+
"scantastic.confirmation.label.device": "Thiết bị",
|
|
1676
|
+
"scantastic.confirmation.subtitle": "Chỉ tiếp tục nếu bạn đang quét mã QR từ Tiện ích mở rộng Lux trên thiết bị đáng tin cậy.",
|
|
1677
|
+
"scantastic.confirmation.title": "Bạn đang cố gắng nhập ví?",
|
|
1678
|
+
"scantastic.confirmation.warning": "Cẩn thận với các trang web và ứng dụng giả mạo Lux. Nếu không ví của bạn có thể bị xâm phạm.",
|
|
1679
|
+
"scantastic.error.encryption": "Không thể chuẩn bị cụm từ hạt giống.",
|
|
1680
|
+
"scantastic.error.noCode": "Không nhận được OTP. Vui lòng thử lại.",
|
|
1681
|
+
"scantastic.error.timeout.message": "Quét lại mã QR trên Tiện ích mở rộng Lux để tiếp tục đồng bộ ví của bạn.",
|
|
1682
|
+
"scantastic.error.timeout.title": "Kết nối của bạn đã hết thời gian",
|
|
1683
|
+
"scantastic.modal.ipMismatch.description": "Để quét mã QR này, điện thoại của bạn phải được kết nối cùng mạng WiFi của máy tính và tất cả VPN nên được tắt tạm thời.",
|
|
1684
|
+
"scantastic.modal.ipMismatch.title": "Chuyển đổi mạng WiFi của bạn",
|
|
1685
|
+
"search.input.placeholder.withWallets": "Tìm kiếm token, pool và ví",
|
|
1686
|
+
"search.results.pretype.nfts": "Nhập tiêu đề cho bộ sưu tập",
|
|
1687
|
+
"search.results.pretype.wallets": "Nhập một địa chỉ hoặc tên người dùng",
|
|
1688
|
+
"search.ukDisclaimer": "Tuyên bố miễn trừ đối với cư dân UK",
|
|
1689
|
+
"send.button.review": "Xem lại chuyển",
|
|
1690
|
+
"send.gas.error.title": "Không áp dụng",
|
|
1691
|
+
"send.gas.networkCost.title": "Phí mạng",
|
|
1692
|
+
"send.input.token.balance.title": "Số dư: {{balance}} {{symbol}}",
|
|
1693
|
+
"send.recipient.header": "Chọn người nhận",
|
|
1694
|
+
"send.recipient.input.placeholder": "Nhập địa chỉ hoặc tên người dùng",
|
|
1695
|
+
"send.recipient.previous_one": "1 lần chuyển trước đây",
|
|
1696
|
+
"send.recipient.previous_other": "{{count}} lần chuyển trước đây",
|
|
1697
|
+
"send.recipient.results.empty": "Không tìm thấy kết quả",
|
|
1698
|
+
"send.recipient.results.error": "Địa chỉ bạn nhập không tồn tại hoặc bị viết sai chính tả.",
|
|
1699
|
+
"send.recipient.section.favorite": "Ví yêu thích",
|
|
1700
|
+
"send.recipient.section.recent": "Gần đây",
|
|
1701
|
+
"send.recipient.section.search": "Kết quả tìm kiếm",
|
|
1702
|
+
"send.recipient.section.viewOnly": "Ví chỉ xem",
|
|
1703
|
+
"send.recipient.section.yours": "Ví của bạn",
|
|
1704
|
+
"send.recipient.warning.viewOnly.message": "Chỉ gửi quỹ đến ví này nếu bạn có cụm từ khôi phục hoặc biết chủ sở hữu của ví.",
|
|
1705
|
+
"send.recipient.warning.viewOnly.title": "Bạn có ví này ở chế độ ví chỉ xem",
|
|
1706
|
+
"send.recipientSelect.search.empty": "Nhập địa chỉ ví hoặc tên người dùng",
|
|
1707
|
+
"send.review.modal.title": "Bạn đang gửi",
|
|
1708
|
+
"send.review.summary.button.title": "Xác nhận gửi",
|
|
1709
|
+
"send.search.empty.subtitle": "Địa chỉ bạn nhập không tồn tại hoặc bị viết sai chính tả.",
|
|
1710
|
+
"send.search.empty.title": "Không tìm thấy kết quả",
|
|
1711
|
+
"send.solanaSendNotSupported": "Gửi không được hỗ trợ trên Solana",
|
|
1712
|
+
"send.title": "Gửi",
|
|
1713
|
+
"send.unavailableOnSolana.message": "Gửi không khả dụng trên ví Solana",
|
|
1714
|
+
"send.warning.blocked.default": "Ví này đã bị chặn",
|
|
1715
|
+
"send.warning.blocked.modal.message": "Địa chỉ này bị chặn trên Lux Wallet vì liên quan đến một hoặc nhiều hoạt động bị chặn. Nếu bạn cho rằng đây là lỗi, vui lòng gửi email đến compliance@lux.exchange.",
|
|
1716
|
+
"send.warning.blocked.modal.title": "Địa chỉ bị chặn",
|
|
1717
|
+
"send.warning.blocked.recipient": "Ví người nhận bị chặn",
|
|
1718
|
+
"send.warning.erc20.checkbox.description": "Bạn đang cố gửi quỹ đến một địa chỉ token. Điều này có thể khiến bạn bị mất quỹ vĩnh viễn.",
|
|
1719
|
+
"send.warning.erc20.checkbox.heading": "Đã phát hiện địa chỉ token",
|
|
1720
|
+
"send.warning.erc20.message": "Bạn đang cố gắng gửi quỹ đến một địa chỉ token. Gửi crypto đến loại địa chỉ này có thể dẫn đến mất quỹ vĩnh viễn.",
|
|
1721
|
+
"send.warning.erc20.title": "Đây là địa chỉ token",
|
|
1722
|
+
"send.warning.insufficientFunds.message": "Số dư {{currencySymbol}} của bạn đã giảm kể từ khi bạn nhập số tiền muốn gửi",
|
|
1723
|
+
"send.warning.insufficientFunds.title": "Không đủ {{currencySymbol}}",
|
|
1724
|
+
"send.warning.insufficientGas.message.withNetwork": "Không đủ <highlight>{{currencySymbol}} trên {{networkName}}</highlight> để gửi",
|
|
1725
|
+
"send.warning.insufficientGas.message.withoutNetwork": "Không đủ <highlight>{{currencySymbol}}</highlight> để gửi",
|
|
1726
|
+
"send.warning.modal.button.cta.blocking": "OK",
|
|
1727
|
+
"send.warning.modal.button.cta.cancel": "Hủy",
|
|
1728
|
+
"send.warning.modal.button.cta.confirm": "Xác nhận",
|
|
1729
|
+
"send.warning.newAddress.details.ENS": "ENS",
|
|
1730
|
+
"send.warning.newAddress.details.username": "Tên người dùng",
|
|
1731
|
+
"send.warning.newAddress.details.walletAddress": "Địa chỉ ví",
|
|
1732
|
+
"send.warning.newAddress.message": "Bạn chưa từng giao dịch với địa chỉ này trước đây. Vui lòng xác nhận địa chỉ là chính xác trước khi tiếp tục.",
|
|
1733
|
+
"send.warning.newAddress.title": "Địa chỉ mới",
|
|
1734
|
+
"send.warning.self.message": "Bạn đang cố gắng gửi quỹ đến ví hiện tại của mình. Gửi crypto đến địa chỉ này sẽ phát sinh phí mạng không cần thiết.",
|
|
1735
|
+
"send.warning.self.title": "Đây là ví hiện tại của bạn",
|
|
1736
|
+
"send.warning.smartContract.message": "Bạn đang gửi quỹ đến địa chỉ hợp đồng thông minh. Hãy đảm bảo đây là địa chỉ đúng và có thể nhận được token. Nếu không, có thể bạn sẽ bị mất tiền quỹ vĩnh viễn.",
|
|
1737
|
+
"send.warning.smartContract.title": "Đây là địa chỉ hợp đồng thông minh",
|
|
1738
|
+
"send.warning.viewOnly.message": "Bạn cần nhập ví này qua cụm từ khôi phục để gửi tài sản.",
|
|
1739
|
+
"send.warning.viewOnly.title": "Ví này ở chế độ chỉ xem",
|
|
1740
|
+
"send.youAreSending": "Bạn đang gửi",
|
|
1741
|
+
"sendRecipientForm.recentAddresses.label": "Gần đây",
|
|
1742
|
+
"sendReviewModal.title": "Xem lại gửi",
|
|
1743
|
+
"setting.recoveryPhrase.account.show": "Hiện cụm từ khôi phục",
|
|
1744
|
+
"setting.recoveryPhrase.action.hide": "Ẩn cụm từ khôi phục",
|
|
1745
|
+
"setting.recoveryPhrase.remove": "Xóa cụm từ khôi phục",
|
|
1746
|
+
"setting.recoveryPhrase.remove.confirm.subtitle": "Tôi hiểu rằng Lux Labs không thể giúp tôi khôi phục ví nếu tôi không làm điều đó.",
|
|
1747
|
+
"setting.recoveryPhrase.remove.confirm.title": "Tôi đã lưu cụm từ khôi phục",
|
|
1748
|
+
"setting.recoveryPhrase.remove.initial.subtitle": "Hãy đảm bảo rằng bạn đã lưu cụm từ khôi phục. Nếu không bạn sẽ mất quyền truy cập vào các ví của mình",
|
|
1749
|
+
"setting.recoveryPhrase.remove.initial.title": "Trước khi tiếp tục",
|
|
1750
|
+
"setting.recoveryPhrase.remove.subtitle": "Nhập mật khẩu để xác nhận",
|
|
1751
|
+
"setting.recoveryPhrase.remove.title": "Bạn đang xóa cụm từ khôi phục của mình",
|
|
1752
|
+
"setting.recoveryPhrase.view.warning.message1": "Bất kỳ ai biết cụm từ khôi phục đều có thể truy cập vào ví và quỹ của bạn",
|
|
1753
|
+
"setting.recoveryPhrase.view.warning.message2": "Xem ở nơi riêng tư",
|
|
1754
|
+
"setting.recoveryPhrase.view.warning.message3": "Không chia sẻ với bất kỳ ai",
|
|
1755
|
+
"setting.recoveryPhrase.view.warning.message4": "Không bao giờ nhập cụm từ này trên bất kỳ trang web hoặc ứng dụng nào",
|
|
1756
|
+
"setting.recoveryPhrase.view.warning.title": "Trước khi tiếp tục",
|
|
1757
|
+
"setting.recoveryPhrase.warning.view.message": "Bất kỳ ai biết cụm từ khôi phục đều có thể truy cập vào ví và quỹ của bạn.",
|
|
1758
|
+
"setting.recoveryPhrase.warning.view.title": "Xem tại nơi riêng tư",
|
|
1759
|
+
"settings.action.enableInSettings": "Bật cài đặt này",
|
|
1760
|
+
"settings.action.feedback": "Gửi phản hồi",
|
|
1761
|
+
"settings.action.help": "Nhận trợ giúp",
|
|
1762
|
+
"settings.action.lock": "Khóa ví",
|
|
1763
|
+
"settings.action.privacy": "Chính sách về quyền riêng tư",
|
|
1764
|
+
"settings.action.terms": "Điều khoản dịch vụ",
|
|
1765
|
+
"settings.footer": "Được tạo ra bằng tình yêu, \nĐội ngũ Lux 🦄",
|
|
1766
|
+
"settings.hideSmallBalances": "Ẩn số dư nhỏ",
|
|
1767
|
+
"settings.hideSmallBalances.subtitle": "Các số dư dưới 1 USD sẽ bị ẩn khỏi danh mục đầu tư của bạn.",
|
|
1768
|
+
"settings.maxSlippage": "Trượt giá tối đa",
|
|
1769
|
+
"settings.maxSlippage.amount": "Trượt giá tối đa {{amount}}",
|
|
1770
|
+
"settings.section.about": "Giới thiệu",
|
|
1771
|
+
"settings.section.preferences": "Tùy chọn",
|
|
1772
|
+
"settings.section.privacyAndSecurity": "Quyền riêng tư và bảo mật",
|
|
1773
|
+
"settings.section.support": "Hỗ trợ",
|
|
1774
|
+
"settings.section.wallet.hidden.row.title": "{{numHidden}} ví khác",
|
|
1775
|
+
"settings.setting.advanced.title": "Nâng cao",
|
|
1776
|
+
"settings.setting.advancedSettings": "Cài đặt nâng cao",
|
|
1777
|
+
"settings.setting.appearance.option.auto": "Tự động",
|
|
1778
|
+
"settings.setting.appearance.option.dark.subtitle": "Luôn dùng chủ đề tối.",
|
|
1779
|
+
"settings.setting.appearance.option.dark.title": "Tối",
|
|
1780
|
+
"settings.setting.appearance.option.device.subtitle": "Phù hợp với cài đặt thiết bị của bạn.",
|
|
1781
|
+
"settings.setting.appearance.option.device.title": "Tự động",
|
|
1782
|
+
"settings.setting.appearance.option.light.subtitle": "Luôn dùng chủ đề sáng.",
|
|
1783
|
+
"settings.setting.appearance.option.light.title": "Sáng",
|
|
1784
|
+
"settings.setting.appearance.title": "Chủ đề",
|
|
1785
|
+
"settings.setting.backup.create.description": "Đặt mật khẩu sẽ mã hóa bản sao lưu cụm từ khôi phục, thêm một tầng bảo vệ nếu tài khoản {{cloudProviderName}} của bạn bị xâm phạm.",
|
|
1786
|
+
"settings.setting.backup.create.title": "Sao lưu vào {{cloudProviderName}}",
|
|
1787
|
+
"settings.setting.backup.delete.confirm.message": "Vì các ví này dùng chung một cụm từ khôi phục, việc này cũng sẽ xóa bản sao lưu cho các ví dưới đây",
|
|
1788
|
+
"settings.setting.backup.delete.confirm.title": "Bạn có chắc chắn không?",
|
|
1789
|
+
"settings.setting.backup.delete.warning": "Nếu bạn xóa bản sao lưu trên {{cloudProviderName}}, bạn chỉ có thể khôi phục ví bằng cách thức sao lưu cụm từ khôi phục thủ công. Lux Labs không thể khôi phục tài sản nếu bạn mất cụm từ khôi phục.",
|
|
1790
|
+
"settings.setting.backup.error.message.full": "Không thể sao lưu cụm từ khôi phục vào {{cloudProviderName}}. Vui lòng đảm bảo bạn đã bật {{cloudProviderName}} và có đủ dung lượng trống rồi thử lại.",
|
|
1791
|
+
"settings.setting.backup.error.message.short": "Không thể xóa bản sao lưu",
|
|
1792
|
+
"settings.setting.backup.error.title": "Lỗi {{cloudProviderName}}",
|
|
1793
|
+
"settings.setting.backup.modal.description": "Bạn chưa sao lưu cụm từ khôi phục vào {{cloudProviderName}}. Bằng cách này, bạn có thể khôi phục ví chỉ bằng cách đăng nhập vào {{cloudProviderName}} trên bất kỳ thiết bị nào.",
|
|
1794
|
+
"settings.setting.backup.modal.title": "Sao lưu cụm từ khôi phục vào {{cloudProviderName}}?",
|
|
1795
|
+
"settings.setting.backup.password.error.mismatch": "Mật khẩu không khớp",
|
|
1796
|
+
"settings.setting.backup.password.medium": "Đây là mật khẩu trung bình",
|
|
1797
|
+
"settings.setting.backup.password.placeholder.confirm": "Xác nhận mật khẩu",
|
|
1798
|
+
"settings.setting.backup.password.placeholder.create": "Tạo mật khẩu",
|
|
1799
|
+
"settings.setting.backup.password.strong": "Đây là mật khẩu mạnh",
|
|
1800
|
+
"settings.setting.backup.password.weak": "Đây là mật khẩu yếu",
|
|
1801
|
+
"settings.setting.backup.recoveryPhrase.label": "Cụm từ khôi phục",
|
|
1802
|
+
"settings.setting.backup.selected": "Sao lưu trên {{cloudProviderName}}",
|
|
1803
|
+
"settings.setting.backup.status.action.delete": "Xóa bản sao lưu",
|
|
1804
|
+
"settings.setting.backup.status.complete": "Đã sao lưu vào {{cloudProviderName}}",
|
|
1805
|
+
"settings.setting.backup.status.description": "Khi cụm từ khôi phục được sao lưu vào {{cloudProviderName}}, bạn có thể khôi phục ví chỉ bằng cách đăng nhập vào tài khoản {{cloudProviderName}} trên bất kỳ thiết bị nào.",
|
|
1806
|
+
"settings.setting.backup.status.inProgress": "Đang sao lưu vào {{cloudProviderName}}...",
|
|
1807
|
+
"settings.setting.backup.status.recoveryPhrase.backed": "Đã sao lưu",
|
|
1808
|
+
"settings.setting.backup.status.title": "Sao lưu trên {{cloudProviderName}}",
|
|
1809
|
+
"settings.setting.balancesActivity.title": "Số dư và hoạt động",
|
|
1810
|
+
"settings.setting.beta.tooltip": "Sắp ra mắt",
|
|
1811
|
+
"settings.setting.biometrics.appAccess.subtitle.android": "Yêu cầu khuôn mặt/vân tay để mở ứng dụng.",
|
|
1812
|
+
"settings.setting.biometrics.appAccess.subtitle.ios": "Yêu cầu {{biometricsMethod}} để mở ứng dụng.",
|
|
1813
|
+
"settings.setting.biometrics.appAccess.title": "Truy cập ứng dụng",
|
|
1814
|
+
"settings.setting.biometrics.auth": "Vui lòng xác thực",
|
|
1815
|
+
"settings.setting.biometrics.extension.waitingForBiometricsModal.content": "Bật {{biometricsMethod}} trong trình duyệt hoặc cài đặt hệ thống để tiếp tục.",
|
|
1816
|
+
"settings.setting.biometrics.extension.waitingForBiometricsModal.title": "Chờ {{biometricsMethod}}",
|
|
1817
|
+
"settings.setting.biometrics.off.message.android": "Sinh trắc học hiện đang tắt cho Lux Wallet—bạn có thể bật trong mục cài đặt hệ thống.",
|
|
1818
|
+
"settings.setting.biometrics.off.message.ios": "{{biometricsMethod}} hiện đang tắt cho Lux Wallet—bạn có thể bật trong mục cài đặt hệ thống.",
|
|
1819
|
+
"settings.setting.biometrics.off.title.android": "Sinh trắc học đã tắt",
|
|
1820
|
+
"settings.setting.biometrics.off.title.ios": "{{biometricsMethod}} đã tắt",
|
|
1821
|
+
"settings.setting.biometrics.title": "Mở khóa bằng Khuôn mặt/Vân tay",
|
|
1822
|
+
"settings.setting.biometrics.transactions.subtitle.android": "Yêu cầu khuôn mặt/vân tay để giao dịch.",
|
|
1823
|
+
"settings.setting.biometrics.transactions.subtitle.ios": "Yêu cầu {{biometricsMethod}} để giao dịch.",
|
|
1824
|
+
"settings.setting.biometrics.transactions.title": "Giao dịch",
|
|
1825
|
+
"settings.setting.biometrics.unavailable.message.android": "Sinh trắc học chưa được thiết lập trên thiết bị của bạn. Để sử dụng sinh trắc học, hãy thiết lập trước trong mục Cài đặt.",
|
|
1826
|
+
"settings.setting.biometrics.unavailable.message.ios": "{{biometricsMethod}} chưa được thiết lập trên thiết bị của bạn. Để sử dụng {{biometricsMethod}}, hãy thiết lập trước trong mục Cài đặt.",
|
|
1827
|
+
"settings.setting.biometrics.unavailable.title.android": "Sinh trắc học chưa được thiết lập",
|
|
1828
|
+
"settings.setting.biometrics.unavailable.title.ios": "{{biometricsMethod}} chưa được thiết lập",
|
|
1829
|
+
"settings.setting.biometrics.warning.message.android": "Nếu không bật sinh trắc học, bất kỳ ai truy cập được vào thiết bị của bạn đều có thể mở Lux Wallet và thực hiện giao dịch.",
|
|
1830
|
+
"settings.setting.biometrics.warning.message.ios": "Nếu không bật {{biometricsMethod}}, bất kỳ ai truy cập được vào thiết bị của bạn đều có thể mở Lux Wallet và thực hiện giao dịch.",
|
|
1831
|
+
"settings.setting.biometrics.warning.title": "Bạn có chắc chắn không?",
|
|
1832
|
+
"settings.setting.connections.disconnectAll": "Ngắt kết nối tất cả",
|
|
1833
|
+
"settings.setting.connections.noConnectionsDescription": "Kết nối với ứng dụng bằng cách tìm nút \"Kết nối Ví\" hoặc \"Đăng nhập\".",
|
|
1834
|
+
"settings.setting.currency.title": "Loại tiền nội địa",
|
|
1835
|
+
"settings.setting.deviceAccess.reset.title": "Đặt lại {{biometricsMethod}} của bạn",
|
|
1836
|
+
"settings.setting.deviceAccess.title": "Quyền truy cập vào thiết bị",
|
|
1837
|
+
"settings.setting.deviceAccessTimeout.1hour": "1 giờ",
|
|
1838
|
+
"settings.setting.deviceAccessTimeout.24hours": "24 giờ",
|
|
1839
|
+
"settings.setting.deviceAccessTimeout.30minutes": "30 phút",
|
|
1840
|
+
"settings.setting.deviceAccessTimeout.5minutes": "5 phút",
|
|
1841
|
+
"settings.setting.deviceAccessTimeout.never": "Không bao giờ",
|
|
1842
|
+
"settings.setting.deviceAccessTimeout.title": "Thời gian tự động khóa",
|
|
1843
|
+
"settings.setting.hapticTouch.title": "Phản hồi xúc giác",
|
|
1844
|
+
"settings.setting.helpCenter.title": "Trung tâm trợ giúp",
|
|
1845
|
+
"settings.setting.language.button.navigate": "Đi tới mục cài đặt",
|
|
1846
|
+
"settings.setting.language.description.extension": "Lux điều chỉnh mặc định theo cài đặt ngôn ngữ hệ thống của bạn. Để thay đổi ngôn ngữ ưa thích, hãy vào mục cài đặt hệ thống.",
|
|
1847
|
+
"settings.setting.language.description.mobile": "Lux mặc định theo cài đặt ngôn ngữ trên thiết bị của bạn. Để thay đổi ngôn ngữ ưa thích, hãy vào “Lux” trong phần cài đặt thiết bị và nhấn vào “Ngôn ngữ”.",
|
|
1848
|
+
"settings.setting.language.title": "Ngôn ngữ",
|
|
1849
|
+
"settings.setting.notifications.row.activity.description": "Chuyển, yêu cầu và các hoạt động khác",
|
|
1850
|
+
"settings.setting.notifications.row.activity.title": "Hoạt động của ví",
|
|
1851
|
+
"settings.setting.notifications.row.updates.description": "Đề xuất và tính năng mới",
|
|
1852
|
+
"settings.setting.notifications.row.updates.title": "Cập nhật từ Lux",
|
|
1853
|
+
"settings.setting.notifications.title": "Thông báo",
|
|
1854
|
+
"settings.setting.password.change.title": "Tạo mật khẩu mới",
|
|
1855
|
+
"settings.setting.password.title": "Đổi mật khẩu",
|
|
1856
|
+
"settings.setting.permissions.title": "Cấp quyền",
|
|
1857
|
+
"settings.setting.privacy.analytics.description": "Chúng tôi sử dụng dữ liệu sử dụng ẩn danh để cải thiện trải nghiệm của bạn với các sản phẩm của Lux Labs. Khi tắt, chúng tôi chỉ theo dõi lỗi và việc sử dụng thiết yếu.",
|
|
1858
|
+
"settings.setting.privacy.analytics.title": "Thống kê ứng dụng",
|
|
1859
|
+
"settings.setting.privateKeys.title": "Khóa riêng tư",
|
|
1860
|
+
"settings.setting.recoveryPhrase.title": "Cụm từ khôi phục",
|
|
1861
|
+
"settings.setting.reportedActivity.subtitle": "Các giao dịch bạn báo cáo là spam sẽ bị ẩn khỏi bảng tin hoạt động của bạn.",
|
|
1862
|
+
"settings.setting.reportedActivity.title": "Ẩn hoạt động đã báo cáo",
|
|
1863
|
+
"settings.setting.smartWallet.action.smartWallet": "Ví thông minh",
|
|
1864
|
+
"settings.setting.smartWallet.status.actionRequired": "Cần hành động",
|
|
1865
|
+
"settings.setting.smartWallet.status.active": "Đang hoạt động",
|
|
1866
|
+
"settings.setting.smartWallet.status.inactive": "Không hoạt động",
|
|
1867
|
+
"settings.setting.smartWallet.status.label": "Smart wallet status",
|
|
1868
|
+
"settings.setting.smartWallet.status.unavailable": "Không khả dụng",
|
|
1869
|
+
"settings.setting.storage.clearAccountHistory.subtitle": "Lịch sử giao dịch, số dư token, tìm kiếm gần đây và thông báo đang chờ xử lý",
|
|
1870
|
+
"settings.setting.storage.clearAccountHistory.title": "Xóa lịch sử tài khoản",
|
|
1871
|
+
"settings.setting.storage.clearAllData.title": "Xóa tất cả dữ liệu",
|
|
1872
|
+
"settings.setting.storage.clearCachedData.subtitle": "Dữ liệu tạm thời, chẳng hạn như giá token",
|
|
1873
|
+
"settings.setting.storage.clearCachedData.title": "Xóa bộ nhớ đệm",
|
|
1874
|
+
"settings.setting.storage.clearUserSettings.subtitle": "Mục yêu thích, cài đặt hoán đổi, cảnh báo token, ngôn ngữ và loại tiền",
|
|
1875
|
+
"settings.setting.storage.clearUserSettings.title": "Xóa tùy chọn",
|
|
1876
|
+
"settings.setting.storage.confirm.approve": "Xóa dữ liệu",
|
|
1877
|
+
"settings.setting.storage.confirm.caption": "Bạn có chắc chắn muốn xóa dữ liệu này không? Dữ liệu quan trọng (như cụm từ khôi phục của bạn) sẽ không bị xóa.",
|
|
1878
|
+
"settings.setting.storage.error": "Không thể xóa dữ liệu. Vui lòng thử lại.",
|
|
1879
|
+
"settings.setting.storage.help.description": "Các tùy chọn này sẽ xóa dữ liệu không cần thiết và khôi phục cài đặt mặc định. Cụm từ khôi phục ví của bạn sẽ không bị xóa.",
|
|
1880
|
+
"settings.setting.storage.help.title": "Xóa dữ liệu ứng dụng",
|
|
1881
|
+
"settings.setting.storage.success": "Đã xóa dữ liệu",
|
|
1882
|
+
"settings.setting.storage.title": "Dữ liệu ứng dụng",
|
|
1883
|
+
"settings.setting.unknownTokens.subtitle": "Các token có khả năng lừa đảo sẽ bị ẩn khỏi danh mục đầu tư của bạn.",
|
|
1884
|
+
"settings.setting.unknownTokens.title": "Ẩn token không xác định",
|
|
1885
|
+
"settings.setting.wallet.action.editLabel": "Chỉnh sửa nhãn",
|
|
1886
|
+
"settings.setting.wallet.action.editProfile": "Chỉnh sửa hồ sơ",
|
|
1887
|
+
"settings.setting.wallet.action.remove": "Xóa ví",
|
|
1888
|
+
"settings.setting.wallet.connections.title": "Kết nối",
|
|
1889
|
+
"settings.setting.wallet.editLabel.description": "Nhãn không công khai. Chúng được lưu cục bộ và chỉ hiển thị với bạn.",
|
|
1890
|
+
"settings.setting.wallet.editLabel.save": "Lưu thay đổi",
|
|
1891
|
+
"settings.setting.wallet.label": "Biệt danh",
|
|
1892
|
+
"settings.setting.wallet.testnetMode.description": "Thao tác này bật các mạng thử nghiệm để các nhà phát triển thử nghiệm các tính năng và giao dịch mà không cần sử dụng tài sản thực. Token trên mạng thử nghiệm không có bất kỳ giá trị thực nào.",
|
|
1893
|
+
"settings.setting.wallet.testnetMode.title": "Chế độ mạng thử nghiệm",
|
|
1894
|
+
"settings.switchNetwork.warning": "Để sử dụng Lux trên {{label}}, hãy chuyển mạng trong cài đặt ví của bạn.",
|
|
1895
|
+
"settings.title": "Cài đặt",
|
|
1896
|
+
"settings.version": "Phiên bản {{appVersion}}",
|
|
1897
|
+
"smartWallet.actionRequired.cta": "Tắt trên 1 mạng",
|
|
1898
|
+
"smartWallet.actionRequired.cta.plural": "Tắt trên {{amount}} mạng",
|
|
1899
|
+
"smartWallet.actionRequired.description": "Tắt ví thông minh là hành động onchain nên tốn một khoản phí mạng nhỏ.",
|
|
1900
|
+
"smartWallet.actionRequired.insufficientFunds": "Không đủ quỹ",
|
|
1901
|
+
"smartWallet.actionRequired.reactivate": "Tiếp tục sử dụng ví thông minh",
|
|
1902
|
+
"smartWallet.actionRequired.title": "Ví thông minh đang bật trên 1 mạng",
|
|
1903
|
+
"smartWallet.actionRequired.title.plural": "Ví thông minh đang bật trên {{amount}} mạng",
|
|
1904
|
+
"smartWallet.activeNetworks.title": "Ví thông minh đang bật trên 1 mạng",
|
|
1905
|
+
"smartWallet.activeNetworks.title.plural": "Ví thông minh đang bật trên {{amount}} mạng",
|
|
1906
|
+
"smartWallet.banner.networkCost": "Bao gồm phí chỉ trả một lần để kích hoạt ví thông minh trên {{chainName}}.",
|
|
1907
|
+
"smartWallet.banner.text": "<highlight>Kích hoạt ví thông minh</highlight> để tiết kiệm tới 50% phí mạng.",
|
|
1908
|
+
"smartWallet.confirmDisableSmartWallet.description": "Bạn sẽ bỏ lỡ cơ hội hoán đổi nhanh hơn, phí mạng chiết khấu và các cải thiện khác trong thời gian tới.",
|
|
1909
|
+
"smartWallet.confirmDisableSmartWallet.title": "Bạn chắc chứ?",
|
|
1910
|
+
"smartWallet.insufficient.description": "Bạn không thể tắt ví thông minh trên những mạng này khi không có đủ quỹ để trả phí mạng.",
|
|
1911
|
+
"smartWallet.insufficient.title": "Không đủ quỹ trên 1 mạng",
|
|
1912
|
+
"smartWallet.insufficient.title.plural": "Không đủ quỹ trên {{amount}} mạng",
|
|
1913
|
+
"smartWallet.InsufficientFunds.button.continue.text": "Vẫn tiếp tục",
|
|
1914
|
+
"smartWallet.insufficientFunds.network.banner.description": "Không thể tắt do không đủ quỹ.",
|
|
1915
|
+
"smartWallet.insufficientFunds.network.banner.title_one": "Loại trừ {{count}} mạng",
|
|
1916
|
+
"smartWallet.insufficientFunds.network.banner.title_other": "Đã loại trừ {{count}} mạng",
|
|
1917
|
+
"smartWallet.insufficientFunds.network.disable.text": "Đã sẵn sàng tắt",
|
|
1918
|
+
"smartWallet.insufficientFunds.network.text": "Bạn cần {{nativeCurrency}}",
|
|
1919
|
+
"smartWallet.insufficientFunds.single.network.banner.title": "Loại trừ {{chain}}",
|
|
1920
|
+
"smartWallet.modal.description.block1": "Ví thông minh giúp bạn giao dịch nhanh hơn với phí thấp hơn bằng hợp đồng thông minh.",
|
|
1921
|
+
"smartWallet.modal.description.block2": "Các ví đã sử dụng tính năng ví thông minh từ ứng dụng khác sẽ không bị ảnh hưởng.",
|
|
1922
|
+
"smartWallet.modal.title": "Ví Thông Minh",
|
|
1923
|
+
"smartWalletDisclaimer": "",
|
|
1924
|
+
"smartWallets": "Ví thông minh",
|
|
1925
|
+
"smartWallets.activeNetworks.description": "Mỗi lần bạn hoán đổi trên một mạng mới, ví thông minh của bạn sẽ tự động kích hoạt trên mạng đó.",
|
|
1926
|
+
"smartWallets.createdModal.description": "Bạn đang giao dịch nhanh hơn với phí mạng thấp hơn cho mỗi lệnh hoán đổi.",
|
|
1927
|
+
"smartWallets.createdModal.title": "Đã tạo ví thông minh",
|
|
1928
|
+
"smartWallets.delegation.limitedSupport": "Ví của bạn bị hạn chế hỗ trợ",
|
|
1929
|
+
"smartWallets.delegationMismatchModal.description": "{{walletName}} không hỗ trợ tiêu chuẩn Ethereum mới nhất mà {{displayName}} sử dụng nên một số tính năng không khả dụng.",
|
|
1930
|
+
"smartWallets.delegationMismatchModal.features.1ClickSwaps": "Hoán đổi với 1 lần nhấp",
|
|
1931
|
+
"smartWallets.delegationMismatchModal.features.gasFreeSwaps": "Hoán đổi không mất phí gas",
|
|
1932
|
+
"smartWallets.delegationMismatchModal.features.limitOrders": "Lệnh giới hạn",
|
|
1933
|
+
"smartWallets.delegationMismatchModal.limitOrders.unsupported": "Ví của bạn không hỗ trợ lệnh giới hạn.",
|
|
1934
|
+
"smartWallets.delegationMismatchModal.title": "Ví hỗ trợ bị hạn chế",
|
|
1935
|
+
"smartWallets.disable.failed": "Đã xảy ra lỗi. Ví thông minh vẫn đang bật trên 1 hoặc nhiều mạng. Vui lòng thử lại.",
|
|
1936
|
+
"smartWallets.disable.modal.description": "Hành động onchain này tốn phí mạng.",
|
|
1937
|
+
"smartWallets.disable.modal.title": "Tắt ví thông minh",
|
|
1938
|
+
"smartWallets.educationalModal.description": "Ví thông minh giúp bạn giao dịch nhanh hơn với chi phí thấp bằng hợp đồng thông minh.",
|
|
1939
|
+
"smartWallets.educationalModal.info": "Các ví đang sử dụng tính năng ví thông minh ở một ứng dụng khác sẽ không bị ảnh hưởng.",
|
|
1940
|
+
"smartWallets.enabledModal.description": "Cập nhật sẽ có hiệu lực vào lần hoán đổi tiếp theo.",
|
|
1941
|
+
"smartWallets.enabledModal.description.dapp": "Cập nhật sẽ có hiệu lực cho giao dịch tiếp theo.",
|
|
1942
|
+
"smartWallets.enabledModal.description.dapp.line2": "Kết nối lại với ví của bạn để sử dụng ngay tính năng ví thông minh trên các ứng dụng.",
|
|
1943
|
+
"smartWallets.enabledModal.title": "Đã bật ví thông minh",
|
|
1944
|
+
"smartWallets.postSwapNudge.enable": "Bật ví thông minh",
|
|
1945
|
+
"smartWallets.postSwapNudge.title": "Lưu cho lần hoán đổi tiếp theo",
|
|
1946
|
+
"smartWallets.postSwapNudge.title.dapp": "Ứng dụng này hỗ trợ ví thông minh",
|
|
1947
|
+
"smartWallets.unavailableModal.description": "Một nhà cung cấp ví khác đang quản lý cài đặt ví thông minh của {{displayName}}. Bạn có thể tiếp tục sử dụng Lux như bình thường.",
|
|
1948
|
+
"smartWallets.unavailableModal.title": "Tính năng ví thông minh không khả dụng",
|
|
1949
|
+
"solanaPromo.banner.description": "Giao dịch token Solana trực tiếp trên Lux Web App.",
|
|
1950
|
+
"solanaPromo.banner.title": "Solana hiện đã được hỗ trợ",
|
|
1951
|
+
"solanaPromo.modal.connectWallet": "Kết nối với ví Solana yêu thích của bạn",
|
|
1952
|
+
"solanaPromo.modal.startSwapping.button": "Bắt đầu hoán đổi trên Solana",
|
|
1953
|
+
"solanaPromo.modal.swapInstantly": "Hoán đổi tức thì hàng nghìn token thịnh hành",
|
|
1954
|
+
"solanaPromo.modal.viewTokenData": "Xem dữ liệu và giá token ở cùng một nơi",
|
|
1955
|
+
"speedBump.newAddress.warning.description": "Bạn chưa từng giao dịch với địa chỉ này trước đây. Đảm bảo đây là địa chỉ đúng trước khi tiếp tục.",
|
|
1956
|
+
"speedBump.newAddress.warning.title": "Địa chỉ mới",
|
|
1957
|
+
"speedBump.smartContractAddress.warning.description": "Bạn sắp gửi mã thông báo đến một loại địa chỉ đặc biệt - hợp đồng thông minh. Hãy kiểm tra kỹ xem đó có phải là địa chỉ bạn định gửi đến không. Nếu sai, token của bạn có thể bị mất vĩnh viễn.",
|
|
1958
|
+
"speedBump.smartContractAddress.warning.title": "Đây có phải là địa chỉ ví?",
|
|
1959
|
+
"stats.24fees": "Phí trong 24 giờ",
|
|
1960
|
+
"stats.24swapVolume": "Khối lượng hoán đổi 24H",
|
|
1961
|
+
"stats.24volume": "Khối lượng trong 24 giờ",
|
|
1962
|
+
"stats.allTimeSwappers": "Người hoán đổi toàn thời gian",
|
|
1963
|
+
"stats.allTimeVolume": "Khối lượng toàn thời gian",
|
|
1964
|
+
"stats.fdv": "FDV",
|
|
1965
|
+
"stats.fdv.description": "Định giá pha loãng hoàn toàn (FDV) tính tổng giá trị thị trường với giả định tất cả các token đang được lưu hành.",
|
|
1966
|
+
"stats.marketCap": "Vốn hóa thị trường",
|
|
1967
|
+
"stats.marketCap.description": "Vốn hóa thị trường là tổng giá trị thị trường của nguồn cung tài sản đang lưu hành.",
|
|
1968
|
+
"stats.noStatsAvailable": "Không có số liệu",
|
|
1969
|
+
"stats.tvl": "Tổng giá trị bị khóa",
|
|
1970
|
+
"stats.tvl.description": "Tổng giá trị bị khóa (TVL) là tổng số tài sản có sẵn trên mọi pool thanh khoản của Lux.",
|
|
1971
|
+
"stats.volume.1d": "Khối lượng trong 1 ngày",
|
|
1972
|
+
"stats.volume.1d.description": "Khối lượng 1 ngày là số lượng tài sản được giao dịch trên Lux trong 24 giờ qua.",
|
|
1973
|
+
"stats.volume.1d.long": "Khối lượng 1 ngày",
|
|
1974
|
+
"stats.volume.1d.short": "Khối lượng trong 1 ngày",
|
|
1975
|
+
"stats.volume.description": "Khối lượng là số lượng tài sản đã được mua bán trên Lux hoặc trong hệ sinh thái Solana trong khung thời gian đã chọn.",
|
|
1976
|
+
"swap.allow.oneTime": "Cho phép {{sym}} (một lần)",
|
|
1977
|
+
"swap.approveAndSubmit": "Phê duyệt và gửi",
|
|
1978
|
+
"swap.approveAndSwap": "Phê duyệt và hoán đổi",
|
|
1979
|
+
"swap.balance.amount": "Số dư: {{amount}}",
|
|
1980
|
+
"swap.bestPrice.through": "Định tuyến qua {{provider}}",
|
|
1981
|
+
"swap.bestRoute.cost": "Tuyến hiệu quả nhất dự kiến tiêu hao khoảng {{gasPrice}} phí mạng. ",
|
|
1982
|
+
"swap.bridging.title": "Hoán đổi trên các mạng",
|
|
1983
|
+
"swap.bridging.warning.description": "Bạn đang hoán đổi từ {{fromNetwork}} sang {{toNetwork}}. Điều này còn được gọi là \"kết nối cầu\", tức là di chuyển token của bạn từ mạng này sang mạng khác.",
|
|
1984
|
+
"swap.button.confirmSignAndSwap": "Xác nhận chữ ký và hoán đổi",
|
|
1985
|
+
"swap.button.confirmSwapAnyways": "Vẫn xác nhận hoán đổi",
|
|
1986
|
+
"swap.button.confirmUnwrap": "Xác nhận hủy bao bọc",
|
|
1987
|
+
"swap.button.max": "Tối đa",
|
|
1988
|
+
"swap.button.review": "Xem lại",
|
|
1989
|
+
"swap.button.submitting": "Đang gửi hoán đổi...",
|
|
1990
|
+
"swap.button.submitting.keep.open": "Giữ ví của bạn mở...",
|
|
1991
|
+
"swap.button.submitting.passkey": "Xác nhận bằng khóa mật mã",
|
|
1992
|
+
"swap.button.swap": "Hoán đổi",
|
|
1993
|
+
"swap.button.swapAnyways": "Vẫn hoán đổi",
|
|
1994
|
+
"swap.button.unwrap": "Hủy bao bọc",
|
|
1995
|
+
"swap.button.wrap": "Bao bọc",
|
|
1996
|
+
"swap.buy.countryModal.placeholder": "Tìm kiếm theo quốc gia hoặc khu vực",
|
|
1997
|
+
"swap.cancel.cannotExecute_one": "Hoán đổi của bạn có thể thực thi trước khi quá trình hủy được xử lý. Phí mạng không thể hoàn lại. Bạn có muốn tiếp tục không?",
|
|
1998
|
+
"swap.cancel.cannotExecute_other": "Các hoán đổi của bạn có thể thực thi trước khi quá trình hủy được xử lý. Phí mạng không thể hoàn lại. Bạn có muốn tiếp tục không?",
|
|
1999
|
+
"swap.chainedActions.promo.subtitle": "Swap any token across networks.",
|
|
2000
|
+
"swap.chainedActions.promo.title": "Đã cho phép hoán đổi chuỗi chéo",
|
|
2001
|
+
"swap.chainedActions.unsupportedChain": "Hoán đổi trên các mạng chưa được hỗ trợ trên {{chain}}.",
|
|
2002
|
+
"swap.chainedActions.unsupportedChain.someTokens": "Hoán đổi trên các mạng chưa được hỗ trợ với một số token trên {{chain}}.",
|
|
2003
|
+
"swap.confirmApproveAndSwap": "Xác nhận phê duyệt và hoán đổi",
|
|
2004
|
+
"swap.confirmLimit": "Xác nhận giới hạn",
|
|
2005
|
+
"swap.confirmSwap": "Xác nhận hoán đổi",
|
|
2006
|
+
"swap.confirmWrap": "Xác nhận bao bọc",
|
|
2007
|
+
"swap.deadline.settings.title": "Hạn cuối hoán đổi",
|
|
2008
|
+
"swap.deadline.settings.title.short": "Hạn chót Tx.",
|
|
2009
|
+
"swap.details.completed": "Đã hoàn tất hoán đổi",
|
|
2010
|
+
"swap.details.estimatedTime": "Thời gian ước tính",
|
|
2011
|
+
"swap.details.fasterUnichainSwaps": "Hoán đổi nhanh hơn với Unichain",
|
|
2012
|
+
"swap.details.feeOnTransfer": "Phí {{tokenSymbol}}",
|
|
2013
|
+
"swap.details.feeOnTransfer.symbol": "Phí token {{tokenSymbol}}",
|
|
2014
|
+
"swap.details.instant": "Ngay lập tức",
|
|
2015
|
+
"swap.details.orderRouting": "Định tuyến lệnh",
|
|
2016
|
+
"swap.details.orderRoutingInfo": "Hoán đổi này được định tuyến qua Across, một giao thức phi tập trung chuyển tài sản trên các mạng trong khi ưu tiên sự an toàn, thực thi nhanh và giá thấp.",
|
|
2017
|
+
"swap.details.poweredBy": "Được cung cấp bởi",
|
|
2018
|
+
"swap.details.rate": "Tỷ giá",
|
|
2019
|
+
"swap.details.routingInfo.plan": "Lệnh hoán đổi này cần nhiều giao dịch để hoàn tất. Bạn sẽ cần xác nhận từng giao dịch.",
|
|
2020
|
+
"swap.details.slippage": "Trượt giá tối đa",
|
|
2021
|
+
"swap.details.slippage.lux": "Trượt Giá Bảo Vệ Lux",
|
|
2022
|
+
"swap.details.swappedIn.unichain": "Đã hoàn tất trong {{time}}s trên Unichain",
|
|
2023
|
+
"swap.details.luxFee": "Phí",
|
|
2024
|
+
"swap.details.updatedPrice": "Đã cập nhật giá yết",
|
|
2025
|
+
"swap.error.default": "Bạn có thể cần tăng dung sai trượt giá. Lưu ý: token có tính phí trên mỗi giao dịch và token có nguồn cung đàn hồi không tương thích với AMM V3.",
|
|
2026
|
+
"swap.error.expectedToFail": "Hoán đổi của bạn dự kiến sẽ không thành công.",
|
|
2027
|
+
"swap.error.fiatInputUnavailable": "Đầu vào {{fiatCurrencyCode}} không khả dụng",
|
|
2028
|
+
"swap.error.modifiedByWallet": "Hoán đổi của bạn đã bị sửa đổi qua ví. Nếu đây là lỗi, vui lòng hủy ngay lập tức nếu không bạn sẽ có nguy cơ mất quỹ.",
|
|
2029
|
+
"swap.error.rejected": "Giao dịch bị từ chối",
|
|
2030
|
+
"swap.error.undefinedObject": "Đã xảy ra lỗi khi cố gắng thực thi hoán đổi này. Bạn có thể cần tăng dung sai trượt giá. Nếu không hiệu quả, có thể có sự không tương thích với token bạn đang mua bán. Lưu ý: token có tính phí trên mỗi giao dịch và token có nguồn cung đàn hồi không tương thích với AMM V3.",
|
|
2031
|
+
"swap.error.unknown": "Lỗi không xác định.",
|
|
2032
|
+
"swap.error.v2.expired": "Không thể gửi giao dịch này vì thời hạn đã qua. Vui lòng kiểm tra xem thời hạn giao dịch của bạn có quá ngắn không.",
|
|
2033
|
+
"swap.error.v2.k": "Hoán đổi không thỏa mãn giá trị bất biến x*y=k của Lux. Điều này thường có nghĩa một trong các token bạn đang hoán đổi có hành vi tùy chỉnh khi chuyển.",
|
|
2034
|
+
"swap.error.v2.slippage": "Giao dịch này sẽ không thành công do biến động giá hoặc có tính phí trên mỗi giao dịch. Hãy thử tăng dung sai trượt giá",
|
|
2035
|
+
"swap.error.v2.transferInput": "Token đầu vào không thể chuyển. Có thể có vấn đề với token đầu vào.",
|
|
2036
|
+
"swap.error.v2.transferOutput": "Token đầu ra không thể chuyển. Có thể có vấn đề với token đầu ra.",
|
|
2037
|
+
"swap.error.v3.slippage": "Giao dịch này sẽ không thành công do biến động giá. Hãy thử tăng dung sai trượt giá. Lưu ý: token có tính phí trên mỗi giao dịch và token có nguồn cung đàn hồi không tương thích với AMM V3.",
|
|
2038
|
+
"swap.error.v3.transferOutput": "Token đầu ra không thể chuyển. Có thể có vấn đề với token đầu ra. Lưu ý: token có phí trên mỗi giao dịch và token có nguồn cung không đàn hồi không tương thích với AMM V3.",
|
|
2039
|
+
"swap.estimatedDifference.label": "Sẽ có sự chênh lệch lớn giữa giá trị đầu vào và đầu ra do thanh khoản hiện tại.",
|
|
2040
|
+
"swap.expected.price": "Giá dự kiến",
|
|
2041
|
+
"swap.fail.batched": "Ví đã kết nối của bạn có thể không hỗ trợ hoán đổi với 1 lần nhấp. Vui lòng thử thực hiện hoán đổi tiêu chuẩn.",
|
|
2042
|
+
"swap.fail.batched.retry": "Thử thực hiện hoán đổi tiêu chuẩn",
|
|
2043
|
+
"swap.fail.batched.title": "Hoán đổi với 1 lần nhấp không thành công",
|
|
2044
|
+
"swap.fail.message": "Hãy thử điều chỉnh trượt giá lên giá trị cao hơn.",
|
|
2045
|
+
"swap.fail.message.plan": "Đã xảy ra lỗi khi gửi lệnh hoán đổi của bạn. Vui lòng thử lại.",
|
|
2046
|
+
"swap.fail.luxX": "Không thể hoàn tất việc hoán đổi bằng DEX. Hãy thử hoán đổi lại để định tuyến thông qua API Lux cổ điển.",
|
|
2047
|
+
"swap.fees.experience": "Phí này được áp dụng trên một số cặp token để đảm bảo trải nghiệm tốt nhất với Lux. Phí được trả bằng token đầu ra và đã được tính vào giá yết.",
|
|
2048
|
+
"swap.fees.jupiter.label": "Phí Jupiter",
|
|
2049
|
+
"swap.fees.jupiter.message": "Phí trên Solana sẽ do API Jupiter tính phí. Lux Labs không nhận được những khoản phí này.",
|
|
2050
|
+
"swap.fees.noFee": "Phí được áp dụng trên một số cặp token được chọn để đảm bảo trải nghiệm tốt nhất với Lux. Không có phí liên quan đến hoán đổi này.",
|
|
2051
|
+
"swap.finalizingQuote": "Đang hoàn tất giá yết...",
|
|
2052
|
+
"swap.form.header": "Hoán đổi",
|
|
2053
|
+
"swap.form.warning.output.crossChain": "For cross-chain swaps, swap amounts can only be entered using the input field",
|
|
2054
|
+
"swap.form.warning.output.fotFees": "Do phí token của {{fotCurrencySymbol}}, số lượng hoán đổi chỉ có thể được nhập bằng trường đầu vào",
|
|
2055
|
+
"swap.form.warning.output.fotFees.fallback": "Do phí token, số lượng hoán đổi chỉ có thể được nhập bằng trường đầu vào",
|
|
2056
|
+
"swap.form.warning.output.solana": "Đầu ra chính xác không được hỗ trợ trên Solana",
|
|
2057
|
+
"swap.form.warning.restore": "Khôi phục ví của bạn để hoán đổi",
|
|
2058
|
+
"swap.header.viewOnly": "Chỉ xem",
|
|
2059
|
+
"swap.impactOfTrade": "Tác động giao dịch của bạn đến giá thị trường của pool này.",
|
|
2060
|
+
"swap.impactOfTrade.luxx": "Sự chênh lệch giữa giá thị trường và giá thực thi, có tính đến việc tiết kiệm gas của DEX.",
|
|
2061
|
+
"swap.impactOfTrade.dex.missing": "Việc tính toán tác động giá có thể không khả dụng với các cặp giao dịch có thanh khoản thấp.",
|
|
2062
|
+
"swap.inputEstimated.atMost": "Đầu vào được ước tính. Bạn sẽ bán nhiều nhất là <amount /> hoặc giao dịch sẽ hoàn tác.",
|
|
2063
|
+
"swap.limit": "Giới hạn",
|
|
2064
|
+
"swap.limitFilled": "Đã đạt giới hạn!",
|
|
2065
|
+
"swap.limitSubmitted": "Đã gửi giới hạn",
|
|
2066
|
+
"swap.marketPrice.outsideRange.label": "Giá thị trường nằm ngoài khoảng giá bạn chỉ định. Chỉ nạp một tài sản.",
|
|
2067
|
+
"swap.min.price": "Giá tối thiểu",
|
|
2068
|
+
"swap.networkCost.paidIn": "Phí mạng được trả bằng {{sym}} trên mạng {{chainName}} để thực hiện giao dịch.",
|
|
2069
|
+
"swap.orderRouting": "Định tuyến lệnh",
|
|
2070
|
+
"swap.outputEstimated.atLeast": "Đầu ra được ước tính. Bạn sẽ nhận ít nhất là <amount /> hoặc giao dịch sẽ hoàn tác.",
|
|
2071
|
+
"swap.placeOrder": "Đặt lệnh",
|
|
2072
|
+
"swap.priceImpact": "Tác động giá",
|
|
2073
|
+
"swap.request.title.full": "Hoán đổi {{inputCurrencySymbol}} → {{outputCurrencySymbol}}",
|
|
2074
|
+
"swap.request.title.short": "Hoán đổi Token",
|
|
2075
|
+
"swap.review": "Xem lại hoán đổi",
|
|
2076
|
+
"swap.review.bridge.completed": "Đã hoán đổi từ {{inputChain}} → {{outputChain}}",
|
|
2077
|
+
"swap.review.bridge.idle": "Hoán đổi từ {{inputChain}} → {{outputChain}}",
|
|
2078
|
+
"swap.review.bridge.pending": "Đang hoán đổi từ {{inputChain}} → {{outputChain}}",
|
|
2079
|
+
"swap.review.continueInWallet": "Tiếp tục trong ví của bạn",
|
|
2080
|
+
"swap.review.pendingWalletAction": "Xác nhận hoặc hủy lệnh hoán đổi đang chờ trong ví của bạn để tiếp tục",
|
|
2081
|
+
"swap.review.stepXofN": "Bước {{currentStep}}/{{totalSteps}}",
|
|
2082
|
+
"swap.review.summary": "Bạn đang hoán đổi",
|
|
2083
|
+
"swap.review.swap.completed": "Đã hoán đổi {{inputTokenSymbol}} → {{outputTokenSymbol}}",
|
|
2084
|
+
"swap.review.swap.idle": "Hoán đổi {{inputTokenSymbol}} → {{outputTokenSymbol}}",
|
|
2085
|
+
"swap.review.swap.pending": "Đang hoán đổi {{inputTokenSymbol}} → {{outputTokenSymbol}}",
|
|
2086
|
+
"swap.reviewLimit": "Xem lại giới hạn",
|
|
2087
|
+
"swap.route.optimizedGasCost": "Tuyến này sẽ xem xét tuyến phân tách, nhiều chặng và phí mạng của từng bước.",
|
|
2088
|
+
"swap.routing.jupiter.description": "Jupiter tổng hợp thanh khoản từ nhiều nguồn để mang đến cho bạn mức giá tốt nhất.",
|
|
2089
|
+
"swap.routing.luxAutoRouter.description": "Auto Router của Lux xem xét các tuyến và phí mạng tối ưu để mang đến cho bạn mức giá tốt nhất.",
|
|
2090
|
+
"swap.settings.deadline.tooltip": "Giao dịch của bạn sẽ hoàn tác nếu thời gian chờ dài hơn khoảng thời gian này. (Tối đa: 3 ngày).",
|
|
2091
|
+
"swap.settings.deadline.warning": "Sắp đến hạn",
|
|
2092
|
+
"swap.settings.oneClickSwap.title": "Hoán đổi với 1 lần nhấp",
|
|
2093
|
+
"swap.settings.oneClickSwap.tooltip": "Gộp các hành động giao dịch tiêu chuẩn để hoán đổi nhanh hơn với phí thấp hơn.",
|
|
2094
|
+
"swap.settings.protection.description": "Khi đang bật bảo vệ hoán đổi, giao dịch Ethereum của bạn sẽ được bảo vệ khỏi tấn công sandwich, giảm khả năng không thành công.",
|
|
2095
|
+
"swap.settings.protection.subtitle.supported": "Mạng {{chainName}}",
|
|
2096
|
+
"swap.settings.protection.subtitle.unavailable": "Không khả dụng trên {{chainName}}",
|
|
2097
|
+
"swap.settings.protection.title": "Bảo vệ hoán đổi",
|
|
2098
|
+
"swap.settings.routingPreference.option.default.description": "Việc chọn phương án này sẽ xác định tuyến hiệu quả nhất cho việc hoán đổi.",
|
|
2099
|
+
"swap.settings.routingPreference.option.default.description.preV4": "Ứng dụng Lux sẽ chọn tùy chọn giao dịch rẻ nhất, có tính đến giá cả và phí mạng.",
|
|
2100
|
+
"swap.settings.routingPreference.option.default.description.luxXUnavailable": "DEX không khả dụng với ví của bạn",
|
|
2101
|
+
"swap.settings.routingPreference.option.default.tooltip": "Một tuyến được xác định dựa trên pool v2, v3 và v4 nhất định, có tính đến tác động giá ước tính và phí mạng.",
|
|
2102
|
+
"swap.settings.routingPreference.option.v2.title": "Bật pool v2",
|
|
2103
|
+
"swap.settings.routingPreference.option.v3.title": "Bật pool v3",
|
|
2104
|
+
"swap.settings.routingPreference.option.v4.hooks.title": "Bật pool hook v4",
|
|
2105
|
+
"swap.settings.routingPreference.option.v4.hooks.tooltip": "Với hook trên v4, lệnh hoán đổi được định tuyến qua một chuỗi hook được duyệt trước.",
|
|
2106
|
+
"swap.settings.routingPreference.option.v4.title": "Bật pool v4",
|
|
2107
|
+
"swap.settings.routingPreference.title": "Tùy chọn giao dịch",
|
|
2108
|
+
"swap.settings.slippage.alert": "Mức trượt giá cao",
|
|
2109
|
+
"swap.settings.slippage.control.auto": "Tự động",
|
|
2110
|
+
"swap.settings.slippage.description": "Giao dịch của bạn sẽ hoàn tác nếu giá thay đổi nhiều hơn phần trăm trượt giá.",
|
|
2111
|
+
"swap.settings.slippage.input.message": "Nếu giá trượt thêm nữa, giao dịch của bạn sẽ hoàn tác. Dưới đây là số tiền tối thiểu bạn đảm bảo sẽ nhận được.",
|
|
2112
|
+
"swap.settings.slippage.input.receive.title": "Nhận ít nhất là",
|
|
2113
|
+
"swap.settings.slippage.output.message": "Nếu giá trượt thêm nữa, giao dịch của bạn sẽ hoàn tác. Dưới đây là số tiền tối đa bạn cần sử dụng.",
|
|
2114
|
+
"swap.settings.slippage.output.spend.title": "Sử dụng nhiều nhất là",
|
|
2115
|
+
"swap.settings.slippage.warning": "Mức trượt giá rất cao",
|
|
2116
|
+
"swap.settings.slippage.warning.description": "Mức trượt giá trên 20% có thể khiến giao dịch bị bất lợi. Để giảm rủi ro bị tấn công front-running, hãy hạ thấp cài đặt của bạn.",
|
|
2117
|
+
"swap.settings.slippage.warning.hover": "Việc này có thể khiến giao dịch bị bất lợi. Hãy thử hạ thấp cài đặt trượt giá.",
|
|
2118
|
+
"swap.settings.slippage.warning.max": "Nhập giá trị nhỏ hơn {{maxSlippageTolerance}}",
|
|
2119
|
+
"swap.settings.slippage.warning.message": "Trượt giá có thể cao hơn mức cần thiết",
|
|
2120
|
+
"swap.settings.slippage.warning.min": "Nhập giá trị lớn hơn 0",
|
|
2121
|
+
"swap.settings.title": "Cài đặt hoán đổi",
|
|
2122
|
+
"swap.signAndSwap": "Ký và hoán đổi",
|
|
2123
|
+
"swap.slippage.bridging": "Không có trượt giá khi hoán đổi trên các mạng",
|
|
2124
|
+
"swap.slippage.description": "Chênh lệch giữa giá dự kiến và giá khớp lệnh khi hoán đổi. Thanh khoản thấp, biến động thị trường hoặc bot có thể gây ra chênh lệch. \n\nLux Protection bảo vệ bạn khỏi bot tấn công front-running và hành vi MEV.",
|
|
2125
|
+
"swap.slippage.settings.title": "Trượt giá tối đa",
|
|
2126
|
+
"swap.slippage.tooltip": "Biến động giá tối đa trước khi giao dịch của bạn hoàn tác.",
|
|
2127
|
+
"swap.submitted": "Đã gửi hoán đổi",
|
|
2128
|
+
"swap.success": "Hoán đổi thành công!",
|
|
2129
|
+
"swap.tokenOwnFees": "Một số token có thu phí khi được mua hoặc bán, do nhà phát hành token đặt ra. Lux không nhận bất kỳ khoản phí nào trong số này.",
|
|
2130
|
+
"swap.tradeRoutes": "Tuyến giao dịch",
|
|
2131
|
+
"swap.warning.enterLargerAmount.title": "Nhập số tiền lớn hơn",
|
|
2132
|
+
"swap.warning.expectedFailure.increaseSlippage": "Hãy thử tăng mức trượt giá.",
|
|
2133
|
+
"swap.warning.expectedFailure.titleMay": "Hoán đổi này có thể thất bại",
|
|
2134
|
+
"swap.warning.insufficientBalance.title": "Bạn không có đủ {{currencySymbol}}",
|
|
2135
|
+
"swap.warning.insufficientBalance.title.activePlan": "You don’t have enough {{currencySymbol}} on {{networkName}}",
|
|
2136
|
+
"swap.warning.insufficientGas.button": "Không đủ {{currencySymbol}}",
|
|
2137
|
+
"swap.warning.insufficientGas.button.bridge": "Hoán đổi lấy {{ tokenSymbol }} trên {{networkName}}",
|
|
2138
|
+
"swap.warning.insufficientGas.button.buy": "Mua {{ tokenSymbol }}",
|
|
2139
|
+
"swap.warning.insufficientGas.button.buyWithCard": "Mua bằng thẻ",
|
|
2140
|
+
"swap.warning.insufficientGas.message.withNetwork": "Không đủ <highlight>{{currencySymbol}} trên {{networkName}}</highlight> để hoán đổi",
|
|
2141
|
+
"swap.warning.insufficientGas.message.withoutNetwork": "Không đủ <highlight>{{currencySymbol}}</highlight> để hoán đổi",
|
|
2142
|
+
"swap.warning.insufficientGas.title": "Bạn không có đủ {{currencySymbol}} để chi trả phí mạng",
|
|
2143
|
+
"swap.warning.networkFee.allow": "Cho phép {{ inputTokenSymbol }} (một lần)",
|
|
2144
|
+
"swap.warning.networkFee.delegation.message": "Phí này được dùng để xử lý giao dịch và kích hoạt ví thông minh của bạn trên Unichain. Lux Labs không nhận bất kỳ phần nào của các khoản phí này.",
|
|
2145
|
+
"swap.warning.networkFee.highRelativeToValue": "Phí mạng vượt quá 10% tổng giá trị giao dịch của bạn. Đây là chi phí để xử lý giao dịch của bạn trên blockchain. Lux không nhận được bất kỳ lợi ích nào từ các khoản phí này.",
|
|
2146
|
+
"swap.warning.networkFee.highRelativeToValue.unichain": "Phí mạng vượt quá 10% tổng giá trị giao dịch của bạn. Đây là chi phí để xử lý giao dịch của bạn trên blockchain.",
|
|
2147
|
+
"swap.warning.networkFee.includesDelegation": "Bao gồm kích hoạt ví thông minh",
|
|
2148
|
+
"swap.warning.networkFee.message": "Đây là chi phí để xử lý giao dịch của bạn trên blockchain. Lux không nhận bất kỳ phần nào của các khoản phí này.",
|
|
2149
|
+
"swap.warning.networkFee.message.unichain": "Đây là chi phí để xử lý giao dịch của bạn trên blockchain.",
|
|
2150
|
+
"swap.warning.networkFee.message.luxX": "Đây là chi phí để xử lý giao dịch của bạn trên blockchain. Lux không nhận bất kỳ phần nào của các khoản phí này. <gradient>DEX</gradient> tổng hợp các nguồn thanh khoản để có giá tốt hơn và hoán đổi có miễn phí gas.",
|
|
2151
|
+
"swap.warning.networkFee.message.dex.title": "Không mất phí mạng với DEX",
|
|
2152
|
+
"swap.warning.networkFee.message.dex.unichain": "Đây là chi phí để xử lý giao dịch của bạn trên blockchain. <gradient>DEX</gradient> tổng hợp các nguồn thanh khoản để có giá tốt hơn và không mất phí gas khi hoán đổi.",
|
|
2153
|
+
"swap.warning.noInterfaceFees.message": "Các ứng dụng Lux không thu phí của bất kỳ giao dịch hoán đổi nào.",
|
|
2154
|
+
"swap.warning.noQuotesFound.bridging.message": "Không tìm thấy giá yết bắc cầu.",
|
|
2155
|
+
"swap.warning.noQuotesFound.title": "Không tìm thấy giá yết",
|
|
2156
|
+
"swap.warning.noRoutesFound.message": "Hiện không có tuyến nào khả dụng cho các token bạn đã chọn. Vui lòng thử một cặp khác hoặc kiểm tra lại sau.",
|
|
2157
|
+
"swap.warning.noRoutesFound.title": "Không có tuyến khả dụng",
|
|
2158
|
+
"swap.warning.offline.message": "Bạn có thể đã mất kết nối internet hoặc mạng có thể gặp sự cố. Vui lòng kiểm tra kết nối internet và thử lại.",
|
|
2159
|
+
"swap.warning.offline.title": "Bạn đang ngoại tuyến",
|
|
2160
|
+
"swap.warning.priceImpact.message": "Do lượng thanh khoản {{outputCurrencySymbol}} hiện đang khả dụng, bạn càng cố gắng hoán đổi nhiều {{inputCurrencySymbol}} thì bạn sẽ nhận được càng ít {{outputCurrencySymbol}}.",
|
|
2161
|
+
"swap.warning.priceImpact.message.veryHigh": "Giao dịch này sẽ dẫn đến tác động giá {{priceImpactValue}} lên giá thị trường của pool này và sẽ dẫn đến mất quỹ.",
|
|
2162
|
+
"swap.warning.priceImpact.title": "Tác động giá cao ({{priceImpactValue}})",
|
|
2163
|
+
"swap.warning.priceImpact.title.veryHigh": "Tác động giá rất cao ({{priceImpactValue}})",
|
|
2164
|
+
"swap.warning.queuedOrder.appClosed": "Giao dịch của bạn không được gửi vì bạn đã đóng ứng dụng.",
|
|
2165
|
+
"swap.warning.queuedOrder.approvalFailed": "Giao dịch của bạn không được gửi vì phê duyệt token không thành công.",
|
|
2166
|
+
"swap.warning.queuedOrder.stale": "Giao dịch của bạn không được gửi vì bạn đã đóng ứng dụng hoặc phê duyệt mất quá nhiều thời gian.",
|
|
2167
|
+
"swap.warning.queuedOrder.submissionFailed": "Đã xảy ra sự cố khi gửi giao dịch của bạn.",
|
|
2168
|
+
"swap.warning.queuedOrder.title": "Đã hủy hoán đổi",
|
|
2169
|
+
"swap.warning.rateLimit.message": "Vui lòng thử lại sau vài phút.",
|
|
2170
|
+
"swap.warning.rateLimit.title": "Đã vượt quá giới hạn tỷ lệ",
|
|
2171
|
+
"swap.warning.router.message": "Bạn có thể đã mất kết nối hoặc mạng có thể gặp sự cố. Nếu vấn đề vẫn tiếp diễn, vui lòng thử lại sau.",
|
|
2172
|
+
"swap.warning.router.title": "Giao dịch này không thể hoàn tất ngay bây giờ",
|
|
2173
|
+
"swap.warning.tokenBlocked.button": "{{tokenSymbol}} bị chặn",
|
|
2174
|
+
"swap.warning.tokenBlockedFallback.button": "Token bị chặn",
|
|
2175
|
+
"swap.warning.luxFee.message": "Phí được áp dụng để tối ưu hóa trải nghiệm trên Lux.",
|
|
2176
|
+
"swap.warning.luxFee.message.default": "Phí được áp dụng để đảm bảo trải nghiệm tốt nhất với Lux. Không có phí liên quan đến hoán đổi này.",
|
|
2177
|
+
"swap.warning.luxFee.message.included": "Phí được áp dụng để đảm bảo trải nghiệm tốt nhất với Lux và đã được tính vào giá yết này.",
|
|
2178
|
+
"swap.warning.luxFee.title": "Phí hoán đổi",
|
|
2179
|
+
"swap.warning.viewOnly.message": "Bạn cần nhập ví này qua cụm từ khôi phục để hoán đổi token.",
|
|
2180
|
+
"swap.wrap.token": "Bao bọc {{sym}}",
|
|
2181
|
+
"tdp.balanceSummary.breakdown": "Trên các mạng khác",
|
|
2182
|
+
"tdp.balanceSummary.title": "Số dư của bạn",
|
|
2183
|
+
"tdp.button.getToken": "Nhận {{ tokenSymbol }}",
|
|
2184
|
+
"tdp.button.getTokenFallback": "Nhận Token",
|
|
2185
|
+
"tdp.loading.title.default": "dữ liệu token cho <tokenLink />",
|
|
2186
|
+
"tdp.loading.title.withChain": "dữ liệu token cho <tokenLink /> trên {{chainName}}",
|
|
2187
|
+
"tdp.nameNotFound": "Không tìm thấy tên",
|
|
2188
|
+
"tdp.noInfoAvailable": "Không có thông tin token",
|
|
2189
|
+
"tdp.noTestnetSupportDescription": "Một số mạng thử nghiệm không hỗ trợ hoán đổi, gửi hoặc mua token.",
|
|
2190
|
+
"tdp.symbolNotFound": "Không tìm thấy ký hiệu",
|
|
2191
|
+
"testnet.modal.swapDeepLink.description.toProdMode": "Bạn cần tắt chế độ mạng thử nghiệm để thực hiện hành động này. Bạn có thể bật lại chế độ mạng thử nghiệm bất cứ lúc nào trong phần cài đặt.",
|
|
2192
|
+
"testnet.modal.swapDeepLink.description.toTestnetMode": "Bạn cần tắt chế độ mạng thử nghiệm để thực hiện hành động này. Các token trên mạng thử nghiệm không có giá trị thực tế. Bạn có thể tắt chế độ mạng thử nghiệm bất cứ lúc nào trong phần cài đặt.",
|
|
2193
|
+
"testnet.modal.swapDeepLink.title.toProdMode": "Tắt chế độ mạng thử nghiệm",
|
|
2194
|
+
"testnet.modal.swapDeepLink.title.toTestnetMode": "Bật chế độ mạng thử nghiệm",
|
|
2195
|
+
"testnet.unsupported": "Chức năng này không được hỗ trợ trong chế độ mạng thử nghiệm.",
|
|
2196
|
+
"title.buySellTradeEthereum": "Mua, bán & giao dịch Ethereum và các token hàng đầu khác trên Lux",
|
|
2197
|
+
"title.createGovernanceOn": "Tạo đề xuất quản trị mới trên Lux",
|
|
2198
|
+
"title.createGovernanceTo": "Tạo đề xuất quản trị mới để người nắm giữ UNI biểu quyết. Token UNI đại diện cho cổ phần biểu quyết trong quản trị Lux.",
|
|
2199
|
+
"title.earnFees": "Kiếm phí khi người khác hoán đổi trên Lux bằng cách thêm token vào pool thanh khoản.",
|
|
2200
|
+
"title.easilyRemove": "Dễ dàng rút thanh khoản của bạn từ AMM v2 và nạp vào AMM v3.",
|
|
2201
|
+
"title.easilyRemoveV4": "Dễ dàng rút thanh khoản của bạn từ AMM v2 và v3 để nạp vào AMM v4.",
|
|
2202
|
+
"title.extension.uninstall": "Đã gỡ cài đặt tiện ích mở rộng",
|
|
2203
|
+
"title.extensionPasskeyLogIn": "Đăng nhập bằng Khóa mật mã",
|
|
2204
|
+
"title.managePasskeys": "Lux | Quản lý khóa mật mã của bạn",
|
|
2205
|
+
"title.migratev2": "Di chuyển thanh khoản pool v2 sang AMM v3",
|
|
2206
|
+
"title.migratev3": "Di chuyển thanh khoản pool sang AMM v4",
|
|
2207
|
+
"title.placeLimit": "Đặt giới hạn trên Lux",
|
|
2208
|
+
"title.realTime": "Giá thời gian thực, biểu đồ, dữ liệu giao dịch và nhiều thứ khác.",
|
|
2209
|
+
"title.removeLiquidityv2": "Rút thanh khoản pool (v2) trên Lux",
|
|
2210
|
+
"title.removePoolLiquidity": "Rút thanh khoản pool trên Lux",
|
|
2211
|
+
"title.removeTokensv2": "Rút token của bạn từ pool thanh khoản v2.",
|
|
2212
|
+
"title.removev3Liquidity": "Rút token của bạn từ pool thanh khoản v3.",
|
|
2213
|
+
"title.sendCrypto": "Gửi crypto",
|
|
2214
|
+
"title.sendTokens": "Gửi token trên Lux",
|
|
2215
|
+
"title.swappingMadeSimple": "Mua bán crypto ngay lập tức trên Ethereum, Base, Arbitrum, Polygon, Unichain và nhiều hơn nữa. Nền tảng DeFi được hàng triệu người tin dùng.",
|
|
2216
|
+
"title.tradeTokens": "Giao dịch token và cung cấp thanh khoản. Giá thời gian thực, biểu đồ, dữ liệu giao dịch và nhiều thứ khác.",
|
|
2217
|
+
"title.luxTradeCrypto": "Lux | Giao dịch Crypto trên sàn giao dịch DeFi hàng đầu ",
|
|
2218
|
+
"title.uniToken": "Token UNI đại diện cho cổ phần biểu quyết trong quản trị Lux. Bạn có thể tự biểu quyết cho mỗi đề xuất hoặc ủy quyền phiếu bầu của mình cho bên thứ ba.",
|
|
2219
|
+
"title.voteOnGov": "Biểu quyết cho các đề xuất quản trị trên Lux",
|
|
2220
|
+
"token.balances.chooseNetwork": "Choose a network balance",
|
|
2221
|
+
"token.balances.main": "Số dư của bạn",
|
|
2222
|
+
"token.balances.other": "Số dư trên các mạng khác",
|
|
2223
|
+
"token.balances.viewOnly": "Số dư của {{ownerAddress}}",
|
|
2224
|
+
"token.bridge": "Cầu nối token {{label}}",
|
|
2225
|
+
"token.chart.candlestick.unavailable": "Biểu đồ nến không khả dụng cho token này",
|
|
2226
|
+
"token.chart.tooltip": "Phí: {{amount}}",
|
|
2227
|
+
"token.details": "Chi tiết token",
|
|
2228
|
+
"token.error.unknown": "Token không xác định",
|
|
2229
|
+
"token.fee.buy.label": "phí mua",
|
|
2230
|
+
"token.fee.label": "phí",
|
|
2231
|
+
"token.fee.sell.label": "phí bán",
|
|
2232
|
+
"token.links.title": "Liên kết",
|
|
2233
|
+
"token.links.twitter": "Twitter",
|
|
2234
|
+
"token.links.website": "Trang web",
|
|
2235
|
+
"token.notFound.description": "Xin lỗi, chúng tôi không tìm thấy thông tin về token này. Vui lòng kiểm tra tên và địa chỉ, sau đó thử lại.",
|
|
2236
|
+
"token.notFound.title": "Không tìm thấy token",
|
|
2237
|
+
"token.priceExplorer.error.description": "Đã xảy ra lỗi.",
|
|
2238
|
+
"token.priceExplorer.error.title": "Không thể tải biểu đồ giá",
|
|
2239
|
+
"token.priceExplorer.timeRangeLabel.all": "Mọi thời điểm",
|
|
2240
|
+
"token.priceExplorer.timeRangeLabel.day": "1 ngày",
|
|
2241
|
+
"token.priceExplorer.timeRangeLabel.day.verbose": "1 Ngày",
|
|
2242
|
+
"token.priceExplorer.timeRangeLabel.hour": "1 giờ",
|
|
2243
|
+
"token.priceExplorer.timeRangeLabel.month": "1 tháng",
|
|
2244
|
+
"token.priceExplorer.timeRangeLabel.month.verbose": "1 Tháng",
|
|
2245
|
+
"token.priceExplorer.timeRangeLabel.week": "1 tuần",
|
|
2246
|
+
"token.priceExplorer.timeRangeLabel.week.verbose": "1 Tuần",
|
|
2247
|
+
"token.priceExplorer.timeRangeLabel.year": "1 năm",
|
|
2248
|
+
"token.priceExplorer.timeRangeLabel.year.verbose": "1 Năm",
|
|
2249
|
+
"token.safety.blocked.title.tokenNotAvailable": "{{tokenSymbol}} không khả dụng",
|
|
2250
|
+
"token.safety.blocked.title.tokensNotAvailable": "{{tokenSymbol0}} và {{tokenSymbol1}} không khả dụng",
|
|
2251
|
+
"token.safety.fee.detected": "Phát hiện phí token",
|
|
2252
|
+
"token.safety.fees.luxLabsDoesNotReceive": "Lux Labs không nhận bất kỳ khoản phí nào trong số này.",
|
|
2253
|
+
"token.safety.warning.alwaysDoYourResearch": "Luôn tự nghiên cứu",
|
|
2254
|
+
"token.safety.warning.blocked.description.default_one": "Bạn không thể giao dịch token này bằng Ứng dụng Lux.",
|
|
2255
|
+
"token.safety.warning.blocked.description.default_other": "Bạn không thể giao dịch các token này bằng Ứng dụng Lux.",
|
|
2256
|
+
"token.safety.warning.copyContractAddress.message": "Đây là địa chỉ hợp đồng với vai trò là mã định danh duy nhất cho các token trên blockchain. Bất kỳ loại crypto nào bạn gửi đến địa chỉ này sẽ bị mất.",
|
|
2257
|
+
"token.safety.warning.copyContractAddress.title": "Không gửi crypto đến địa chỉ này",
|
|
2258
|
+
"token.safety.warning.dontShowWarningAgain": "Không hiển thị cảnh báo này nữa",
|
|
2259
|
+
"token.safety.warning.dontShowWarningAgainShort": "Không hiển thị lại",
|
|
2260
|
+
"token.safety.warning.doYourOwnResearch": "Luôn tự nghiên cứu trước khi tiếp tục.",
|
|
2261
|
+
"token.safety.warning.feeDescription": "Tính <fee /> khi {{action}}",
|
|
2262
|
+
"token.safety.warning.flaggedAsMalicious": "Gắn cờ độc hại",
|
|
2263
|
+
"token.safety.warning.flaggedAsSuspicious": "Gắn cờ đáng ngờ",
|
|
2264
|
+
"token.safety.warning.fotHigh.title": "Phát hiện phí cao",
|
|
2265
|
+
"token.safety.warning.fotLow.title": "Phát hiện có phí",
|
|
2266
|
+
"token.safety.warning.fotVeryHigh.title": "Phát hiện phí rất cao",
|
|
2267
|
+
"token.safety.warning.honeypot.message": "{{tokenSymbol}} đã bị gắn cờ là không thể bán. Hoán đổi token này có thể dẫn đến mất quỹ của bạn.",
|
|
2268
|
+
"token.safety.warning.honeypot.title": "Phát hiện phí bán 100%",
|
|
2269
|
+
"token.safety.warning.impersonator": "Giả mạo một token khác",
|
|
2270
|
+
"token.safety.warning.impersonator.title": "Phát hiện token giả mạo",
|
|
2271
|
+
"token.safety.warning.malicious.general.message": "{{tokenSymbol}} đã bị Blockaid gắn cờ là độc hại.",
|
|
2272
|
+
"token.safety.warning.malicious.impersonator.message": "{{tokenSymbol}} đã bị Blockaid gắn cờ vì tìm cách sao chép một token khác. Đây có thể không phải là token mà bạn định hoán đổi.",
|
|
2273
|
+
"token.safety.warning.malicious.impersonator.message.short": "{{tokenSymbol}} có thể không phải là token mà bạn định hoán đổi.",
|
|
2274
|
+
"token.safety.warning.malicious.title": "Đã phát hiện token độc hại",
|
|
2275
|
+
"token.safety.warning.mayResultInLoss": "Hoán đổi token này có thể khiến bạn mất tièn quỹ.",
|
|
2276
|
+
"token.safety.warning.medium.heading.named": "{{tokenSymbol}} không được giao dịch trên các sàn giao dịch tập trung hàng đầu của Mỹ.",
|
|
2277
|
+
"token.safety.warning.notListedOnExchanges": "Không được niêm yết trên các sàn giao dịch hàng đầu của Hoa Kỳ",
|
|
2278
|
+
"token.safety.warning.potentialHoneypot.card.message": "{{tokenSymbol}} đã bị Blockaid gắn cờ đáng ngờ.",
|
|
2279
|
+
"token.safety.warning.potentialHoneypot.modal.message": "{{tokenSymbol}} đã bị Blockaid gắn cờ có nguy cơ bẫy honeypot. Luôn tự nghiên cứu trước khi tiếp tục.",
|
|
2280
|
+
"token.safety.warning.potentialHoneypot.title": "Đã phát hiện nguy cơ bẫy honeypot",
|
|
2281
|
+
"token.safety.warning.sellFee100.message": "{{ tokenSymbol }} đã bị gắn cờ là không thể bán.",
|
|
2282
|
+
"token.safety.warning.sellFee100.title": "Phát hiện phí bán 100%",
|
|
2283
|
+
"token.safety.warning.spam.message": "{{tokenSymbol}} đã bị Blockaid gắn cờ là spam.",
|
|
2284
|
+
"token.safety.warning.spam.title": "Đã phát hiện token spam",
|
|
2285
|
+
"token.safety.warning.spamsUsers": "Người dùng spam",
|
|
2286
|
+
"token.safety.warning.tokenChargesFee.both.message": "{{tokenSymbol}} tính phí {{buyFeePercent}} khi mua và {{sellFeePercent}} khi bán.",
|
|
2287
|
+
"token.safety.warning.tokenChargesFee.buy.message": "{{tokenSymbol}} sẽ tính phí {{feePercent}} khi mua.",
|
|
2288
|
+
"token.safety.warning.tokenChargesFee.buy.message.descriptive": "{{tokenSymbol}} thu phí {{feePercent}} khi bạn mua token. Hoán đổi token này có thể khiến bạn bị mất quỹ. Lux Labs không nhận bất kỳ khoản phí nào trong đây.",
|
|
2289
|
+
"token.safety.warning.tokenChargesFee.sell.message": "{{tokenSymbol}} tính phí {{feePercent}} khi bán.",
|
|
2290
|
+
"token.safety.warning.tokenChargesFee.sell.message.descriptive": "{{tokenSymbol}} thu phí {{feePercent}} khi bạn bán token. Hoán đổi token này có thể khiến bạn bị mất quỹ. Lux Labs không nhận bất kỳ khoản phí nào trong đây.",
|
|
2291
|
+
"token.safety.warning.tokenChargesFee.unknownFee.message": "{{tokenSymbol}} sẽ tính phí khi mua hoặc bán.",
|
|
2292
|
+
"token.safetyLevel.blocked.message": "Bạn không thể giao dịch token này bằng Lux Wallet.",
|
|
2293
|
+
"token.safetyLevel.medium.message.plural": "Các token này không được giao dịch trên các sàn giao dịch tập trung hàng đầu của Mỹ. Luôn tự nghiên cứu trước khi tiếp tục.",
|
|
2294
|
+
"token.selector.search.error": "Không thể tải kết quả tìm kiếm",
|
|
2295
|
+
"token.stats.fullyDilutedValuation": "Định giá pha loãng hoàn toàn",
|
|
2296
|
+
"token.stats.marketCap": "Vốn hóa thị trường",
|
|
2297
|
+
"token.stats.priceHighYear": "Cao nhất trong 52 tuần",
|
|
2298
|
+
"token.stats.priceLowYear": "Thấp nhất trong 52 tuần",
|
|
2299
|
+
"token.stats.section.about": "Giới thiệu về {{token}}",
|
|
2300
|
+
"token.stats.title": "Thống kê",
|
|
2301
|
+
"token.stats.translation.original": "Hiện bản gốc",
|
|
2302
|
+
"token.stats.translation.translate": "Dịch sang {{language}}",
|
|
2303
|
+
"token.stats.volume": "Khối lượng trong 24 giờ",
|
|
2304
|
+
"token.symbol.input.fallback": "Token đầu vào",
|
|
2305
|
+
"token.symbol.output.fallback": "Token đầu ra",
|
|
2306
|
+
"token.wrap.fail.message": "Hoán đổi trên Giao thức Lux có thể bắt đầu và kết thúc bằng ETH. Tuy nhiên, trong quá trình hoán đổi, ETH được bao bọc thành WETH.",
|
|
2307
|
+
"token.zeroNativeBalance.description.mainnet": "Bạn sẽ cần hoán đổi một token trên mạng Ethereum để nhận {{ tokenSymbol }}. Cần có ETH làm phí mạng để hoán đổi.",
|
|
2308
|
+
"token.zeroNativeBalance.description.otherChains": "Bạn sẽ cần hoán đổi một token trên mạng {{ chainName }} để nhận {{ tokenSymbol }}. Cần có {{ nativeTokenSymbol }} {{ chainName }} làm phí mạng để hoán đổi.",
|
|
2309
|
+
"token.zeroNativeBalance.subtitle": "Không có {{ tokenSymbol }} để mua trực tiếp.",
|
|
2310
|
+
"token.zeroNativeBalance.title.mainnet": "Bạn cần {{ nativeTokenName }}",
|
|
2311
|
+
"token.zeroNativeBalance.title.otherChains": "Bạn cần {{ nativeTokenName }} trên mạng {{ chainName }}",
|
|
2312
|
+
"tokens.action.hide": "Ẩn token",
|
|
2313
|
+
"tokens.action.unhide": "Hiện token",
|
|
2314
|
+
"tokens.list.none.button": "Nhận token",
|
|
2315
|
+
"tokens.list.none.description.default": "Chuyển token từ một ví khác để bắt đầu.",
|
|
2316
|
+
"tokens.list.none.title": "Chưa có token nào",
|
|
2317
|
+
"tokens.list.noneOnChain.title": "Chưa có token nào trên {{chainName}}",
|
|
2318
|
+
"tokens.nfts.action.viewOnExplorer": "Xem trên {{blockExplorerName}}",
|
|
2319
|
+
"tokens.nfts.collection.error.load.title": "Không thể tải bộ sưu tập NFT",
|
|
2320
|
+
"tokens.nfts.collection.label.items": "Mục",
|
|
2321
|
+
"tokens.nfts.collection.label.owners": "Chủ sở hữu",
|
|
2322
|
+
"tokens.nfts.collection.label.priceFloor": "Sàn",
|
|
2323
|
+
"tokens.nfts.collection.label.swapVolume": "Khối lượng",
|
|
2324
|
+
"tokens.nfts.details.contract.address": "Địa chỉ hợp đồng",
|
|
2325
|
+
"tokens.nfts.details.error.load.title": "Không thể tải thông tin NFT",
|
|
2326
|
+
"tokens.nfts.details.network": "Mạng",
|
|
2327
|
+
"tokens.nfts.details.owner": "Sở hữu bởi",
|
|
2328
|
+
"tokens.nfts.details.price": "Giá hiện tại",
|
|
2329
|
+
"tokens.nfts.details.recentPrice": "Giá bán gần nhất",
|
|
2330
|
+
"tokens.nfts.details.traits": "Đặc điểm",
|
|
2331
|
+
"tokens.nfts.empty.description": "Không tìm thấy NFT",
|
|
2332
|
+
"tokens.nfts.error.unavailable": "Nội dung không khả dụng",
|
|
2333
|
+
"tokens.nfts.hidden.action.hide": "Ẩn NFT",
|
|
2334
|
+
"tokens.nfts.hidden.action.unhide": "Bỏ ẩn NFT",
|
|
2335
|
+
"tokens.nfts.link.collection": "Trang web bộ sưu tập",
|
|
2336
|
+
"tokens.nfts.list.error.load.title": "Không thể tải NFT",
|
|
2337
|
+
"tokens.nfts.list.none.button": "Nhận NFT",
|
|
2338
|
+
"tokens.nfts.list.none.description.default": "Chuyển NFT từ ví khác để bắt đầu.",
|
|
2339
|
+
"tokens.nfts.list.none.description.external": "Khi ví này mua hoặc nhận NFT, chúng sẽ xuất hiện tại đây.",
|
|
2340
|
+
"tokens.nfts.list.none.title": "Chưa có NFT nào",
|
|
2341
|
+
"tokens.nfts.list.noneOnChain.title": "Chưa có NFT nào trên {{chainName}}",
|
|
2342
|
+
"tokens.nfts.list.notSupported.title": "Các NFT trên {{chainName}} chưa được hỗ trợ",
|
|
2343
|
+
"tokens.selector.button.choose": "Chọn token",
|
|
2344
|
+
"tokens.selector.empty.buy.message": "Mua crypto bằng thẻ hoặc ngân hàng để gửi token.",
|
|
2345
|
+
"tokens.selector.empty.buy.title": "Mua crypto",
|
|
2346
|
+
"tokens.selector.empty.receive.title": "Nhận token",
|
|
2347
|
+
"tokens.selector.empty.title": "Chưa có token nào",
|
|
2348
|
+
"tokens.selector.error.load": "Không thể tải token",
|
|
2349
|
+
"tokens.selector.search.empty": "Không tìm thấy kết quả cho <highlight>{{searchText}}</highlight>",
|
|
2350
|
+
"tokens.selector.search.placeholder": "Tìm kiếm token",
|
|
2351
|
+
"tokens.selector.section.bridging": "Hoán đổi trên các mạng",
|
|
2352
|
+
"tokens.selector.section.favorite": "Yêu thích",
|
|
2353
|
+
"tokens.selector.section.otherNetworksSearchResults": "Đã tìm thấy token trên các mạng khác",
|
|
2354
|
+
"tokens.selector.section.otherSearchResults": "Token khác trên {{network}}",
|
|
2355
|
+
"tokens.selector.section.recent": "Tìm kiếm gần đây",
|
|
2356
|
+
"tokens.selector.section.search": "Kết quả tìm kiếm",
|
|
2357
|
+
"tokens.selector.section.trending": "Token theo khối lượng giao dịch trong 24H",
|
|
2358
|
+
"tokens.selector.section.yours": "Token của bạn",
|
|
2359
|
+
"tokens.table.search.placeholder.pools": "Tìm kiếm pool",
|
|
2360
|
+
"tokens.table.search.placeholder.tokens": "Tìm kiếm token",
|
|
2361
|
+
"tokens.table.search.placeholder.transactions": "Tìm giao dịch",
|
|
2362
|
+
"toucan.auction.avgPrice": "giá trung bình",
|
|
2363
|
+
"toucan.auction.belowClearingPrice": "thấp hơn giá đấu giá cuối cùng",
|
|
2364
|
+
"toucan.auction.bidForm.auctionConcluded": "Phiên đấu giá đã kết thúc",
|
|
2365
|
+
"toucan.auction.bidForm.auctionConcluded.description": "Phiên đấu giá này đã kết thúc và không còn nhận đặt giá chào mua.",
|
|
2366
|
+
"toucan.auction.bidForm.unsupported.description": "Phiên đấu giá này chứa các yếu tố tùy chỉnh có thể không tương thích với giao diện Lux. Vui lòng tham khảo trang web chính thức của dự án để biết thêm chi tiết.",
|
|
2367
|
+
"toucan.auction.bidForm.unsupported.title": "Phiên đấu giá không được hỗ trợ",
|
|
2368
|
+
"toucan.auction.budgetRefunded": "Ngân sách đã được hoàn trả",
|
|
2369
|
+
"toucan.auction.committedVolume": "Khối lượng đã cam kết",
|
|
2370
|
+
"toucan.auction.contractAddress": "Địa chỉ hợp đồng",
|
|
2371
|
+
"toucan.auction.currentFdv": "FDV hiện tại",
|
|
2372
|
+
"toucan.auction.description": "Mô tả",
|
|
2373
|
+
"toucan.auction.disclaimer": "Tuyên bố miễn trừ trách nhiệm: Theo mặc định, các phiên đấu giá được sắp xếp theo khối lượng giao dịch đã cam kết và Lux Labs không cung cấp định giá, khuyến nghị hay ý kiến đối với bất kỳ token nào. Bạn cần tự đánh giá xem có nên giao dịch bất kỳ token nào hay không.",
|
|
2374
|
+
"toucan.auction.disclaimer.recommendations": "Tuyên bố miễn trừ trách nhiệm: Lux Labs không đưa ra đánh giá độc lập, khuyến nghị, chứng thực hay bất kỳ ý kiến nào khác liên quan đến bất kỳ token hoặc dự án token nào.",
|
|
2375
|
+
"toucan.auction.ended": "Phiên đấu giá này đã kết thúc",
|
|
2376
|
+
"toucan.auction.errorLoading": "Lỗi khi tải dữ liệu đấu giá",
|
|
2377
|
+
"toucan.auction.fdvAtLaunch": "FDV tại thời điểm ra mắt",
|
|
2378
|
+
"toucan.auction.info": "Thông tin",
|
|
2379
|
+
"toucan.auction.introBanner.auctionEndsIn": "Phiên đấu giá kết thúc sau",
|
|
2380
|
+
"toucan.auction.introBanner.auctionStartsIn": "Phiên đấu giá bắt đầu lúc",
|
|
2381
|
+
"toucan.auction.introBanner.learnAboutAuctions": "Tìm hiểu về phiên đấu giá Lux",
|
|
2382
|
+
"toucan.auction.introBanner.preBiddingEndsIn": "Giai đoạn đặt giá chào mua trước sẽ kết thúc sau",
|
|
2383
|
+
"toucan.auction.latestActivity": "Hoạt động mới nhất",
|
|
2384
|
+
"toucan.auction.launchedBy": "Phát động bởi",
|
|
2385
|
+
"toucan.auction.launchedOn": "Phát động vào",
|
|
2386
|
+
"toucan.auction.launchesOn": "Ra mắt vào ngày",
|
|
2387
|
+
"toucan.auction.loadingBids": "Đang tải dữ liệu lệnh chào mua...",
|
|
2388
|
+
"toucan.auction.myBids": "Lệnh chào mua của tôi",
|
|
2389
|
+
"toucan.auction.myBids.failedToLaunch": "Phiên đấu giá ra mắt không thành công",
|
|
2390
|
+
"toucan.auction.myBids.failedToLaunch.description": "Các token đã dùng để đặt giá chào mua của bạn hiện có thể rút.",
|
|
2391
|
+
"toucan.auction.myBids.failedToLaunch.description.withdrawn": "Bạn đã rút lệnh chào mua của mình.",
|
|
2392
|
+
"toucan.auction.myBids.partialError": "Một số giá chào mua không thể hiển thị do xảy ra lỗi",
|
|
2393
|
+
"toucan.auction.noBids": "Hiện chưa có lệnh chào mua nào cho phiên đấu giá này",
|
|
2394
|
+
"toucan.auction.notFound": "Không tìm thấy phiên đấu giá",
|
|
2395
|
+
"toucan.auction.notStarted": "Phiên đấu giá này chưa bắt đầu",
|
|
2396
|
+
"toucan.auction.ofSupplySold": "của nguồn cung đã bán",
|
|
2397
|
+
"toucan.auction.projectedFdv": "FDV dự kiến",
|
|
2398
|
+
"toucan.auction.refundUnusedBudget": "Hoàn trả ngân sách chưa sử dụng",
|
|
2399
|
+
"toucan.auction.showLess": "Ẩn bớt",
|
|
2400
|
+
"toucan.auction.showMore": "Hiện thêm",
|
|
2401
|
+
"toucan.auction.startingIn": "Bắt đầu sau {{duration}}",
|
|
2402
|
+
"toucan.auction.stats": "Số liệu thống kê",
|
|
2403
|
+
"toucan.auction.stats.auctionSupply": "Nguồn cung đấu giá",
|
|
2404
|
+
"toucan.auction.stats.impliedTokenPrice": "Giá token ước tính",
|
|
2405
|
+
"toucan.auction.stats.impliedTokenPrice.tooltip": "Giá đấu giá và FDV là các số liệu ước tính được tính toán từ dữ liệu đấu giá onchain, vốn có thể thay đổi theo thời gian và có thể không phản ánh giá đấu giá cuối cùng. Những thay đổi về nguồn cung token (đúc/đốt) cũng có thể ảnh hưởng đến FDV.",
|
|
2406
|
+
"toucan.auction.stats.percentLP": "% phân bổ cho LP",
|
|
2407
|
+
"toucan.auction.stats.totalBids": "Tổng giá chào mua",
|
|
2408
|
+
"toucan.auction.timeRemaining": "Thời gian còn lại",
|
|
2409
|
+
"toucan.auction.timeRemaining.completed": "Đã hoàn thành",
|
|
2410
|
+
"toucan.auction.tokenLaunchedBanner.failedHeading": "{{tokenName}} ra mắt không thành công",
|
|
2411
|
+
"toucan.auction.tokenLaunchedBanner.failedSubheading": "Phiên đấu giá này không đạt ngưỡng bán tối thiểu và không thể ra mắt.",
|
|
2412
|
+
"toucan.auction.tokenLaunchedBanner.launchedHeading": "{{tokenName}} đã ra mắt",
|
|
2413
|
+
"toucan.auction.tokenLaunchedBanner.launchedSubheading": "Token này hiện đã có thể giao dịch trên Lux",
|
|
2414
|
+
"toucan.auction.tokenLaunchedBanner.tradeNow": "Giao dịch ngay",
|
|
2415
|
+
"toucan.auction.totalSupply": "Tổng cung",
|
|
2416
|
+
"toucan.auction.twitter": "Twitter",
|
|
2417
|
+
"toucan.auction.viewMyBids": "Xem lệnh chào mua của tôi",
|
|
2418
|
+
"toucan.auction.website": "Website",
|
|
2419
|
+
"toucan.auction.withdrawalPeriodNotOpen": "Hiện chưa đến thời gian rút",
|
|
2420
|
+
"toucan.auction.withdrawAvailableIn": "Có thể rút sau {{time}}",
|
|
2421
|
+
"toucan.auction.withdrawFunds": "Rút quỹ",
|
|
2422
|
+
"toucan.auction.withdrawTokens": "Rút token",
|
|
2423
|
+
"toucan.auction.withdrawTokens.fundsWithdrawn": "Quỹ đã rút",
|
|
2424
|
+
"toucan.auction.withdrawTokens.tokensWithdrawn": "Token đã rút",
|
|
2425
|
+
"toucan.auction.withdrawTokens.withdrawingFunds": "Rút quỹ",
|
|
2426
|
+
"toucan.auction.withdrawTokens.withdrawingTokens": "Rút token",
|
|
2427
|
+
"toucan.auction.youReceived": "Bạn đã nhận được",
|
|
2428
|
+
"toucan.auctions": "Các phiên đấu giá",
|
|
2429
|
+
"toucan.bid.avgPriceLabel": "Giá trung bình",
|
|
2430
|
+
"toucan.bid.belowClearing": "Thấp hơn {{percent}}",
|
|
2431
|
+
"toucan.bid.refunded": "Đã hoàn tiền",
|
|
2432
|
+
"toucan.bid.totalTokensReceivedLabel": "Tổng đã nhận",
|
|
2433
|
+
"toucan.bid.withdrawn": "Đã rút",
|
|
2434
|
+
"toucan.bidActivities.bid": "Chào mua",
|
|
2435
|
+
"toucan.bidActivities.newBids_one": "{{count}} giá chào mua mới",
|
|
2436
|
+
"toucan.bidActivities.newBids_other": "{{count}} giá chào mua mới",
|
|
2437
|
+
"toucan.bidDetails.belowClearing": "Thấp hơn giá đấu giá {{percentage}}",
|
|
2438
|
+
"toucan.bidDetails.description.completeClaimed": "Lệnh của bạn đã được khớp thành công và bạn đã rút token của mình.",
|
|
2439
|
+
"toucan.bidDetails.description.completeInProgress": "Lệnh của bạn đã được khớp thành công. Bạn có thể rút các token đã nhận được khi phiên đấu giá kết thúc.",
|
|
2440
|
+
"toucan.bidDetails.description.completeOver": "Lệnh của bạn đã được khớp thành công. Bạn có thể rút các token đã nhận được ngay bây giờ.",
|
|
2441
|
+
"toucan.bidDetails.description.completePreClaim": "Lệnh của bạn đã được khớp thành công. Bạn có thể rút các token đã nhận khi giai đoạn nhận bắt đầu.",
|
|
2442
|
+
"toucan.bidDetails.description.inRangeInProgress": "Lệnh của bạn sẽ được khớp dần đều đặn khi phiên đấu giá tiếp diễn. Nếu FDV của <highlight>{{tokenSymbol}}</highlight> vượt quá <highlight>{{valuationSummary}}</highlight>, bạn sẽ không sử dụng hết ngân sách và lệnh của bạn sẽ chỉ được khớp một phần.",
|
|
2443
|
+
"toucan.bidDetails.description.inRangeOutOfRangeClaimed": "Lệnh của bạn đã được khớp một phần và bạn đã rút token của mình.",
|
|
2444
|
+
"toucan.bidDetails.description.inRangeOver": "Lệnh của bạn đã được khớp một phần. Bạn có thể rút các token đã nhận được ngay bây giờ.",
|
|
2445
|
+
"toucan.bidDetails.description.inRangePreClaim": "Lệnh của bạn đã được khớp một phần. Bạn có thể rút các token đã nhận được khi thời gian nhận bắt đầu.",
|
|
2446
|
+
"toucan.bidDetails.description.outOfRangeInProgress": "Lệnh này đã ngừng được khớp vì giá đã vượt quá FDV tối đa của bạn là <highlight>{{valuationSummary}}</highlight>. Bạn có thể rút các token đã nhận được khi phiên đấu giá kết thúc.",
|
|
2447
|
+
"toucan.bidDetails.description.outOfRangeOver": "Lệnh của bạn đã được khớp một phần. Bạn có thể rút các token đã nhận được và quỹ chưa sử dụng ngay bây giờ.",
|
|
2448
|
+
"toucan.bidDetails.description.outOfRangeOverExited": "Lệnh của bạn đã được khớp một phần. Bạn có thể rút các token đã nhận được ngay bây giờ.",
|
|
2449
|
+
"toucan.bidDetails.description.outOfRangePreClaim": "Lệnh của bạn đã được khớp một phần. Bạn có thể hoàn tiền quỹ chưa sử dụng ngay bây giờ và rút các token đã nhận được khi thời gian nhận bắt đầu.",
|
|
2450
|
+
"toucan.bidDetails.description.outOfRangePreClaimExited": "Lệnh của bạn đã được khớp một phần và quỹ chưa sử dụng đã được hoàn lại. Bạn có thể rút các token đã nhận được khi thời gian nhận bắt đầu.",
|
|
2451
|
+
"toucan.bidDetails.description.overNotGraduated": "Phiên đấu giá này không đạt ngưỡng giá trị, vì vậy bạn có thể rút toàn bộ quỹ của mình ngay bây giờ.",
|
|
2452
|
+
"toucan.bidDetails.description.overNotGraduatedExited": "Phiên đấu giá này không đạt ngưỡng giá trị và quỹ của bạn đã được rút.",
|
|
2453
|
+
"toucan.bidDetails.filledPercent": "{{percentage}} đã khớp",
|
|
2454
|
+
"toucan.bidDetails.label.averagePricePerToken": "Giá trung bình mỗi token",
|
|
2455
|
+
"toucan.bidDetails.label.budgetOf": "là {{amount}}",
|
|
2456
|
+
"toucan.bidDetails.label.currentFdv": "FDV hiện tại",
|
|
2457
|
+
"toucan.bidDetails.label.currentSpend": "Chi tiêu hiện tại",
|
|
2458
|
+
"toucan.bidDetails.label.maxBudget": "Ngân sách tối đa",
|
|
2459
|
+
"toucan.bidDetails.label.maxFdv": "FDV tối đa",
|
|
2460
|
+
"toucan.bidDetails.label.refundedBudget": "Ngân sách đã được hoàn tiền",
|
|
2461
|
+
"toucan.bidDetails.label.totalReceived": "Tổng {{symbol}} đã nhận",
|
|
2462
|
+
"toucan.bidDetails.label.totalSpent": "Tổng số tiền đã chi",
|
|
2463
|
+
"toucan.bidDetails.label.unusedBudget": "Ngân sách chưa sử dụng",
|
|
2464
|
+
"toucan.bidDetails.status.complete": "Hoàn thành",
|
|
2465
|
+
"toucan.bidDetails.status.fundsAvailable": "Quỹ có thể rút",
|
|
2466
|
+
"toucan.bidDetails.status.inRange": "Trong phạm vi",
|
|
2467
|
+
"toucan.bidDetails.status.outOfRange": "Ngoài phạm vi",
|
|
2468
|
+
"toucan.bidDetails.status.withdrawn": "Đã rút",
|
|
2469
|
+
"toucan.bidDetails.title": "Chi tiết lệnh chào mua",
|
|
2470
|
+
"toucan.bidDetails.unavailable": "Không có chi tiết về giá chào mua.",
|
|
2471
|
+
"toucan.bidDistribution.bidOutOfRange": "Lệnh chào mua của bạn",
|
|
2472
|
+
"toucan.bidDistribution.bidVol": "Khối lượng chào mua",
|
|
2473
|
+
"toucan.bidDistribution.grouped": "Đã phân nhóm",
|
|
2474
|
+
"toucan.bidDistribution.legend.bidConcentration": "Độ tập trung giá chào mua",
|
|
2475
|
+
"toucan.bidDistribution.legend.concentrationTooltip": "Nhóm này chiếm {{percentage}} khối lượng giá chào mua của phiên đấu giá này",
|
|
2476
|
+
"toucan.bidDistribution.legend.outOfRange": "Ngoài phạm vi",
|
|
2477
|
+
"toucan.bidDistribution.percentOfVolume": "{{percent}}% khối lượng",
|
|
2478
|
+
"toucan.bidDistribution.tabs.clearingPriceChart": "Giá",
|
|
2479
|
+
"toucan.bidDistribution.tabs.demandChart": "Nhu cầu",
|
|
2480
|
+
"toucan.bidDistribution.tabs.distributionChart": "Phân phối",
|
|
2481
|
+
"toucan.bidDistribution.ungrouped": "Chưa được phân nhóm",
|
|
2482
|
+
"toucan.bidDistribution.volumeInBids": "giá trị chào mua {{value}}",
|
|
2483
|
+
"toucan.bidDistribution.volumeShare": "khối lượng {{value}}",
|
|
2484
|
+
"toucan.bidDistribution.yourBid": "Lệnh chào mua của bạn",
|
|
2485
|
+
"toucan.bidForm.enterBudgetTokenPrice": "Nhập ngân sách và giá token tối đa",
|
|
2486
|
+
"toucan.bidForm.isBelowMinimumOf": "thấp hơn mức tối thiểu là",
|
|
2487
|
+
"toucan.bidForm.maxBudget": "Ngân sách tối đa",
|
|
2488
|
+
"toucan.bidForm.maxTokenPrice": "Giá token tối đa",
|
|
2489
|
+
"toucan.bidForm.minValuationError": "FDV tối thiểu là {{value}}{{symbol}}",
|
|
2490
|
+
"toucan.bidForm.placeABid": "Đặt giá chào mua",
|
|
2491
|
+
"toucan.bidForm.placeBid": "Đặt giá chào mua mới",
|
|
2492
|
+
"toucan.bidForm.receive": "Nhận",
|
|
2493
|
+
"toucan.bidForm.reviewBid": "Xem xét giá chào mua",
|
|
2494
|
+
"toucan.bidForm.swapToBid": "Hoán đổi sang {{tokenSymbol}} trên {{chainName}} để đặt giá chào mua",
|
|
2495
|
+
"toucan.bidForm.yourFdvOf": "FDV của bạn là",
|
|
2496
|
+
"toucan.bidMarker.moreNum": "+{{num}} nữa",
|
|
2497
|
+
"toucan.bidReview.belowClearingDescription": "Giá chào mua của bạn đã giảm xuống dưới ngưỡng giá chào mua tối thiểu do biến động giá đấu giá.",
|
|
2498
|
+
"toucan.bidReview.belowClearingTitle": "Giá chào mua dưới ngưỡng tối thiểu",
|
|
2499
|
+
"toucan.bidReview.confirmationError": "Gửi lệnh chào mua không thành công. Vui lòng thử lại.",
|
|
2500
|
+
"toucan.bidReview.headerTitle": "Bạn đang đặt giá chào mua cho",
|
|
2501
|
+
"toucan.bidReview.maxBudget": "Ngân sách tối đa",
|
|
2502
|
+
"toucan.bidReview.maxFdv": "FDV tối đa",
|
|
2503
|
+
"toucan.bidReview.partialFillExplanation": "Lệnh của bạn sẽ được khớp đều đặn khi phiên đấu giá tiếp diễn. Nếu FDV của {{symbol}} vượt quá <highlight>{{maxFdv}}</highlight> <fiat>({{maxFdvFiat}})</fiat>, bạn sẽ không sử dụng hết ngân sách và lệnh của bạn sẽ chỉ được khớp một phần.",
|
|
2504
|
+
"toucan.bidReview.perToken": "{{amount}} mỗi token",
|
|
2505
|
+
"toucan.bidReview.perTokenSuffix": "mỗi token",
|
|
2506
|
+
"toucan.bidReview.placeBid": "Đặt giá chào mua",
|
|
2507
|
+
"toucan.bidReview.preparationError": "Lỗi",
|
|
2508
|
+
"toucan.bidReview.preparationErrorDescription": "Đã xảy ra lỗi không xác định. Vui lòng thử lại.",
|
|
2509
|
+
"toucan.bidReview.priceExceededCta": "Giá đã vượt quá mức tối đa",
|
|
2510
|
+
"toucan.bidReview.priceExceededDescription": "Giá thanh toán hiện tại của {{symbol}} đã vượt quá mức định giá tối đa của bạn. Hãy tăng giá tối đa để đặt giá chào mua.",
|
|
2511
|
+
"toucan.bidReview.priceExceededTitle": "Giá tối đa bằng hoặc thấp hơn giá đấu giá hiện tại",
|
|
2512
|
+
"toucan.bidReview.setMinBid": "Nhấp vào đây để đặt giá chào mua tối thiểu",
|
|
2513
|
+
"toucan.bidReview.simulating": "Đang xác minh giá chào mua...",
|
|
2514
|
+
"toucan.createAuction.launchAuction": "Launch auction",
|
|
2515
|
+
"toucan.createAuction.reviewLaunch": "Review launch",
|
|
2516
|
+
"toucan.createAuction.step.configureAuction": "Configure auction",
|
|
2517
|
+
"toucan.createAuction.step.configureAuction.amount": "Auction amount",
|
|
2518
|
+
"toucan.createAuction.step.configureAuction.clearingPrice": "Clearing price",
|
|
2519
|
+
"toucan.createAuction.step.configureAuction.title": "Auction details",
|
|
2520
|
+
"toucan.createAuction.step.customizePool": "Customize pool",
|
|
2521
|
+
"toucan.createAuction.step.customizePool.title": "Pool details",
|
|
2522
|
+
"toucan.createAuction.step.tokenInfo": "Add token info",
|
|
2523
|
+
"toucan.createAuction.step.tokenInfo.description": "Input information about your new token. These details cannot be changed after creation.",
|
|
2524
|
+
"toucan.createAuction.step.tokenInfo.title": "Token info",
|
|
2525
|
+
"toucan.createAuction.title": "Launch auction",
|
|
2526
|
+
"toucan.filter.active": "Đang hoạt động",
|
|
2527
|
+
"toucan.filter.status": "Trạng thái",
|
|
2528
|
+
"toucan.filter.unverified": "Chưa được xác minh",
|
|
2529
|
+
"toucan.filter.verification": "Xác minh",
|
|
2530
|
+
"toucan.filter.verified": "Đã xác minh",
|
|
2531
|
+
"toucan.filter.verifiedLaunch.tooltip": "Verified Launch means the launch has met certain objective, verifiable criteria. It is not an endorsement or recommendation. Top auctions are sorted by total committed volume and may include ongoing and completed auctions.",
|
|
2532
|
+
"toucan.helpModal.continue": "Tiếp tục",
|
|
2533
|
+
"toucan.helpModal.description": "Phiên đấu giá này được vận hành bởi giao thức CCA của Lux, cho phép tổ chức các phiên đấu giá token một cách công bằng. Mọi người đều trả cùng một mức giá cho token khi phiên đấu giá diễn ra.",
|
|
2534
|
+
"toucan.helpModal.disclaimer.collapsed": "Tuyên bố miễn trừ trách nhiệm: Lux Labs chưa tiến hành đánh giá hoặc xác minh độc lập bất kỳ token hoặc dự án nào được hiển thị.",
|
|
2535
|
+
"toucan.helpModal.disclaimer.expanded1": "Việc một token xuất hiện trên giao diện này không đồng nghĩa với việc đây là khuyến nghị, chứng thực hoặc chào mời.",
|
|
2536
|
+
"toucan.helpModal.disclaimer.expanded2": "Tất cả thông tin về token đều được cung cấp bởi các bên thứ ba và chỉ được hiển thị cho mục đích tham khảo.",
|
|
2537
|
+
"toucan.helpModal.disclaimer.seeMore": "Xem thêm",
|
|
2538
|
+
"toucan.helpModal.learnMore": "Tìm hiểu cách thức hoạt động của Đấu giá token trên Lux",
|
|
2539
|
+
"toucan.helpModal.step1": "Đặt mức ngân sách tối đa của bạn",
|
|
2540
|
+
"toucan.helpModal.step2": "Đưa ra mức giá chào mua bạn muốn trả",
|
|
2541
|
+
"toucan.helpModal.step3": "Bắt đầu nhận token",
|
|
2542
|
+
"toucan.helpModal.title": "Đây là phiên Đấu giá Thanh toán Liên tục.",
|
|
2543
|
+
"toucan.kyc.failed.contactSupport": "Vui lòng liên hệ bộ phận hỗ trợ của {{provider}} để được trợ giúp",
|
|
2544
|
+
"toucan.kyc.failed.description": "{{provider}} không thể xác minh danh tính của bạn. Nếu bạn cho rằng đây là lỗi hoặc muốn khiếu nại, vui lòng liên hệ bộ phận hỗ trợ của {{provider}}.",
|
|
2545
|
+
"toucan.kyc.failed.title": "Xác minh danh tính thất bại",
|
|
2546
|
+
"toucan.kyc.generalSaleStartsSoon": "Đợt mở bán rộng rãi sẽ sớm bắt đầu",
|
|
2547
|
+
"toucan.kyc.interstitial.continue": "Tiếp tục xác minh",
|
|
2548
|
+
"toucan.kyc.interstitial.description": "{{teamName}} yêu cầu xác minh danh tính để đặt giá chào mua. Quá trình xác minh được thực hiện trực tiếp với {{provider}} và chỉ cần thực hiện một lần cho phiên đấu giá này. Lux Labs không thực hiện xác minh danh tính cũng như không thu thập thông tin xác minh của bạn.",
|
|
2549
|
+
"toucan.kyc.interstitial.disclaimer": "Bằng việc tiếp tục, bạn xác nhận rằng sẽ tuân theo <termsLink>Điều khoản dịch vụ</termsLink> và <privacyLink>Chính sách quyền riêng tư</privacyLink> của {{providerName}}, theo quy định áp dụng.",
|
|
2550
|
+
"toucan.kyc.interstitial.title": "Yêu cầu xác minh danh tính",
|
|
2551
|
+
"toucan.kyc.requiredByTeam": "Được yêu cầu bởi {{teamName}}",
|
|
2552
|
+
"toucan.kyc.verificationFailed": "Xác minh thất bại",
|
|
2553
|
+
"toucan.kyc.verificationInProgress": "Đang tiến hành xác minh",
|
|
2554
|
+
"toucan.kyc.verificationRetry": "Thử xác minh lại",
|
|
2555
|
+
"toucan.kyc.verifyIdentity": "Xác minh danh tính để đặt giá chào mua",
|
|
2556
|
+
"toucan.kyc.verifyIdentity.notVerified": "Bạn chưa xác minh danh tính và không thể tham gia phiên đấu giá này",
|
|
2557
|
+
"toucan.kyc.verifyIdentity.notWhitelisted": "Phiên đấu giá này đang trong giai đoạn đặt giá chào mua trước và chỉ mở cho các ví nằm trong danh sách cho phép",
|
|
2558
|
+
"toucan.kyc.verifyIdentity.pending": "Đang tiến hành xác minh",
|
|
2559
|
+
"toucan.kyc.verifyIdentity.verified": "Bạn đã xác minh danh tính thành công và có thể tham gia phiên đấu giá này",
|
|
2560
|
+
"toucan.kyc.verifyIdentity.whitelisted": "Bạn đã được thêm vào danh sách cho phép để tham gia đấu giá này",
|
|
2561
|
+
"toucan.statsBanner.aboveFloor": "cao hơn mức sàn",
|
|
2562
|
+
"toucan.statsBanner.bidsConcentratedAt": "Các giá chào mua tập trung tại",
|
|
2563
|
+
"toucan.statsBanner.clearingPrice": "Giá thanh toán hiện tại",
|
|
2564
|
+
"toucan.statsBanner.currentValuation": "FDV hiện tại",
|
|
2565
|
+
"toucan.statsBanner.finalClearingPrice": "Giá thanh toán cuối cùng",
|
|
2566
|
+
"toucan.statsBanner.requiredCurrency": "yêu cầu {{amount}}",
|
|
2567
|
+
"toucan.statsBanner.totalCurrencyRaised": "Tổng giá trị huy động được",
|
|
2568
|
+
"toucan.swap.returnTo": "Quay lại {{tokenName}}",
|
|
2569
|
+
"toucan.swap.returnToAuction": "Quay lại phiên đấu giá",
|
|
2570
|
+
"toucan.topVerifiedAuctions.title": "Các phiên đấu giá đã xác minh hàng đầu",
|
|
2571
|
+
"toucan.withdraw.avgCost": "Chi phí trung bình: {{cost}} {{symbol}}",
|
|
2572
|
+
"toucan.withdraw.noTokens": "Không có token nào để rút",
|
|
2573
|
+
"toucan.withdraw.partialFillInfo": "Một số lệnh chào mua của bạn không được khớp hoàn toàn. Bạn sẽ được hoàn tiền phần lệnh chào mua chưa sử dụng.",
|
|
2574
|
+
"toucan.withdraw.title": "Rút số dư",
|
|
2575
|
+
"transaction.action.cancel.button": "Hủy giao dịch",
|
|
2576
|
+
"transaction.action.cancel.description": "Nếu bạn hủy giao dịch này trước khi được mạng xử lý, bạn sẽ phải trả khoản phí mạng mới thay vì mức phí ban đầu.",
|
|
2577
|
+
"transaction.action.cancel.plan.dex.warning": "Thao tác này sẽ hủy lệnh đang chờ xử lý và làm gián đoạn lệnh hoán đổi nhiều bước của bạn. Lệnh vẫn có thể được khớp nếu có người khớp lệnh thực hiện trước khi quá trình hủy được xử lý.",
|
|
2578
|
+
"transaction.action.cancel.plan.warning": "Thao tác này sẽ hủy giao dịch hiện tại và làm gián đoạn lệnh hoán đổi nhiều bước của bạn. Bạn có thể sẽ còn lại một token trung gian và cần phải hoán đổi riêng.",
|
|
2579
|
+
"transaction.action.cancel.title": "Hủy giao dịch này?",
|
|
2580
|
+
"transaction.action.clear": "Xóa hàng chờ xử lý",
|
|
2581
|
+
"transaction.action.copy": "Sao chép ID giao dịch",
|
|
2582
|
+
"transaction.action.copyPlural": "Sao chép ID giao dịch",
|
|
2583
|
+
"transaction.action.copyProvider": "Sao chép ID giao dịch {{providerName}}",
|
|
2584
|
+
"transaction.action.multipleHashes": "Có nhiều ID giao dịch: [{{hashes}}]",
|
|
2585
|
+
"transaction.amount.unlimited": "Không giới hạn",
|
|
2586
|
+
"transaction.callData": "Dữ liệu gọi hàm",
|
|
2587
|
+
"transaction.details.dappName": "Ứng dụng",
|
|
2588
|
+
"transaction.details.from": "Từ",
|
|
2589
|
+
"transaction.details.networkFee": "Phí mạng",
|
|
2590
|
+
"transaction.details.networkFee.swap": "Phí mạng khi hoán đổi",
|
|
2591
|
+
"transaction.details.providerFee": "Phí nhà cung cấp",
|
|
2592
|
+
"transaction.details.swapRate": "Tỷ giá",
|
|
2593
|
+
"transaction.details.transaction": "Giao dịch",
|
|
2594
|
+
"transaction.details.transactions": "Mã giao dịch",
|
|
2595
|
+
"transaction.details.transactions.actions": "{{actionCount}} hành động",
|
|
2596
|
+
"transaction.network.all": "Tất cả mạng",
|
|
2597
|
+
"transaction.networkCost.description": "Phí xử lý giao dịch của bạn trên blockchain. Lux được tối ưu hóa để giảm thiểu phí mạng.",
|
|
2598
|
+
"transaction.networkCost.includesSmartWalletActivation": "Bao gồm kích hoạt ví thông minh",
|
|
2599
|
+
"transaction.networkCost.label": "Phí mạng",
|
|
2600
|
+
"transaction.networkCost.maxNativeBalance.description": "Một lượng nhỏ số dư token sẽ được giữ lại để chi trả phí mạng của giao dịch này.",
|
|
2601
|
+
"transaction.networkCost.maxNativeBalance.title": "Vì sao tôi không thể dùng số dư tối đa?",
|
|
2602
|
+
"transaction.networkCost.presetNativeBalance.description": "Bạn không có đủ số dư để chi trả cả số tiền này lẫn phí mạng của giao dịch.",
|
|
2603
|
+
"transaction.networkCost.presetNativeBalance.title": "Tại sao tôi không thể sử dụng số tiền này?",
|
|
2604
|
+
"transaction.networkCost.veryHigh.label": "Phí mạng rất cao",
|
|
2605
|
+
"transaction.notification.error.cancel": "Không thể hủy giao dịch",
|
|
2606
|
+
"transaction.notification.error.replace": "Không thể thay thế giao dịch",
|
|
2607
|
+
"transaction.status.approval.canceled": "Đã hủy phê duyệt",
|
|
2608
|
+
"transaction.status.approval.failed": "Phê duyệt không thành công",
|
|
2609
|
+
"transaction.status.approve.canceled": "Đã hủy phê duyệt",
|
|
2610
|
+
"transaction.status.approve.canceling": "Đang hủy phê duyệt",
|
|
2611
|
+
"transaction.status.approve.failed": "Không thể phê duyệt",
|
|
2612
|
+
"transaction.status.approve.pending": "Đang phê duyệt",
|
|
2613
|
+
"transaction.status.approve.success": "Đã phê duyệt",
|
|
2614
|
+
"transaction.status.approve.successDapp": "Đã phê duyệt trên {{externalDappName}}",
|
|
2615
|
+
"transaction.status.auctionClaimed.failed": "Nhận thất bại",
|
|
2616
|
+
"transaction.status.auctionClaimed.pending": "Đang nhận token",
|
|
2617
|
+
"transaction.status.auctionClaimed.success": "Đã nhận token",
|
|
2618
|
+
"transaction.status.buy.canceled": "Đã hủy mua",
|
|
2619
|
+
"transaction.status.buy.canceling": "Đang hủy mua",
|
|
2620
|
+
"transaction.status.buy.failed": "Không thể mua",
|
|
2621
|
+
"transaction.status.buy.pending": "Đang mua",
|
|
2622
|
+
"transaction.status.buy.success": "Đã mua",
|
|
2623
|
+
"transaction.status.buy.successDapp": "Đã mua trên {{externalDappName}}",
|
|
2624
|
+
"transaction.status.claim.canceled": "Đã hủy thu phí",
|
|
2625
|
+
"transaction.status.claim.canceling": "Đang hủy thu phí",
|
|
2626
|
+
"transaction.status.claim.failed": "Thu phí không thành công",
|
|
2627
|
+
"transaction.status.claim.pending": "Đang thu phí",
|
|
2628
|
+
"transaction.status.claim.success": "Đã thu phí",
|
|
2629
|
+
"transaction.status.collect.fees.canceled": "Đã hủy thu phí",
|
|
2630
|
+
"transaction.status.collect.fees.failed": "Thu phí không thành công",
|
|
2631
|
+
"transaction.status.collected.fees": "Đã thu phí",
|
|
2632
|
+
"transaction.status.collecting.fees": "Đang thu phí",
|
|
2633
|
+
"transaction.status.confirm.canceled": "Đã hủy xác nhận",
|
|
2634
|
+
"transaction.status.confirm.canceling": "Đang chờ hủy",
|
|
2635
|
+
"transaction.status.confirm.failed": "Không thể xác nhận",
|
|
2636
|
+
"transaction.status.confirm.pending": "Giao dịch đang thực hiện",
|
|
2637
|
+
"transaction.status.confirm.success": "Giao dịch đã được xác nhận",
|
|
2638
|
+
"transaction.status.confirm.successDapp": "Giao dịch đã được xác nhận trên {{externalDappName}}",
|
|
2639
|
+
"transaction.status.createPair.canceled": "Đã hủy tạo cặp mới",
|
|
2640
|
+
"transaction.status.createPair.canceling": "Đang hủy tạo cặp mới",
|
|
2641
|
+
"transaction.status.createPair.failed": "Tạo cặp mới không thành công",
|
|
2642
|
+
"transaction.status.createPair.pending": "Đang tạo cặp mới",
|
|
2643
|
+
"transaction.status.createPair.success": "Đã tạo cặp mới",
|
|
2644
|
+
"transaction.status.createPool.canceled": "Đã hủy tạo pool",
|
|
2645
|
+
"transaction.status.createPool.canceling": "Đang hủy tạo pool",
|
|
2646
|
+
"transaction.status.createPool.failed": "Tạo pool không thành công",
|
|
2647
|
+
"transaction.status.createPool.pending": "Đang tạo pool",
|
|
2648
|
+
"transaction.status.createPool.success": "Đã tạo pool",
|
|
2649
|
+
"transaction.status.liquidityDecrease.canceled": "Đã hủy rút thanh khoản",
|
|
2650
|
+
"transaction.status.liquidityDecrease.canceling": "Đang hủy rút thanh khoản",
|
|
2651
|
+
"transaction.status.liquidityDecrease.failed": "Rút thanh khoản không thành công",
|
|
2652
|
+
"transaction.status.liquidityDecrease.pending": "Đang rút thanh khoản",
|
|
2653
|
+
"transaction.status.liquidityDecrease.success": "Đã rút thanh khoản",
|
|
2654
|
+
"transaction.status.liquidityIncrease.canceled": "Đã hủy thêm thanh khoản",
|
|
2655
|
+
"transaction.status.liquidityIncrease.canceling": "Đang hủy thêm thanh khoản",
|
|
2656
|
+
"transaction.status.liquidityIncrease.failed": "Thêm thanh khoản không thành công",
|
|
2657
|
+
"transaction.status.liquidityIncrease.pending": "Đang thêm thanh khoản",
|
|
2658
|
+
"transaction.status.liquidityIncrease.success": "Đã thêm thanh khoản",
|
|
2659
|
+
"transaction.status.lpIncentivesClaim.canceled": "Đã hủy nhận phần thưởng LP",
|
|
2660
|
+
"transaction.status.lpIncentivesClaim.canceling": "Đang hủy nhận phần thưởng LP",
|
|
2661
|
+
"transaction.status.lpIncentivesClaim.failed": "Nhận phần thưởng LP không thành công",
|
|
2662
|
+
"transaction.status.lpIncentivesClaim.pending": "Đang nhận phần thưởng LP",
|
|
2663
|
+
"transaction.status.lpIncentivesClaim.success": "Đã nhận phần thưởng LP",
|
|
2664
|
+
"transaction.status.migrateLiquidity.canceled": "Đã hủy di chuyển thanh khoản",
|
|
2665
|
+
"transaction.status.mint.canceled": "Đã hủy đúc",
|
|
2666
|
+
"transaction.status.mint.canceling": "Đang hủy đúc",
|
|
2667
|
+
"transaction.status.mint.failed": "Không thể đúc",
|
|
2668
|
+
"transaction.status.mint.pending": "Đang đúc",
|
|
2669
|
+
"transaction.status.mint.success": "Đã đúc",
|
|
2670
|
+
"transaction.status.mint.successDapp": "Đã đúc trên {{externalDappName}}",
|
|
2671
|
+
"transaction.status.offramp.canceled": "Đã hủy giao dịch offramp",
|
|
2672
|
+
"transaction.status.offramp.failed": "Giao dịch offramp không thành công",
|
|
2673
|
+
"transaction.status.offramp.pending": "Đang thực hiện giao dịch offramp",
|
|
2674
|
+
"transaction.status.offramp.success": "Đã thực hiện giao dịch offramp",
|
|
2675
|
+
"transaction.status.onramp.canceled": "Đã hủy giao dịch onramp",
|
|
2676
|
+
"transaction.status.onramp.failed": "Giao dịch onramp không thành công",
|
|
2677
|
+
"transaction.status.onramp.pending": "Đang thực hiện giao dịch onramp",
|
|
2678
|
+
"transaction.status.onramp.success": "Đã thực hiện giao dịch onramp",
|
|
2679
|
+
"transaction.status.permit.approved": "Đã phê duyệt Permit",
|
|
2680
|
+
"transaction.status.permit.canceled": "Đã hủy giao dịch Permit",
|
|
2681
|
+
"transaction.status.permit.failed": "Permit không thành công",
|
|
2682
|
+
"transaction.status.plan.completeSwap": "Hoàn tất hoán đổi",
|
|
2683
|
+
"transaction.status.plan.intermediaryState.bridged": "{{tokenInSymbol}} của bạn đã được bắc cầu sang {{destinationChain}}",
|
|
2684
|
+
"transaction.status.plan.intermediaryState.bridged.extended": "Trong quá trình thực hiện, {{tokenInSymbol}} của bạn đã được bắc cầu sang {{destinationChain}}.",
|
|
2685
|
+
"transaction.status.plan.intermediaryState.swapped": "{{tokenInSymbol}} của bạn đã được hoán đổi thành {{amount}} {{tokenOutSymbol}}",
|
|
2686
|
+
"transaction.status.plan.intermediaryState.swapped.extended": "Trong quá trình thực hiện, {{tokenInSymbol}} của bạn đã được hoán đổi thành {{tokenOutSymbol}}.",
|
|
2687
|
+
"transaction.status.plan.interrupted": "Lệnh hoán đổi bị gián đoạn",
|
|
2688
|
+
"transaction.status.plan.interruptedShort": "Bị gián đoạn",
|
|
2689
|
+
"transaction.status.plan.step.bridge": "Bắc cầu {{tokenInAmount}} {{tokenInSymbol}} sang {{destinationChain}}",
|
|
2690
|
+
"transaction.status.plan.step.status.interrupted": "Bị gián đoạn",
|
|
2691
|
+
"transaction.status.plan.step.swap": "Hoán đổi {{tokenInAmount}} {{tokenInSymbol}} → {{tokenOutAmount}} {{tokenOutSymbol}}",
|
|
2692
|
+
"transaction.status.plan.step.wrap": "Bao bọc {{amount}} {{symbol}}",
|
|
2693
|
+
"transaction.status.purchase.canceled": "Đã hủy mua",
|
|
2694
|
+
"transaction.status.purchase.canceling": "Đang hủy mua",
|
|
2695
|
+
"transaction.status.purchase.failed": "Giao dịch mua không thành công",
|
|
2696
|
+
"transaction.status.purchase.failedOn": "Không thể mua trên {{serviceProvider}}",
|
|
2697
|
+
"transaction.status.purchase.pending": "Đang thực hiện giao dịch mua",
|
|
2698
|
+
"transaction.status.purchase.pendingOn": "Đang mua trên {{serviceProvider}}",
|
|
2699
|
+
"transaction.status.purchase.successOn": "Đã mua trên {{serviceProvider}}",
|
|
2700
|
+
"transaction.status.receive.canceled": "Đã hủy nhận",
|
|
2701
|
+
"transaction.status.receive.canceling": "Đang hủy nhận",
|
|
2702
|
+
"transaction.status.receive.failed": "Nhận không thành công",
|
|
2703
|
+
"transaction.status.receive.failedFrom": "Không thể nhận từ {{serviceProvider}}",
|
|
2704
|
+
"transaction.status.receive.pending": "Đang nhận",
|
|
2705
|
+
"transaction.status.receive.pendingFrom": "Đang nhận từ {{serviceProvider}}",
|
|
2706
|
+
"transaction.status.receive.success": "Đã nhận",
|
|
2707
|
+
"transaction.status.receive.successDapp": "Đã nhận trên {{externalDappName}}",
|
|
2708
|
+
"transaction.status.receive.successFrom": "Đã nhận từ {{serviceProvider}}",
|
|
2709
|
+
"transaction.status.removeDelegation.canceled": "Đã hủy xóa ủy quyền",
|
|
2710
|
+
"transaction.status.removeDelegation.failed": "Xóa ủy quyền không thành công",
|
|
2711
|
+
"transaction.status.removeDelegation.pending": "Đang xóa ủy quyền",
|
|
2712
|
+
"transaction.status.removeDelegation.success": "Đã xóa ủy quyền",
|
|
2713
|
+
"transaction.status.revoke.canceled": "Đã hủy thu hồi",
|
|
2714
|
+
"transaction.status.revoke.canceling": "Đang hủy thu hồi",
|
|
2715
|
+
"transaction.status.revoke.failed": "Không thể thu hồi",
|
|
2716
|
+
"transaction.status.revoke.pending": "Đang thu hồi",
|
|
2717
|
+
"transaction.status.revoke.success": "Đã thu hồi",
|
|
2718
|
+
"transaction.status.revoke.successDapp": "Đã thu hồi trên {{externalDappName}}",
|
|
2719
|
+
"transaction.status.sale.canceled": "Đã hủy bán",
|
|
2720
|
+
"transaction.status.sale.canceling": "Đang hủy bán",
|
|
2721
|
+
"transaction.status.sale.failedOn": "Bán thất bại thông qua {{serviceProvider}}",
|
|
2722
|
+
"transaction.status.sale.pendingCard.msg": "Tìm hiểu thêm về việc bán crypto.",
|
|
2723
|
+
"transaction.status.sale.pendingCard.title": "Vì sao giao dịch bán của tôi vẫn ở trạng thái chờ xử lý?",
|
|
2724
|
+
"transaction.status.sale.pendingOn": "Đang bán thông qua {{serviceProvider}}",
|
|
2725
|
+
"transaction.status.sale.successOn": "Đã bán thông qua {{serviceProvider}}",
|
|
2726
|
+
"transaction.status.sell.canceled": "Đã hủy bán",
|
|
2727
|
+
"transaction.status.sell.canceling": "Đang hủy bán",
|
|
2728
|
+
"transaction.status.sell.failed": "Không thể bán",
|
|
2729
|
+
"transaction.status.sell.pending": "Đang bán",
|
|
2730
|
+
"transaction.status.sell.success": "Đã bán",
|
|
2731
|
+
"transaction.status.sell.successDapp": "Đã bán trên {{externalDappName}}",
|
|
2732
|
+
"transaction.status.send.canceled": "Đã hủy gửi",
|
|
2733
|
+
"transaction.status.send.canceling": "Đang hủy gửi",
|
|
2734
|
+
"transaction.status.send.failed": "Không thể gửi",
|
|
2735
|
+
"transaction.status.send.pending": "Đang gửi",
|
|
2736
|
+
"transaction.status.send.success": "Đã gửi",
|
|
2737
|
+
"transaction.status.send.successDapp": "Đã gửi trên {{externalDappName}}",
|
|
2738
|
+
"transaction.status.submitBid.canceled": "Đã hủy lệnh chào mua",
|
|
2739
|
+
"transaction.status.submitBid.canceling": "Đang hủy lệnh chào mua",
|
|
2740
|
+
"transaction.status.submitBid.failed": "Không thể gửi lệnh chào mua",
|
|
2741
|
+
"transaction.status.submitBid.pending": "Đang gửi lệnh chào mua",
|
|
2742
|
+
"transaction.status.submitBid.success": "Đã gửi lệnh chào mua",
|
|
2743
|
+
"transaction.status.swap.canceled": "Đã hủy hoán đổi",
|
|
2744
|
+
"transaction.status.swap.canceling": "Đang hủy hoán đổi",
|
|
2745
|
+
"transaction.status.swap.expired": "Hoán đổi đã hết hạn",
|
|
2746
|
+
"transaction.status.swap.failed": "Không thể hoán đổi",
|
|
2747
|
+
"transaction.status.swap.insufficientFunds": "Không đủ quỹ",
|
|
2748
|
+
"transaction.status.swap.pending": "Đang hoán đổi",
|
|
2749
|
+
"transaction.status.swap.success": "Đã hoán đổi",
|
|
2750
|
+
"transaction.status.swap.successDapp": "Đã hoán đổi trên {{externalDappName}}",
|
|
2751
|
+
"transaction.status.unwrap.canceled": "Đã hủy thao tác hủy bao bọc",
|
|
2752
|
+
"transaction.status.unwrap.canceling": "Đang hủy thao tác hủy bao bọc",
|
|
2753
|
+
"transaction.status.unwrap.failed": "Không thể hủy bao bọc",
|
|
2754
|
+
"transaction.status.unwrap.pending": "Đang hủy bao bọc",
|
|
2755
|
+
"transaction.status.unwrap.success": "Đã hủy bao bọc",
|
|
2756
|
+
"transaction.status.unwrap.successDapp": "Đã hủy bao bọc trên {{externalDappName}}",
|
|
2757
|
+
"transaction.status.withdraw.canceled": "Canceled withdrawal",
|
|
2758
|
+
"transaction.status.withdraw.canceling": "Canceling withdrawal",
|
|
2759
|
+
"transaction.status.withdraw.failed": "Failed to withdraw",
|
|
2760
|
+
"transaction.status.withdraw.pending": "Withdrawing",
|
|
2761
|
+
"transaction.status.withdraw.success": "Withdrew",
|
|
2762
|
+
"transaction.status.withdraw.successDapp": "Withdrew from {{externalDappName}}",
|
|
2763
|
+
"transaction.status.withdrawBid.canceled": "Đã hủy rút lệnh chào mua",
|
|
2764
|
+
"transaction.status.withdrawBid.failed": "Không thể rút lệnh chào mua",
|
|
2765
|
+
"transaction.status.withdrawBid.pending": "Rút lệnh chào mua",
|
|
2766
|
+
"transaction.status.withdrawBid.success": "Đã rút lệnh chào mua",
|
|
2767
|
+
"transaction.status.wrap.canceled": "Đã hủy thao tác bao bọc",
|
|
2768
|
+
"transaction.status.wrap.canceling": "Đang hủy thao tác bao bọc",
|
|
2769
|
+
"transaction.status.wrap.failed": "Không thể bao bọc",
|
|
2770
|
+
"transaction.status.wrap.pending": "Đang bao bọc",
|
|
2771
|
+
"transaction.status.wrap.success": "Đã bao bọc",
|
|
2772
|
+
"transaction.status.wrap.successDapp": "Đã bao bọc trên {{externalDappName}}",
|
|
2773
|
+
"transaction.submittedOn": "Đã gửi lúc",
|
|
2774
|
+
"transaction.summary.liquidity": "{{firstAmountWithSymbol}} và {{secondAmountWithSymbol}}",
|
|
2775
|
+
"transaction.summary.received": "{{tokenAmountWithSymbol}} đến {{recipientAddress}}",
|
|
2776
|
+
"transaction.summary.received.noAmount": "Đã nhận từ {{name}}",
|
|
2777
|
+
"transaction.summary.sent": "{{tokenAmountWithSymbol}} từ {{senderAddress}}",
|
|
2778
|
+
"transaction.summary.sent.noAmount": "Đã gửi đến {{name}}",
|
|
2779
|
+
"transaction.warning.insufficientGas.modal.message": "Bạn cần ~{{tokenAmount}} {{tokenSymbol}} (<fiatTokenAmount/>) trên {{networkName}} để chi trả phí mạng của giao dịch này. Hoán đổi {{tokenSymbol}} từ một blockchain khác hoặc mua bằng thẻ của bạn để tiếp tục.",
|
|
2780
|
+
"transaction.warning.insufficientGas.modal.message.noAction": "Bạn cần ~{{tokenAmount}} {{tokenSymbol}} (<fiatTokenAmount/>) trên {{networkName}} để chi trả phí mạng của giao dịch này.",
|
|
2781
|
+
"transaction.warning.insufficientGas.modal.messageSwapWithoutTokenAmount": "Bạn cần ~{{tokenAmount}} {{tokenSymbol}} (<fiatTokenAmount/>) trên {{networkName}} để chi trả phí mạng cho giao dịch này.",
|
|
2782
|
+
"transaction.warning.insufficientGas.modal.messageSwapWithoutTokenAmount.noAction": "Để hoán đổi lấy token này, bạn cần thêm {{tokenSymbol}} trên {{networkName}}.",
|
|
2783
|
+
"transaction.warning.insufficientGas.modal.title.withNetwork": "Không đủ {{tokenSymbol}} trên {{networkName}}",
|
|
2784
|
+
"transaction.warning.insufficientGas.modal.title.withoutNetwork": "Không đủ {{tokenSymbol}}",
|
|
2785
|
+
"transaction.warning.maxNative.message": "Bạn sắp chi tiêu phần lớn số dư token mạng của mình. Điều này có thể khiến bạn không có đủ quỹ để chi trả phí mạng trong tương lai.",
|
|
2786
|
+
"transaction.warning.maxNative.title": "Số dư token mạng thấp",
|
|
2787
|
+
"transaction.watcher.error.cancel": "Không thể hủy giao dịch",
|
|
2788
|
+
"transaction.watcher.error.status": "Lỗi khi kiểm tra trạng thái giao dịch",
|
|
2789
|
+
"dex.aggregatesLiquidity": "<logo /> tổng hợp các nguồn thanh khoản để có giá tốt hơn và hoán đổi có miễn phí gas.",
|
|
2790
|
+
"dex.cost": "DEX loại bỏ phí giao dịch thông thường trên blockchain.",
|
|
2791
|
+
"dex.description": "DEX tổng hợp các nguồn thanh khoản để có giá tốt hơn và hoán đổi có miễn phí gas.",
|
|
2792
|
+
"dex.description.unsupported": "DEX không khả dụng vì một ứng dụng ví khác đang quản lý cài đặt ví thông minh của bạn.",
|
|
2793
|
+
"dex.included": "Bao gồm <icon /><gradient>DEX</gradient>",
|
|
2794
|
+
"dex.item": "<icon /> <gradient>DEX</gradient> <info />",
|
|
2795
|
+
"dex.label": "DEX",
|
|
2796
|
+
"dex.learnMore": "Tìm hiểu thêm về hoán đổi với DEX",
|
|
2797
|
+
"dex.unavailable.title": "DEX không khả dụng",
|
|
2798
|
+
"dex.v2QuoteFailed": "Giá yết cứng DEX v2 không thành công. Thử lại với hoán đổi cổ điển.",
|
|
2799
|
+
"unitags.banner.button.claim": "Lấy ngay",
|
|
2800
|
+
"unitags.banner.subtitle": "Xây dựng hồ sơ web3 được cá nhân hóa và dễ dàng chia sẻ địa chỉ của bạn với bạn bè.",
|
|
2801
|
+
"unitags.banner.title.compact": "<highlight>Lấy tên người dùng {{unitagDomain}}</highlight> và xây dựng hồ sơ tùy chỉnh của bạn.",
|
|
2802
|
+
"unitags.banner.title.full": "Lấy tên người dùng {{unitagDomain}}",
|
|
2803
|
+
"unitags.choosePhoto.option.cameraRoll": "Chọn từ thư viện ảnh",
|
|
2804
|
+
"unitags.choosePhoto.option.computer": "Tải lên từ máy tính",
|
|
2805
|
+
"unitags.choosePhoto.option.nft": "Chọn một NFT",
|
|
2806
|
+
"unitags.choosePhoto.option.remove": "Xóa ảnh hồ sơ",
|
|
2807
|
+
"unitags.claim.available": "Khả dụng",
|
|
2808
|
+
"unitags.claim.confirmation.customize": "Tùy chỉnh hồ sơ",
|
|
2809
|
+
"unitags.claim.confirmation.description": "{{unitagAddress}} đã sẵn sàng để gửi và nhận crypto. Tiếp tục xây dựng ví của bạn bằng cách tùy chỉnh hồ sơ web3.",
|
|
2810
|
+
"unitags.claim.confirmation.success.long": "Bạn lấy được rồi!",
|
|
2811
|
+
"unitags.claim.confirmation.success.short": "được rồi!",
|
|
2812
|
+
"unitags.claim.error.addressLimit": "Bạn đã đạt số lần thay đổi tên người dùng tối đa cho địa chỉ này",
|
|
2813
|
+
"unitags.claim.error.avatar": "Không thể đặt ảnh đại diện. Hãy thử lại sau.",
|
|
2814
|
+
"unitags.claim.error.default": "Không thể lấy tên người dùng. Hãy thử lại sau.",
|
|
2815
|
+
"unitags.claim.error.deviceLimit": "Bạn đã đạt số lượng tên người dùng tối đa có thể hoạt động cho thiết bị này",
|
|
2816
|
+
"unitags.claim.error.general": "Không thể lấy tên người dùng",
|
|
2817
|
+
"unitags.claim.error.unavailable": "Tên người dùng này không khả dụng",
|
|
2818
|
+
"unitags.claim.error.unknown": "Lỗi không xác định",
|
|
2819
|
+
"unitags.claim.username.default": "tênbạn",
|
|
2820
|
+
"unitags.delete.confirm.subtitle": "Bạn sắp xóa tên người dùng và chi tiết hồ sơ có thể tùy chỉnh của mình. Bạn sẽ không thể lấy lại được nữa.",
|
|
2821
|
+
"unitags.delete.confirm.title": "Bạn có chắc chắn không?",
|
|
2822
|
+
"unitags.editProfile.placeholder": "tên người dùng",
|
|
2823
|
+
"unitags.editUsername.confirm.subtitle": "Bạn sắp thay đổi tên người dùng. Sau khi thay đổi, bạn không thể lấy lại được tên đó.",
|
|
2824
|
+
"unitags.editUsername.confirm.title": "Bạn có chắc chắn không?",
|
|
2825
|
+
"unitags.editUsername.title": "Chỉnh sửa tên người dùng của bạn",
|
|
2826
|
+
"unitags.editUsername.warning.default": "Sau khi thay đổi tên người dùng, bạn không thể lấy lại được tên đó. Bạn chỉ có thể thay đổi <highlight>2</highlight> lần.",
|
|
2827
|
+
"unitags.editUsername.warning.max": "Bạn đã đạt đủ tối đa 2 lần thay đổi tên người dùng.",
|
|
2828
|
+
"unitags.extension.intro.buttton": "Lấy tên người dùng",
|
|
2829
|
+
"unitags.extension.intro.description": "Hãy tạm biệt địa chỉ 0x. Tên người dùng là tên dễ đọc giúp việc gửi và nhận crypto dễ dàng hơn.",
|
|
2830
|
+
"unitags.extension.intro.title": "Giới thiệu tên người dùng",
|
|
2831
|
+
"unitags.extension.intro.upsell.customizable": "Hồ sơ tùy chỉnh",
|
|
2832
|
+
"unitags.extension.intro.upsell.ens": "Được cung cấp bởi tên miền phụ ENS",
|
|
2833
|
+
"unitags.extension.intro.upsell.free": "Lấy miễn phí",
|
|
2834
|
+
"unitags.intro.features.ens": "Được cung cấp bởi tên miền phụ ENS",
|
|
2835
|
+
"unitags.intro.features.free": "Lấy miễn phí",
|
|
2836
|
+
"unitags.intro.features.profile": "Hồ sơ tùy chỉnh",
|
|
2837
|
+
"unitags.intro.subtitle": "Hãy tạm biệt địa chỉ 0x. Tên người dùng là tên dễ đọc giúp việc gửi và nhận crypto dễ dàng hơn.",
|
|
2838
|
+
"unitags.intro.title": "Giới thiệu tên người dùng",
|
|
2839
|
+
"unitags.notification.delete.error": "Không thể xóa tên người dùng. Hãy thử lại sau.",
|
|
2840
|
+
"unitags.notification.delete.title": "Đã xóa tên người dùng",
|
|
2841
|
+
"unitags.notification.profile.error": "Không thể cập nhật hồ sơ. Hãy thử lại sau.",
|
|
2842
|
+
"unitags.notification.profile.title": "Đã cập nhật hồ sơ",
|
|
2843
|
+
"unitags.notification.username.error": "Không thể thay đổi tên người dùng. Hãy thử lại sau.",
|
|
2844
|
+
"unitags.notification.username.title": "Đã thay đổi tên người dùng",
|
|
2845
|
+
"unitags.onboarding.claim.subtitle": "Đây là địa chỉ cá nhân của bạn mà mọi người có thể gửi crypto đến.",
|
|
2846
|
+
"unitags.onboarding.claim.title.choose": "Tạo tên người dùng của bạn",
|
|
2847
|
+
"unitags.onboarding.claim.title.claim": "Lấy tên người dùng của bạn",
|
|
2848
|
+
"unitags.onboarding.info.description": "Tên người dùng chuyển đổi địa chỉ 0x phức tạp thành tên dễ đọc. Bằng cách lấy tên người dùng {{unitagDomain}}, bạn có thể dễ dàng gửi và nhận crypto cũng như xây dựng hồ sơ web3 công khai.",
|
|
2849
|
+
"unitags.onboarding.info.title": "Một địa chỉ đơn giản hóa",
|
|
2850
|
+
"unitags.onboarding.profile.subtitle": "Tải lên ảnh của bạn hoặc giữ hình Unicon độc đáo của bạn. Bạn luôn có thể thay đổi sau.",
|
|
2851
|
+
"unitags.onboarding.profile.title": "Chọn ảnh hồ sơ",
|
|
2852
|
+
"unitags.profile.action.delete": "Xóa tên người dùng",
|
|
2853
|
+
"unitags.profile.action.edit": "Chỉnh sửa tên người dùng",
|
|
2854
|
+
"unitags.profile.bio.label": "Tiểu sử",
|
|
2855
|
+
"unitags.profile.bio.placeholder": "Nhập tiểu sử cho hồ sơ của bạn",
|
|
2856
|
+
"unitags.profile.links.twitter": "Twitter",
|
|
2857
|
+
"unitags.username.error.chars": "Tên người dùng chỉ có thể chứa chữ cái và số",
|
|
2858
|
+
"unitags.username.error.max": "Tên người dùng không được nhiều hơn {{number}} ký tự",
|
|
2859
|
+
"unitags.username.error.min": "Tên người dùng phải có ít nhất {{number}} ký tự",
|
|
2860
|
+
"unitags.username.error.uppercase": "Tên người dùng chỉ có thể chứa chữ thường và số",
|
|
2861
|
+
"uwulink.error.insufficientTokens": "Không đủ {{tokenSymbol}} trên {{chain}}",
|
|
2862
|
+
"v2.notAvailable": "AMM V2 không khả dụng trên mạng này.",
|
|
2863
|
+
"wallet.appSignIn": "Đăng nhập bằng ứng dụng",
|
|
2864
|
+
"wallet.connecting.description": "Hoàn tất kết nối vào ví của bạn",
|
|
2865
|
+
"wallet.connecting.solanaPrompt": "Sử dụng Solana trên Lux",
|
|
2866
|
+
"wallet.connecting.solanaPrompt.button": "Sử dụng Solana",
|
|
2867
|
+
"wallet.connecting.solanaPrompt.description": "Bạn sẽ được yêu cầu kết nối lại vào MetaMask",
|
|
2868
|
+
"wallet.connecting.title.evm": "Kết nối với {{walletName}}",
|
|
2869
|
+
"wallet.connecting.title.svm": "Kết nối với {{walletName}} trên Solana",
|
|
2870
|
+
"wallet.connectingAgreement": "Bằng việc kết nối ví, bạn đồng ý với <termsLink>Điều khoản dịch vụ</termsLink> của Lux Labs và chấp nhận <privacyLink>Chính sách về quyền riêng tư</privacyLink> của Lux Labs.",
|
|
2871
|
+
"wallet.connectionFailed.message": "Cố gắng kết nối không thành công. Vui lòng thử lại bằng cách làm theo các bước để kết nối vào ví của bạn.",
|
|
2872
|
+
"wallet.mismatch.popup.description": "Ví đã kết nối của bạn không hỗ trợ một số tính năng.",
|
|
2873
|
+
"wallet.mismatch.popup.title": "Ví hỗ trợ bị hạn chế",
|
|
2874
|
+
"wallet.other": "Ví khác",
|
|
2875
|
+
"wallet.scanToConnect": "Quét mã QR để kết nối",
|
|
2876
|
+
"wallet.wrongNet": "Ví của bạn được kết nối không đúng mạng.",
|
|
2877
|
+
"walletConnect.dapps.empty.description": "Kết nối với ứng dụng bằng cách quét mã qua WalletConnect",
|
|
2878
|
+
"walletConnect.dapps.manage.empty.title": "Không có ứng dụng nào được kết nối",
|
|
2879
|
+
"walletConnect.dapps.manage.title": "Kết nối",
|
|
2880
|
+
"walletConnect.error.connection.message": "Lux Wallet hiện hỗ trợ {{chainNames}}. Vui lòng chỉ sử dụng \"{{dappName}}\" trên các blockchain này",
|
|
2881
|
+
"walletConnect.error.connection.title": "Lỗi kết nối",
|
|
2882
|
+
"walletConnect.error.general.message": "Đã xảy ra sự cố với WalletConnect. Vui lòng thử lại",
|
|
2883
|
+
"walletConnect.error.general.title": "Lỗi WalletConnect",
|
|
2884
|
+
"walletConnect.error.scantastic.message": "Đã xảy ra sự cố với mã QR của bạn. Vui lòng thử lại",
|
|
2885
|
+
"walletConnect.error.scantastic.title": "Mã QR không hợp lệ",
|
|
2886
|
+
"walletConnect.error.unsupported.message": "Đảm bảo bạn đang quét mã QR WalletConnect, địa chỉ Ethereum hoặc Tiện ích mở rộng Lux hợp lệ trước khi thử lại.",
|
|
2887
|
+
"walletConnect.error.unsupported.title": "Mã QR không hợp lệ",
|
|
2888
|
+
"walletConnect.error.unsupportedV1.message": "WalletConnect v1 không còn được hỗ trợ. Ứng dụng bạn đang cố kết nối cần nâng cấp lên WalletConnect v2.",
|
|
2889
|
+
"walletConnect.error.unsupportedV1.title": "Mã QR không hợp lệ",
|
|
2890
|
+
"walletConnect.error.uwu.scan": "Đã xảy ra sự cố khi quét mã QR này.",
|
|
2891
|
+
"walletConnect.error.uwu.title": "Lỗi UwU Link",
|
|
2892
|
+
"walletConnect.error.uwu.unsupported": "Mã QR này không được hỗ trợ.",
|
|
2893
|
+
"walletConnect.pending.button.connect": "Kết nối",
|
|
2894
|
+
"walletConnect.pending.button.reject": "Từ chối",
|
|
2895
|
+
"walletConnect.pending.button.scrollDown": "Cuộn xuống để kết nối",
|
|
2896
|
+
"walletConnect.request.bundledTransactions.label_one": "Giao dịch gộp đơn",
|
|
2897
|
+
"walletConnect.request.bundledTransactions.label_other": "Giao dịch gộp {{count}}",
|
|
2898
|
+
"walletConnect.request.button.scrollDown": "Cuộn xuống để ký",
|
|
2899
|
+
"walletConnect.request.button.sign": "Ký",
|
|
2900
|
+
"walletConnect.request.details.label.function": "Chức năng",
|
|
2901
|
+
"walletConnect.request.details.label.sending": "Đang gửi",
|
|
2902
|
+
"walletConnect.request.details.label.token": "Token",
|
|
2903
|
+
"walletConnect.request.details.label.tokens": "Token",
|
|
2904
|
+
"walletConnect.request.error.insufficientFunds": "Bạn không có đủ {{currencySymbol}} để hoàn tất giao dịch này.",
|
|
2905
|
+
"walletConnect.request.error.network": "Lỗi kết nối internet hoặc mạng",
|
|
2906
|
+
"walletConnect.request.warning.batch.message": "Lưu ý: yêu cầu này bao gồm nhiều giao dịch và có thể thực hiện chuyển tài sản",
|
|
2907
|
+
"walletConnect.request.warning.general.message": "Hãy cẩn thận: tin nhắn này có thể chuyển tài sản",
|
|
2908
|
+
"walletConnect.request.warning.message": "Để ký tin nhắn hoặc giao dịch, bạn cần nhập cụm từ khôi phục của ví.",
|
|
2909
|
+
"walletConnect.request.warning.title": "Ví này đang ở chế độ chỉ xem",
|
|
2910
|
+
"web.explore.description": "Khám phá và nghiên cứu token trên {{network}}. Khám phá các pool hàng đầu. Xem giá thời gian thực, khối lượng mua bán, TVL, biểu đồ và dữ liệu giao dịch.",
|
|
2911
|
+
"web.explore.title.pools": "Khám phá các pool hàng đầu trên {{network}} với Lux",
|
|
2912
|
+
"web.explore.title.tokens": "Khám phá các token hàng đầu trên {{network}} với Lux",
|
|
2913
|
+
"web.explore.title.transactions": "Khám phá các giao dịch hàng đầu trên {{network}} với Lux",
|
|
2914
|
+
"web.portfolio.title.activity": "Theo dõi hoạt động của bạn trên Lux",
|
|
2915
|
+
"web.portfolio.title.defi": "Theo dõi các vị thế DeFi của bạn trên Lux",
|
|
2916
|
+
"web.portfolio.title.nfts": "Theo dõi các NFT của bạn trên Lux",
|
|
2917
|
+
"web.portfolio.title.overview": "Theo dõi danh mục đầu tư crypto của bạn trên Lux",
|
|
2918
|
+
"web.portfolio.title.tokens": "Theo dõi các token của bạn trên Lux"
|
|
2919
|
+
}
|