diff --git a/public/locales/en.json b/public/locales/en.json index 9a0bb3f5..1d3f586d 100644 --- a/public/locales/en.json +++ b/public/locales/en.json @@ -337,8 +337,11 @@ "farms": "Farms", "swapTip": "If the liquidity of the target chain is insufficient, you will receive {{symbol}} ({{chainName}}), please check the balance in the liquidity pool and redeem {{symbol1}}({{chainName}}).", "approveTip": "Please approve {{symbol}} before you continue cross chain swap in Multichain router.", - "txnsTip": "Please wait minutes to check the cross-chain tx status on the explorer", + "txnsTip": "Please allow 3-30 minutes for the cross-chain transaction to complete. You may check the status on our explorer", "ExceedLimit": "Exceed limit", + "LessThanLimit": "Less than minimum amount", + "MoreThanLimit": "More than maximum amount", + "nodestlr": "Dest Liquidity Insufficient", "destTS": "Dest Liquidity", "StakingTip": "Stake {{symbol}}, APR:", @@ -355,7 +358,7 @@ "receiveTip": "Please do NOT send funds to exchanges.", "support": "Support", "ConnectTerraStation": "Connect Terra Station", - "topTip": "Multichain is formerly known as Anyswap", + "topTip": "Multichain is previously known as Anyswap", "approvedTip": "{{symbol}} approved, you can continue the cross chain transaction", "SourceChain": "Source Chain", "Address": "Address" diff --git a/src/components/CrossChainPanelV2/crossChainEVM.tsx b/src/components/CrossChainPanelV2/crossChainEVM.tsx index b5f20573..c255ce1c 100644 --- a/src/components/CrossChainPanelV2/crossChainEVM.tsx +++ b/src/components/CrossChainPanelV2/crossChainEVM.tsx @@ -363,12 +363,12 @@ export default function CrossChain({ } else if (Number(inputBridgeValue) < Number(destConfig.MinimumSwap)) { return { state: 'Error', - tip: t('ExceedLimit') + tip: t('LessThanLimit') } } else if (Number(inputBridgeValue) > Number(destConfig.MaximumSwap)) { return { state: 'Error', - tip: t('ExceedLimit') + tip: t('MoreThanLimit') } } else if ( (isDestUnderlying && destChain && Number(inputBridgeValue) > Number(destChain.ts)) diff --git a/src/components/Header/URLWarning.tsx b/src/components/Header/URLWarning.tsx index 4e2782aa..58dcad21 100644 --- a/src/components/Header/URLWarning.tsx +++ b/src/components/Header/URLWarning.tsx @@ -12,7 +12,7 @@ const PhishAlert = styled.div<{ isActive: any }>` padding: 6px 6px; background-color: #fdf6ec; color: #062536; - font-size: 11px; + font-size: 14px; justify-content: center; align-items: center; display: ${({ isActive }) => (isActive ? 'flex' : 'none')};