diff --git a/api/get_hero_images.php b/api/get_hero_images.php new file mode 100644 index 0000000..9857c50 --- /dev/null +++ b/api/get_hero_images.php @@ -0,0 +1,61 @@ + 0 ? $k : 'Vc99rnmOhHhJAbgGQoKLZtsaIVfkeownoQNbTj78VemUjKh08ZYRbf18'; +} + +function pexels_get($url) { + $ch = curl_init(); + curl_setopt_array($ch, [ + CURLOPT_URL => $url, + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ 'Authorization: '. pexels_key() ], + CURLOPT_TIMEOUT => 15, + ]); + $resp = curl_exec($ch); + $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + if ($code >= 200 && $code < 300 && $resp) return json_decode($resp, true); + return null; +} + +function download_to($srcUrl, $destPath) { + $data = @file_get_contents($srcUrl); + if ($data === false) return false; + if (!is_dir(dirname($destPath))) mkdir(dirname($destPath), 0775, true); + return file_put_contents($destPath, $data) !== false; +} + +$queries = ['cryptocurrency', 'bitcoin mining', 'blockchain technology', 'digital finance', 'trading floor']; +$out = []; + +if (!is_dir(__DIR__ . '/../assets/images/hero')) { + mkdir(__DIR__ . '/../assets/images/hero', 0775, true); +} + +foreach ($queries as $index => $q) { + $filename = 'hero_' . ($index + 1) . '.jpg'; + $target = __DIR__ . '/../assets/images/hero/' . $filename; + + // Cache for 24 hours + if (!file_exists($target) || (time() - filemtime($target) > 86400)) { + $u = 'https://api.pexels.com/v1/search?query=' . urlencode($q) . '&orientation=landscape&per_page=1&page=1'; + $d = pexels_get($u); + if ($d && !empty($d['photos'])) { + $p = $d['photos'][0]; + $src = $p['src']['large2x'] ?? $p['src']['original']; + download_to($src, $target); + } + } + + if (file_exists($target)) { + $out[] = 'assets/images/hero/' . $filename; + } else { + // Fallback to picsum if pexels fails + $out[] = 'https://picsum.photos/1200/600?random=' . $index; + } +} + +echo json_encode(['success' => true, 'images' => $out]); diff --git a/assets/css/custom.css b/assets/css/custom.css index 354fd29..ec01ae0 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -1,5 +1,5 @@ :root { - --bg-color: #0b0e11; + --bg-color: #101216; --text-color: #eaecef; --accent-color: #f0b90b; --card-bg: #181a20; @@ -52,65 +52,96 @@ body { box-shadow: 0 8px 20px rgba(0, 70, 255, 0.3); } -.btn-accent { - background-color: var(--accent-color); - color: #000; - font-weight: 700; - border: none; - border-radius: 10px; - transition: all 0.3s ease; +/* Logo Styling */ +.logo-img { + height: 40px; + margin-right: 12px; + background: transparent !important; + border: none !important; + display: block; + box-shadow: none !important; + filter: drop-shadow(0 0 5px rgba(0, 70, 255, 0.2)); } -.btn-accent:hover { - background-color: #d9a508; - color: #000; - transform: translateY(-2px); - box-shadow: 0 6px 15px rgba(240, 185, 11, 0.4); +.bg-primary-bg { background-color: var(--bg-color) !important; } +.bg-secondary-bg { background-color: #181a20 !important; } +.bg-darker { background-color: #080a0c !important; } + +.bg-navy-gradient { + background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); } -/* Visibility Utilities */ +/* New Ticker Styles */ +.ticker-item { + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); +} +.hover-glow-blue:hover { + transform: translateY(-3px); + background: rgba(0, 70, 255, 0.15) !important; + border-color: rgba(0, 70, 255, 0.3) !important; + box-shadow: 0 10px 20px rgba(0, 70, 255, 0.15); +} + +.x-small { font-size: 0.7rem; } +.xx-small { font-size: 0.6rem; } + +/* Custom Animations */ +@keyframes fadeIn { + from { opacity: 0; transform: translateY(10px); } + to { opacity: 1; transform: translateY(0); } +} + +.animate-fade-in { + animation: fadeIn 0.5s ease forwards; +} + +/* Mobile Adjustments */ +@media (max-width: 768px) { + .display-4 { font-size: 2.5rem; } + .carousel-image-container { height: 350px !important; } + .slide-content { padding-left: 20px !important; } +} + +/* Ticker Skeleton */ +.skeleton { + background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%); + background-size: 200% 100%; + animation: skeleton-loading 1.5s infinite; +} + +@keyframes skeleton-loading { + 0% { background-position: 200% 0; } + 100% { background-position: -200% 0; } +} + +/* Utility */ .text-white { color: #ffffff !important; } .text-muted { color: #848e9c !important; } - -.text-success { color: var(--success-color) !important; } -.text-danger { color: var(--danger-color) !important; } +.bg-primary { background-color: var(--okx-blue) !important; } /* Custom Scrollbar */ ::-webkit-scrollbar { - width: 5px; + width: 6px; + height: 6px; } ::-webkit-scrollbar-track { background: var(--bg-color); } ::-webkit-scrollbar-thumb { - background: var(--border-color); + background: #484f65; border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { - background: #484f65; + background: #5a627d; } -/* Hover Effects */ -.hover-scale { - transition: transform 0.3s ease; +/* Feature Cards */ +.feature-card { + transition: all 0.4s ease; + border: 1px solid rgba(255,255,255,0.03) !important; } -.hover-scale:hover { - transform: scale(1.05); -} - -.hover-glow:hover { - box-shadow: 0 0 20px rgba(0, 70, 255, 0.2); -} - -/* Layout Utilities */ -.rounded-4 { border-radius: 1.5rem !important; } -.rounded-5 { border-radius: 2rem !important; } - -/* Animations */ -@keyframes fadeIn { - from { opacity: 0; transform: translateY(10px); } - to { opacity: 1; transform: translateY(0); } -} -.fade-in { - animation: fadeIn 0.5s ease forwards; +.feature-card:hover { + transform: translateY(-10px); + border-color: rgba(0, 70, 255, 0.2) !important; + box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important; } \ No newline at end of file diff --git a/assets/images/hero/hero_1.jpg b/assets/images/hero/hero_1.jpg new file mode 100644 index 0000000..3331cfa Binary files /dev/null and b/assets/images/hero/hero_1.jpg differ diff --git a/assets/images/hero/hero_2.jpg b/assets/images/hero/hero_2.jpg new file mode 100644 index 0000000..420fb74 Binary files /dev/null and b/assets/images/hero/hero_2.jpg differ diff --git a/assets/images/hero/hero_3.jpg b/assets/images/hero/hero_3.jpg new file mode 100644 index 0000000..ad30b9a Binary files /dev/null and b/assets/images/hero/hero_3.jpg differ diff --git a/assets/images/hero/hero_4.jpg b/assets/images/hero/hero_4.jpg new file mode 100644 index 0000000..30a3da8 Binary files /dev/null and b/assets/images/hero/hero_4.jpg differ diff --git a/assets/images/hero/hero_5.jpg b/assets/images/hero/hero_5.jpg new file mode 100644 index 0000000..2b931fd Binary files /dev/null and b/assets/images/hero/hero_5.jpg differ diff --git a/assets/js/main.js b/assets/js/main.js index 7d3be38..cda8ba5 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -9,6 +9,7 @@ function getLang() { async function fetchMarketData() { try { const resp = await fetch('api/market_api.php'); + if (!resp.ok) throw new Error('Network response was not ok'); const result = await resp.json(); if (result.success) { currentMarketData = result.data; @@ -20,8 +21,8 @@ async function fetchMarketData() { } function updateUI() { - // Update Home Page Market List - const homeList = document.getElementById('market-trends'); // Fixed ID mismatch + // Update Home Page Market List (Market Trends Table) + const homeList = document.getElementById('market-trends'); if (homeList) { let html = ''; const symbols = ['BTC', 'ETH', 'BNB', 'SOL', 'XRP', 'DOGE', 'ADA', 'TRX']; @@ -32,52 +33,62 @@ function updateUI() { const changeSign = coin.change >= 0 ? '+' : ''; const iconClass = coin.change >= 0 ? 'fa-arrow-trend-up' : 'fa-arrow-trend-down'; html += ` - - + +
- +
+ +
-
${symbol}
-
${coin.name}
+
${symbol}
+
${coin.name}
- $${coin.price.toLocaleString(undefined, {minimumFractionDigits: 2})} - + $${coin.price.toLocaleString(undefined, {minimumFractionDigits: 2})} + ${changeSign}${coin.change.toFixed(2)}% - - Trade + + ${getLang() === 'zh' ? '去交易' : 'Trade'} `; } }); - homeList.innerHTML = html; + if (html) homeList.innerHTML = html; } - // Update Hero Ticker if exists + // Update Hero Ticker (Horizontal Bar) - Improved with premium gradient & glow const heroTicker = document.getElementById('hero-market-ticker'); if (heroTicker) { let html = ''; - const symbols = ['BTC', 'ETH', 'SOL', 'BNB']; + const symbols = ['BTC', 'ETH', 'SOL', 'BNB', 'XRP']; symbols.forEach(symbol => { const coin = currentMarketData[symbol]; if (coin) { const changeClass = coin.change >= 0 ? 'text-success' : 'text-danger'; + // Using a premium gradient instead of a "white box" + const gradient = coin.change >= 0 + ? 'linear-gradient(135deg, rgba(14, 203, 129, 0.15) 0%, rgba(0, 70, 255, 0.05) 100%)' + : 'linear-gradient(135deg, rgba(246, 70, 93, 0.15) 0%, rgba(0, 70, 255, 0.05) 100%)'; + const borderColor = coin.change >= 0 ? 'rgba(14, 203, 129, 0.2)' : 'rgba(246, 70, 93, 0.2)'; + html += ` -
-
- ${symbol} - ${coin.change >= 0 ? '+' : ''}${coin.change.toFixed(2)}% +
+
+ ${symbol}/USDT + ${coin.change >= 0 ? '+' : ''}${coin.change.toFixed(2)}% +
+
+
$${coin.price.toLocaleString(undefined, {minimumFractionDigits: 2})}
-
$${coin.price.toLocaleString(undefined, {minimumFractionDigits: 2})}
`; } }); - heroTicker.innerHTML = html; + if (html) heroTicker.innerHTML = html; } // Update Ticker diff --git a/includes/header.php b/includes/header.php index c86d261..7405db7 100644 --- a/includes/header.php +++ b/includes/header.php @@ -48,148 +48,166 @@ function mt($key) { 'Contact Support' => 'Contact Support', 'Asset' => 'Asset', '24h Change' => '24h Change', '24h High' => '24h High', 'Action' => 'Action', 'All Markets' => 'All Markets', 'Real-time updates from global exchanges' => 'Real-time updates from global exchanges', 'Safe & Secure' => 'Safe & Secure', 'Industry-leading encryption and multi-signature cold storage for your digital assets.' => 'Industry-leading encryption and multi-signature cold storage for your digital assets.', 'Instant Execution' => 'Instant Execution', 'Advanced matching engine processing over 100,000 transactions per second.' => 'Advanced matching engine processing over 100,000 transactions per second.', - 'Get help whenever you need it with our around-the-clock professional customer service.' => 'Get help whenever you need it with our around-the-clock professional customer service.', - 'Trade Anywhere, Anytime' => 'Trade Anywhere, Anytime', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.', - 'Scan to download' => 'Scan to download', 'Compatible with iOS and Android devices.' => 'Compatible with iOS and Android devices.', - 'Account Overview' => 'Account Overview', 'Total Balance' => 'Total Balance', 'Security Settings' => 'Security Settings', 'Login Password' => 'Login Password', - 'Change' => 'Change', 'Verified' => 'Verified', 'Reviewing...' => 'Reviewing...', 'none' => 'Unverified', 'pending' => 'Pending', 'approved' => 'Verified', - 'Trade with up to 100x leverage on BTC, ETH, and other major crypto pairs with professional risk management tools.' => 'Trade with up to 100x leverage on BTC, ETH, and other major crypto pairs with professional risk management tools.', - 'Perpetual Contracts' => 'Perpetual Contracts', 'Identity verification submitted and is under review.' => 'Identity verification submitted and is under review.', - 'New passwords do not match.' => 'New passwords do not match.', 'Password must be at least 6 characters.' => 'Password must be at least 6 characters.', 'Password updated successfully.' => 'Password updated successfully.', 'Current password incorrect.' => 'Current password incorrect.', - 'Hello! Welcome to BITCrypto. How can we help you today?' => 'Hello! Welcome to BITCrypto. How can we help you today?', - 'Type a message...' => 'Type a message...', 'Thank you for your message. An agent will be with you shortly.' => 'Thank you for your message. An agent will be with you shortly.', - 'For security reasons, never share your login or trading passwords with anyone, including our support agents.' => 'For security reasons, never share your login or trading passwords with anyone, including our support agents.', - 'Why Choose BITCrypto?' => 'Why Choose BITCrypto?', 'Global Liquidity' => 'Global Liquidity', 'Deep order books and high liquidity across all trading pairs for minimal slippage.' => 'Deep order books and high liquidity across all trading pairs for minimal slippage.', - 'Advanced Trading' => 'Advanced Trading', 'Professional charting tools, multi-order types, and real-time execution.' => 'Professional charting tools, multi-order types, and real-time execution.', - 'Trusted by Millions' => 'Trusted by Millions', 'Join a global community of traders and investors on one of the most secure platforms.' => 'Join a global community of traders and investors on one of the most secure platforms.', - 'Our Partners' => 'Our Partners', 'Global Trust' => 'Global Trust', 'Assets Overview' => 'Assets Overview', 'BITCrypto provides a comprehensive ecosystem for crypto enthusiasts, from beginners to professional institutional traders.' => 'BITCrypto provides a comprehensive ecosystem for crypto enthusiasts, from beginners to professional institutional traders.', - 'Our Global Partners' => 'Our Global Partners', 'Primary Network' => 'Primary Network', 'Smart Contracts' => 'Smart Contracts', 'Security Audit' => 'Security Audit', 'Financial Partner' => 'Financial Partner', 'Strategic Advisor' => 'Strategic Advisor', - 'Unverified' => 'Unverified', 'Verification' => 'Verification', 'digits' => 'digits', 'Search Pairs' => 'Search Pairs', 'No open orders' => 'No open orders', 'Time' => 'Time', 'Pair' => 'Pair', 'Type' => 'Type', 'Side' => 'Side', 'Filled' => 'Filled', 'Open Orders' => 'Open Orders', 'Order History' => 'Order History', 'Positions' => 'Positions', - 'Total Net Value' => 'Total Net Value', 'Yesterday Profit/Loss' => 'Yesterday Profit/Loss', 'Link' => 'Link', 'Recent Activities' => 'Recent Activities', 'Account Login' => 'Account Login', 'Update failed' => 'Update failed', 'Confirm New Trading Password' => 'Confirm New Trading Password', 'New Trading Password' => 'New Trading Password', - 'The World\'s Leading' => 'The World\'s Leading', 'Crypto Exchange' => 'Crypto Exchange', 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.' => 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.', - 'Get Started' => 'Get Started', 'View Markets' => 'View Markets', 'Users' => 'Users', '24h Volume' => '24h Volume', 'Countries' => 'Countries', - 'Stay updated with real-time price changes' => 'Stay updated with real-time price changes', 'View All' => 'View All', 'Name' => 'Name', - 'Experience the most professional trading environment' => 'Experience the most professional trading environment', + 'Verification' => 'Verification', 'Reviewing...' => 'Reviewing...', 'Verified' => 'Verified', 'Unverified' => 'Unverified', 'Pending' => 'Pending', 'Approved' => 'Approved', 'Rejected' => 'Rejected', + 'Front Side' => 'Front Side', 'Back Side' => 'Back Side', 'Selfie with ID' => 'Selfie with ID', + 'Change Login Password' => 'Change Login Password', 'Change Trading Password' => 'Change Trading Password', + 'digits' => 'digits', 'Current Password' => 'Current Password', 'New Password' => 'New Password', 'Confirm New Password' => 'Confirm New Password', + 'Save Changes' => 'Save Changes', 'Cancel' => 'Cancel', 'Account Overview' => 'Account Overview', 'Total Balance' => 'Total Balance', + 'Recent Activities' => 'Recent Activities', 'Time' => 'Time', 'Account Login' => 'Account Login', 'Assets Overview' => 'Assets Overview', + 'Total Net Value' => 'Total Net Value', 'Yesterday Profit/Loss' => 'Yesterday Profit/Loss', 'Security Settings' => 'Security Settings', + 'Last updated' => 'Last updated', 'Recently' => 'Recently', 'Required for withdrawals' => 'Required for withdrawals', 'Link' => 'Link', + 'Enter your real name' => 'Enter your real name', 'Enter ID/Passport Number' => 'Enter ID/Passport Number', 'Change' => 'Change', + 'Name' => 'Name', 'Price' => 'Price', 'Trade' => 'Trade', 'View All' => 'View All', 'Market Trends' => 'Market Trends', 'Stay updated with real-time price changes' => 'Stay updated with real-time price changes', + 'Get Started' => 'Get Started', 'View Markets' => 'View Markets', 'The World\'s Leading' => 'The World\'s Leading', 'Crypto Exchange' => 'Crypto Exchange', + 'Secure & Trusted' => 'Secure & Trusted', 'Institutional Grade' => 'Institutional Grade', 'Deep Liquidity' => 'Deep Liquidity', 'Global Access' => 'Global Access', + 'Perpetual Contracts' => 'Perpetual Contracts', '100x Leverage' => '100x Leverage', 'Join the Elite' => 'Join the Elite', 'Trust BITCrypto' => 'Trust BITCrypto', + 'Funds' => 'Funds', 'Recharge' => 'Recharge', 'Withdrawal' => 'Withdrawal', 'Stop-Loss' => 'Stop-Loss', 'Take-Profit' => 'Take-Profit', 'Search' => 'Search', 'Search Pairs' => 'Search Pairs', 'Open Orders' => 'Open Orders', 'Order History' => 'Order History', 'Positions' => 'Positions', 'No open orders' => 'No open orders', 'Lots' => 'Lots', 'Cancel' => 'Cancel', 'Order submitted successfully!' => 'Order submitted successfully!', 'Please enter a valid amount.' => 'Please enter a valid amount.', 'Username' => 'Username', 'Password' => 'Password', 'Sign In' => 'Sign In', 'Sign Up' => 'Sign Up', 'Email' => 'Email', 'Already have an account?' => 'Already have an account?', 'Don\'t have an account?' => 'Don\'t have an account?', 'Confirm Password' => 'Confirm Password', 'Create Account' => 'Create Account', + 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.' => 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.', + 'Why Choose BITCrypto?' => 'Why Choose BITCrypto?', 'Experience the most professional trading environment with institutional-grade security and liquidity.' => 'Experience the most professional trading environment with institutional-grade security and liquidity.', 'Multi-sig Cold Storage' => 'Multi-sig Cold Storage', 'DDoS Protection' => 'DDoS Protection', '2FA Security' => '2FA Security', 'Ultra-low Latency' => 'Ultra-low Latency', 'High Liquidity' => 'High Liquidity', 'Zero Slippage' => 'Zero Slippage', 'Multi-language Support' => 'Multi-language Support', 'Live Chat' => 'Live Chat', 'Fast Response' => 'Fast Response', - 'Trusted by industry leaders worldwide' => 'Trusted by industry leaders worldwide', 'Payment Partner' => 'Payment Partner', 'Infrastructure' => 'Infrastructure', - 'Download on the' => 'Download on the', 'Get it on' => 'Get it on', 'Compatible with iOS and Android devices.' => 'Compatible with iOS and Android devices.', - 'Trade Anywhere' => 'Trade Anywhere', 'Download BITCrypto mobile app for iOS and Android' => 'Download BITCrypto mobile app for iOS and Android', - 'Secure & Trusted' => 'Secure & Trusted', 'Your assets are protected by industry-leading security' => 'Your assets are protected by industry-leading security', - 'Crypto Deposit' => 'Crypto Deposit', 'Fiat Deposit' => 'Fiat Deposit', 'Select Currency' => 'Select Currency', 'Deposit Amount' => 'Deposit Amount', 'Submit Deposit' => 'Submit Deposit', - 'Select Fiat Currency' => 'Select Fiat Currency', 'Confirm Deposit' => 'Confirm Deposit', - 'Order ID' => 'Order ID', - 'A local merchant has been found. Matching account details...' => 'A local merchant has been found. Matching account details...', - 'Welcome! I am your dedicated matching assistant. I am currently verifying the liquidity provider for your deposit.' => 'Welcome! I am your dedicated matching assistant. I am currently verifying the liquidity provider for your deposit.', - 'Matching successful. I have secured a high-priority account for your transaction. Please find the details on the right.' => 'Matching successful. I have secured a high-priority account for your transaction. Please find the details on the right.', - 'Please upload your payment receipt/screenshot first.' => 'Please upload your payment receipt/screenshot first.', - 'Thank you for the update. We have received your payment proof and are now verifying the transaction on the blockchain. Your balance will be updated shortly.' => 'Thank you for the update. We have received your payment proof and are now verifying the transaction on the blockchain. Your balance will be updated shortly.', + 'Trade Anywhere, Anytime' => 'Trade Anywhere, Anytime', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.', + 'Download on the' => 'Download on the', 'Get it on' => 'Get it on', 'Scan to download' => 'Scan to download', 'Compatible with iOS and Android devices.' => 'Compatible with iOS and Android devices.', + 'Global Trust' => 'Global Trust', 'Our Global Partners' => 'Our Global Partners', 'Smart Contracts' => 'Smart Contracts', 'Primary Network' => 'Primary Network', 'Security Audit' => 'Security Audit', 'Financial Partner' => 'Financial Partner', 'Strategic Advisor' => 'Strategic Advisor', + 'Please fill in all fields.' => 'Please fill in all fields.', 'Invalid username or password.' => 'Invalid username or password.', 'Login failed.' => 'Login failed.', 'Login to BITCrypto' => 'Login to BITCrypto', 'Enter username' => 'Enter username', 'Enter password' => 'Enter password', 'Remember me' => 'Remember me', 'Forgot password?' => 'Forgot password?', 'Passwords do not match.' => 'Passwords do not match.', 'You must agree to the terms and privacy policy.' => 'You must agree to the terms and privacy policy.', 'Username already exists.' => 'Username already exists.', 'Username / Email' => 'Username / Email', 'Repeat password' => 'Repeat password', 'I have read and agree to the' => 'I have read and agree to the', 'Join the world\'s leading crypto exchange' => 'Join the world\'s leading crypto exchange', 'Search assets...' => 'Search assets...', 'No assets found' => 'No assets found', 'Pair' => 'Pair', 'Side' => 'Side', 'Filled' => 'Filled', 'Receipt uploaded successfully. Waiting for admin approval.' => 'Receipt uploaded successfully. Waiting for admin approval.', - 'Network' => 'Network', 'Scan QR code to deposit' => 'Scan QR code to deposit', 'Upload screenshot of your transaction' => 'Upload screenshot of your transaction', 'Instant' => 'Instant', 'Regional Support' => 'Regional Support', - 'We will match you with a local merchant to facilitate your deposit in your local currency.' => 'We will match you with a local merchant to facilitate your deposit in your local currency.', - 'Processing Time: 10-30 mins' => 'Processing Time: 10-30 mins', 'Exchange Rate' => 'Exchange Rate', 'Service Fee' => 'Service Fee', 'Free' => 'Free', - 'Secure Payment' => 'Secure Payment', 'All transactions are encrypted' => 'All transactions are encrypted', 'Fast Arrival' => 'Fast Arrival', 'Most deposits arrive in mins' => 'Most deposits arrive in mins', 'Live help for your deposit' => 'Live help for your deposit', - 'Address copied to clipboard' => 'Address copied to clipboard' + 'Deposit Assets' => 'Deposit Assets', 'Choose your preferred method to fund your account' => 'Choose your preferred method to fund your account', + 'Crypto Deposit' => 'Crypto Deposit', 'Fiat Deposit' => 'Fiat Deposit', 'Instant' => 'Instant', 'Regional Support' => 'Regional Support', + 'Select Currency' => 'Select Currency', 'Network' => 'Network', 'Deposit Address' => 'Deposit Address', 'Scan QR code to deposit' => 'Scan QR code to deposit', + 'Deposit Amount' => 'Deposit Amount', 'Upload screenshot of your transaction' => 'Upload screenshot of your transaction', 'Submit Deposit' => 'Submit Deposit', + 'Select Fiat Currency' => 'Select Fiat Currency', 'We will match you with a local merchant to facilitate your deposit in your local currency.' => 'We will match you with a local merchant to facilitate your deposit in your local currency.', + 'Est. Arrival' => 'Est. Arrival', 'Processing Time: 10-30 mins' => 'Processing Time: 10-30 mins', 'Exchange Rate' => 'Exchange Rate', + 'Service Fee' => 'Service Fee', 'Free' => 'Free', 'Confirm Deposit' => 'Confirm Deposit', 'Secure Payment' => 'Secure Payment', + 'All transactions are encrypted' => 'All transactions are encrypted', 'Fast Arrival' => 'Fast Arrival', 'Most deposits arrive in mins' => 'Most deposits arrive in mins', + 'Address copied to clipboard' => 'Address copied to clipboard', 'Withdrawal Address' => 'Withdrawal Address', 'Notes' => 'Notes', + 'Withdrawals are processed within 10-30 minutes.' => 'Withdrawals are processed within 10-30 minutes.', + 'Minimum withdrawal amount is 10 USDT.' => 'Minimum withdrawal amount is 10 USDT.', + 'Ensure the receiving address supports the TRC20 network.' => 'Ensure the receiving address supports the TRC20 network.', + 'Current password incorrect.' => 'Current password incorrect.', + 'Identity verification submitted and is under review.' => 'Identity verification submitted and is under review.', + 'New passwords do not match.' => 'New passwords do not match.', 'Password must be at least 6 characters.' => 'Password must be at least 6 characters.', + 'Password updated successfully.' => 'Password updated successfully.', 'Update failed' => 'Update failed', + 'Login Password' => 'Login Password', '2FA Authentication' => '2FA Authentication', 'Google Authenticator' => 'Google Authenticator', + 'Your identity documents are being verified by our team.' => 'Your identity documents are being verified by our team.', + 'Submitted Details' => 'Submitted Details', 'Verified Identity' => 'Verified Identity', + 'Your account is fully verified for all features.' => 'Your account is fully verified for all features.', + 'Current Trading Password' => 'Current Trading Password', 'New Trading Password' => 'New Trading Password', + 'Confirm New Trading Password' => 'Confirm New Trading Password', 'Withdrawal request submitted successfully.' => 'Withdrawal request submitted successfully.', + 'Insufficient balance.' => 'Insufficient balance.', 'Why Choose BITCrypto?' => 'Why Choose BITCrypto?', + 'Experience the most professional trading environment with institutional-grade security and liquidity.' => 'Experience the most professional trading environment with institutional-grade security and liquidity.', + 'Multi-sig Cold Storage' => 'Multi-sig Cold Storage', 'DDoS Protection' => 'DDoS Protection', '2FA Security' => '2FA Security', + 'Ultra-low Latency' => 'Ultra-low Latency', 'High Liquidity' => 'High Liquidity', 'Zero Slippage' => 'Zero Slippage', + 'Multi-language Support' => 'Multi-language Support', 'Live Chat' => 'Live Chat', 'Fast Response' => 'Fast Response', + 'Trade Anywhere, Anytime' => 'Trade Anywhere, Anytime', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.', + 'Download on the' => 'Download on the', 'Get it on' => 'Get it on', 'Scan to download' => 'Scan to download', 'Compatible with iOS and Android devices.' => 'Compatible with iOS and Android devices.', + 'Global Trust' => 'Global Trust', 'Our Global Partners' => 'Our Global Partners', 'Smart Contracts' => 'Smart Contracts', 'Primary Network' => 'Primary Network', 'Security Audit' => 'Security Audit', 'Financial Partner' => 'Financial Partner', 'Strategic Advisor' => 'Strategic Advisor' ], 'zh' => [ - 'Home' => '首页', 'Spot' => '现货', 'Perpetual' => '永续合约', 'Markets' => '市场行情', 'Exchange' => '快捷换币', + 'Home' => '首页', 'Spot' => '币币交易', 'Perpetual' => '合约交易', 'Markets' => '行情', 'Exchange' => '交易', 'Login' => '登录', 'Register' => '注册', 'Profile' => '个人中心', 'Logout' => '退出登录', - 'Deposit' => '充值', 'Withdraw' => '提现', 'Assets' => '资产总览', 'Security' => '安全设置', + 'Deposit' => '充值', 'Withdraw' => '提现', 'Assets' => '资产', 'Security' => '安全', 'Buy' => '买入', 'Sell' => '卖出', 'Limit' => '限价', 'Market' => '市价', 'Price' => '价格', - 'Amount' => '数量', 'Total' => '成交额', 'Available' => '可用余额', 'Trade' => '交易', - 'Market Trends' => '市场趋势', 'Real-time Prices' => '实时行情', 'High' => '最高', 'Low' => '最低', - 'Download App' => '下载APP', 'Customer Service' => '在线客服', - 'Identity Verification' => '实名认证', 'Trading Password' => '资金密码', - 'Success' => '操作成功', 'Error' => '操作失败', 'Matching Account' => '匹配账户', + 'Amount' => '数量', 'Total' => '总额', 'Available' => '可用', 'Trade' => '交易', + 'Market Trends' => '市场趋势', 'Real-time Prices' => '实时价格', 'High' => '最高', 'Low' => '最低', + 'Download App' => '下载APP', 'Customer Service' => '客服中心', + 'Identity Verification' => '实名认证', 'Trading Password' => '交易密码', + 'Success' => '成功', 'Error' => '错误', 'Matching Account' => '匹配账号', 'Establishing secure connection with liquidity provider...' => '正在与流动性提供商建立安全连接...', 'Awaiting merchant confirmation...' => '等待商家确认...', 'Matching in progress' => '正在匹配中', - 'The specialized account for this transaction will be provided by our agent shortly.' => '该交易的专用账户将由我们的代理稍后提供。', - 'Transfer the exact amount. Upload proof below.' => '请转账准确金额。在下方上传凭证。', - 'Bank Name' => '银行名称', 'Account Number' => '账号', 'Beneficiary' => '收款人', 'Reference' => '备注/附言', - 'Copy' => '复制', 'Upload Proof' => '上传凭证', 'Selected' => '已选择', 'Transfer Completed' => '我已完成转账', - 'Your transfer is being reviewed. ETA: 10-20 mins.' => '您的转账正在审核中。预计时间:10-20分钟。', + 'The specialized account for this transaction will be provided by our agent shortly.' => '交易专用账号将由我们的代理稍后提供。', + 'Transfer the exact amount. Upload proof below.' => '请转入准确金额,并在下方上传凭证。', + 'Bank Name' => '银行名称', 'Account Number' => '账号', 'Beneficiary' => '收款人', 'Reference' => '备注', + 'Copy' => '复制', 'Upload Proof' => '上传凭证', 'Selected' => '已选择', 'Transfer Completed' => '转账已完成', + 'Your transfer is being reviewed. ETA: 10-20 mins.' => '您的转账正在审核中,预计 10-20 分钟。', 'Back to Wallet' => '返回钱包', 'Matched & Active' => '已匹配并激活', - 'Services' => '服务', 'Spot Trading' => '现货交易', 'Futures Trading' => '期货交易', + 'Services' => '服务', 'Spot Trading' => '币币交易', 'Futures Trading' => '合约交易', 'Support' => '支持', 'Help Center' => '帮助中心', 'About Us' => '关于我们', 'Privacy Policy' => '隐私政策', 'Terms of Service' => '服务条款', - 'System Status' => '系统状态', 'Normal' => '正常', 'Overview' => '概览', 'Full Name' => '真实姓名', 'ID Number' => '证件号码', 'Submit' => '提交', 'Next-Gen Trading Engine' => '下一代交易引擎', - 'Experience ultra-low latency and institutional-grade liquidity on our professional K-line trading platform.' => '在我们的专业K线交易平台上体验超低延迟和机构级流动性。', + 'System Status' => '系统状态', 'Normal' => '正常', 'Overview' => '概览', 'Full Name' => '姓名', 'ID Number' => '身份证号', 'Submit' => '提交', 'Next-Gen Trading Engine' => '次世代交易引擎', + 'Experience ultra-low latency and institutional-grade liquidity on our professional K-line trading platform.' => '在我们的专业K线交易平台上体验极低延迟和机构级流动性。', 'Register Now' => '立即注册', 'Start Trading' => '开始交易', 'Go to Futures' => '前往合约', 'Global Crypto Hub' => '全球加密枢纽', - 'Access real-time global market data and execute trades across multiple asset classes with one unified account.' => '通过一个统一的账户访问实时全球市场数据并跨多个资产类别执行交易。', - 'Secure Asset Custody' => '安全的资产托管', 'Your funds are safe with our institutional-grade security, multi-sig cold storage, and comprehensive insurance fund.' => '您的资金在我们机构级的安全性、多重签名冷存储和全面的保险基金保护下非常安全。', + 'Access real-time global market data and execute trades across multiple asset classes with one unified account.' => '通过一个统一账户访问实时全球市场数据并执行跨多个资产类别的交易。', + 'Secure Asset Custody' => '安全资产托管', 'Your funds are safe with our institutional-grade security, multi-sig cold storage, and comprehensive insurance fund.' => '您的资金在我们的机构级安全、多重签名冷存储和全面保险基金的保护下非常安全。', 'Security Center' => '安全中心', '24/7 Global Support' => '24/7 全球支持', 'Our dedicated professional support team is available around the clock to assist you in multiple languages.' => '我们专业的支持团队全天候为您提供多种语言的帮助。', - 'Contact Support' => '联系支持', 'Asset' => '资产', '24h Change' => '24h 涨跌', '24h High' => '24h 最高', 'Action' => '操作', 'All Markets' => '全部市场', + 'Contact Support' => '联系支持', 'Asset' => '资产', '24h Change' => '24h涨跌', '24h High' => '24h最高', 'Action' => '操作', 'All Markets' => '所有市场', 'Real-time updates from global exchanges' => '来自全球交易所的实时更新', 'Safe & Secure' => '安全可靠', 'Industry-leading encryption and multi-signature cold storage for your digital assets.' => '为您的数字资产提供行业领先的加密和多重签名冷存储。', - 'Instant Execution' => '即时执行', 'Advanced matching engine processing over 100,000 transactions per second.' => '每秒处理超过 100,000 笔交易的先进撮合引擎。', - 'Get help whenever you need it with our around-the-clock professional customer service.' => '通过我们全天候的专业客户服务,随时获得您需要的帮助。', - 'Trade Anywhere, Anytime' => '随时随地进行交易', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => '在您的移动设备上体验我们交易所的全部功能。轻松交易现货和期货。', - 'Scan to download' => '扫码下载', 'Compatible with iOS and Android devices.' => '兼容 iOS 和 Android 设备。', - 'Account Overview' => '账户概览', 'Total Balance' => '总资产', 'Security Settings' => '安全设置', 'Login Password' => '登录密码', - 'Change' => '修改', 'Verified' => '已认证', 'Reviewing...' => '审核中...', 'none' => '未认证', 'pending' => '审核中', 'approved' => '已认证', - 'Trade with up to 100x leverage on BTC, ETH, and other major crypto pairs with professional risk management tools.' => '在 BTC、ETH 和其他主要加密货币对上使用高达 100 倍的杠杆进行交易,并配备专业的风险管理工具。', - 'Perpetual Contracts' => '永续合约', 'Identity verification submitted and is under review.' => '身份认证已提交,正在审核中。', - 'New passwords do not match.' => '新密码不匹配。', 'Password must be at least 6 characters.' => '密码长度必须至少为6位。', 'Password updated successfully.' => '密码更新成功。', 'Current password incorrect.' => '当前密码不正确。', - 'Hello! Welcome to BITCrypto. How can we help you today?' => '您好!欢迎来到 BITCrypto。今天有什么可以帮您的?', - 'Type a message...' => '输入消息...', 'Thank you for your message. An agent will be with you shortly.' => '感谢您的消息,客服人员稍后将为您提供服务。', - 'For security reasons, never share your login or trading passwords with anyone, including our support agents.' => '出于安全考虑,请勿向任何人(包括我们的客服人员)透露您的登录密码或交易密码。', - 'Why Choose BITCrypto?' => '为什么选择 BITCrypto?', 'Global Liquidity' => '全球流动性', 'Deep order books and high liquidity across all trading pairs for minimal slippage.' => '所有交易对均拥有深度订单簿和高流动性,确保最小滑点。', - 'Advanced Trading' => '高级交易', 'Professional charting tools, multi-order types, and real-time execution.' => '专业的图表工具、多种订单类型和实时执行。', - 'Trusted by Millions' => '数百万用户的信赖', 'Join a global community of traders and investors on one of the most secure platforms.' => '加入全球交易者和投资者的社区,在最安全的平台之一上进行交易。', - 'Our Partners' => '合作伙伴', 'Global Trust' => '全球信任', 'Assets Overview' => '资产总览', 'BITCrypto provides a comprehensive ecosystem for crypto enthusiasts, from beginners to professional institutional traders.' => 'BITCrypto 为加密爱好者提供了一个全面的生态系统,从初学者到专业的机构交易者都能在这里找到适合自己的工具。', - 'Our Global Partners' => '我们的全球合作伙伴', 'Primary Network' => '主要网络', 'Smart Contracts' => '智能合约', 'Security Audit' => '安全审计', 'Financial Partner' => '金融伙伴', 'Strategic Advisor' => '战略顾问', - 'Unverified' => '未认证', 'Verification' => '实名认证', 'digits' => '位数字', 'Search Pairs' => '搜索币种', 'No open orders' => '无挂单', 'Time' => '时间', 'Pair' => '币种', 'Type' => '类型', 'Side' => '方向', 'Filled' => '已成交', 'Open Orders' => '当前挂单', 'Order History' => '历史订单', 'Positions' => '当前仓位', - 'Total Net Value' => '总资产折算', 'Yesterday Profit/Loss' => '昨日盈亏', 'Link' => '去绑定', 'Recent Activities' => '最近动态', 'Account Login' => '账号登录', 'Update failed' => '更新失败', 'Confirm New Trading Password' => '确认新资金密码', 'New Trading Password' => '新资金密码', - 'The World\'s Leading' => '全球领先的', 'Crypto Exchange' => '数字资产交易所', 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.' => '在行业最低费率的交易所交易比特币、以太坊和数百种其他加密货币。', - 'Get Started' => '立即开始', 'View Markets' => '查看行情', 'Users' => '用户', '24h Volume' => '24h 成交额', 'Countries' => '覆盖国家', - 'Stay updated with real-time price changes' => '实时掌握价格波动', 'View All' => '查看全部', 'Name' => '币种名称', - 'Experience the most professional trading environment' => '体验最专业的交易环境', + 'Instant Execution' => '即时执行', 'Advanced matching engine processing over 100,000 transactions per second.' => '先进的撮合引擎,每秒处理超过100,000笔交易。', + 'Verification' => '实名认证', 'Reviewing...' => '审核中...', 'Verified' => '已认证', 'Unverified' => '未认证', 'Pending' => '审核中', 'Approved' => '已通过', 'Rejected' => '已拒绝', + 'Front Side' => '正面', 'Back Side' => '反面', 'Selfie with ID' => '手持证件照', + 'Change Login Password' => '修改登录密码', 'Change Trading Password' => '修改交易密码', + 'digits' => '位数字', 'Current Password' => '当前密码', 'New Password' => '新密码', 'Confirm New Password' => '确认新密码', + 'Save Changes' => '保存修改', 'Cancel' => '取消', 'Account Overview' => '账户概览', 'Total Balance' => '总余额', + 'Recent Activities' => '最近活动', 'Time' => '时间', 'Account Login' => '账号登录', 'Assets Overview' => '资产概览', + 'Total Net Value' => '总净值', 'Yesterday Profit/Loss' => '昨日盈亏', 'Security Settings' => '安全设置', + 'Last updated' => '最后更新', 'Recently' => '最近', 'Required for withdrawals' => '提现必填', 'Link' => '去绑定', + 'Enter your real name' => '输入真实姓名', 'Enter ID/Passport Number' => '输入证件号码', 'Change' => '去修改', + 'Name' => '币种', 'Price' => '价格', 'Trade' => '去交易', 'View All' => '查看全部', 'Market Trends' => '市场趋势', 'Stay updated with real-time price changes' => '实时掌握价格动态', + 'Get Started' => '立即开始', 'View Markets' => '查看行情', 'The World\'s Leading' => '全球领先的', 'Crypto Exchange' => '数字货币交易所', + 'Secure & Trusted' => '安全可信', 'Institutional Grade' => '机构级水准', 'Deep Liquidity' => '深度流动性', 'Global Access' => '全球访问', + 'Perpetual Contracts' => '永续合约', '100x Leverage' => '100倍杠杆', 'Join the Elite' => '加入精英行列', 'Trust BITCrypto' => '信赖 BITCrypto', + 'Funds' => '资金', 'Recharge' => '充值', 'Withdrawal' => '提现', 'Stop-Loss' => '止损', 'Take-Profit' => '止盈', 'Search' => '搜索', 'Search Pairs' => '搜索币对', 'Open Orders' => '当前委托', 'Order History' => '历史委托', 'Positions' => '当前持仓', 'No open orders' => '暂无挂单', 'Lots' => '张数', 'Cancel' => '撤单', 'Order submitted successfully!' => '订单提交成功!', 'Please enter a valid amount.' => '请输入有效数量。', 'Username' => '用户名', 'Password' => '密码', 'Sign In' => '登录', 'Sign Up' => '注册', 'Email' => '电子邮箱', 'Already have an account?' => '已有账号?', 'Don\'t have an account?' => '还没有账号?', 'Confirm Password' => '确认密码', 'Create Account' => '创建账号', + 'Trade Bitcoin, Ethereum, and hundreds of other cryptocurrencies with the lowest fees in the industry.' => '以行业最低的费用交易比特币、以太坊和数百种其他加密货币。', + 'Why Choose BITCrypto?' => '为什么选择 BITCrypto?', 'Experience the most professional trading environment with institutional-grade security and liquidity.' => '体验最专业的交易环境,拥有机构级的安全性和流动性。', 'Multi-sig Cold Storage' => '多重签名冷存储', 'DDoS Protection' => 'DDoS 防护', '2FA Security' => '双重身份验证', 'Ultra-low Latency' => '极低延迟', 'High Liquidity' => '高流动性', 'Zero Slippage' => '零滑点', - 'Multi-language Support' => '多语言支持', 'Live Chat' => '实时聊天', 'Fast Response' => '极速响应', - 'Trusted by industry leaders worldwide' => '全球行业领导者的信赖', 'Payment Partner' => '支付合作伙伴', 'Infrastructure' => '基础设施', - 'Download on the' => '在 App Store 下载', 'Get it on' => '在 Google Play 下载', 'Compatible with iOS and Android devices.' => '兼容 iOS 和 Android 设备。', - 'Trade Anywhere' => '随时随地交易', 'Download BITCrypto mobile app for iOS and Android' => '下载 BITCrypto 移动端 App,支持 iOS 和 Android', - 'Secure & Trusted' => '安全可靠', 'Your assets are protected by industry-leading security' => '您的资产受到行业领先的安全保护', - 'Crypto Deposit' => '数字货币充值', 'Fiat Deposit' => '法币充值', 'Select Currency' => '选择币种', 'Deposit Amount' => '充值金额', 'Submit Deposit' => '提交充值', - 'Select Fiat Currency' => '选择法币', 'Confirm Deposit' => '确认充值', - 'Order ID' => '订单编号', - 'A local merchant has been found. Matching account details...' => '已找到本地商家。正在匹配账户详情...', - 'Welcome! I am your dedicated matching assistant. I am currently verifying the liquidity provider for your deposit.' => '欢迎!我是您的专属匹配助手。我目前正在为您验证流动性提供商。', - 'Matching successful. I have secured a high-priority account for your transaction. Please find the details on the right.' => '匹配成功。我已为您的交易锁定了一个高优先级账户。请查看右侧的详细信息。', - 'Please upload your payment receipt/screenshot first.' => '请先上传您的付款收据/截图。', - 'Thank you for the update. We have received your payment proof and are now verifying the transaction on the blockchain. Your balance will be updated shortly.' => '感谢您的反馈。我们已收到您的付款凭证,目前正在区块链上验证该交易。您的余额稍后将更新。', + 'Multi-language Support' => '多语言支持', 'Live Chat' => '在线聊天', 'Fast Response' => '快速响应', + 'Trade Anywhere, Anytime' => '随时随地交易', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => '在您的移动设备上体验我们交易所的全部功能。轻松进行现货和合约交易。', + 'Download on the' => '在 App Store 下载', 'Get it on' => '在 Google Play 获取', 'Scan to download' => '扫描下载', 'Compatible with iOS and Android devices.' => '兼容 iOS 和 Android 设备。', + 'Global Trust' => '全球信任', 'Our Global Partners' => '我们的全球合作伙伴', 'Smart Contracts' => '智能合约', 'Primary Network' => '主网', 'Security Audit' => '安全审计', 'Financial Partner' => '金融合作伙伴', 'Strategic Advisor' => '战略顾问', + 'Please fill in all fields.' => '请填写所有字段。', 'Invalid username or password.' => '用户名或密码无效。', 'Login failed.' => '登录失败。', 'Login to BITCrypto' => '登录到 BITCrypto', 'Enter username' => '输入用户名', 'Enter password' => '输入密码', 'Remember me' => '记住我', 'Forgot password?' => '忘记密码?', 'Passwords do not match.' => '密码不匹配。', 'You must agree to the terms and privacy policy.' => '您必须同意服务条款和隐私政策。', 'Username already exists.' => '用户名已存在。', 'Username / Email' => '用户名 / 邮箱', 'Repeat password' => '重复密码', 'I have read and agree to the' => '我已阅读并同意', 'Join the world\'s leading crypto exchange' => '加入全球领先的加密交易所', 'Search assets...' => '搜索资产...', 'No assets found' => '未找到资产', 'Pair' => '交易对', 'Side' => '方向', 'Filled' => '已成交', 'Receipt uploaded successfully. Waiting for admin approval.' => '凭证上传成功。等待管理员审核。', - 'Network' => '网络', 'Scan QR code to deposit' => '扫码充值', 'Upload screenshot of your transaction' => '上传交易截图', 'Instant' => '秒到账', 'Regional Support' => '区域支持', - 'We will match you with a local merchant to facilitate your deposit in your local currency.' => '我们将为您匹配本地商家,方便您以本地货币进行充值。', - 'Processing Time: 10-30 mins' => '处理时间:10-30 分钟', 'Exchange Rate' => '汇率', 'Service Fee' => '手续费', 'Free' => '免费', - 'Secure Payment' => '安全支付', 'All transactions are encrypted' => '所有交易均已加密', 'Fast Arrival' => '极速到账', 'Most deposits arrive in mins' => '大多数充值在几分钟内到账', 'Live help for your deposit' => '充值实时帮助', - 'Address copied to clipboard' => '地址已复制到剪贴板' + 'Deposit Assets' => '充值资产', 'Choose your preferred method to fund your account' => '选择您喜欢的充值方式', + 'Crypto Deposit' => '数字货币充值', 'Fiat Deposit' => '法币充值', 'Instant' => '即时', 'Regional Support' => '地区支持', + 'Select Currency' => '选择币种', 'Network' => '网络', 'Deposit Address' => '充值地址', 'Scan QR code to deposit' => '扫描二维码进行充值', + 'Deposit Amount' => '充值金额', 'Upload screenshot of your transaction' => '上传您的交易截图', 'Submit Deposit' => '提交充值', + 'Select Fiat Currency' => '选择法币', 'We will match you with a local merchant to facilitate your deposit in your local currency.' => '我们将为您匹配当地商家,以便您以当地货币进行充值。', + 'Est. Arrival' => '预计到账', 'Processing Time: 10-30 mins' => '处理时间:10-30 分钟', 'Exchange Rate' => '汇率', + 'Service Fee' => '服务费', 'Free' => '免费', 'Confirm Deposit' => '确认充值', 'Secure Payment' => '安全支付', + 'All transactions are encrypted' => '所有交易均已加密', 'Fast Arrival' => '快速到账', 'Most deposits arrive in mins' => '大多数充值在几分钟内到账', + 'Address copied to clipboard' => '地址已复制到剪贴板', 'Withdrawal Address' => '提现地址', 'Notes' => '注意事项', + 'Withdrawals are processed within 10-30 minutes.' => '提现将在 10-30 分钟内处理。', + 'Minimum withdrawal amount is 10 USDT.' => '最低提现金额为 10 USDT。', + 'Ensure the receiving address supports the TRC20 network.' => '确保接收地址支持 TRC20 网络。', + 'Current password incorrect.' => '当前密码错误。', + 'Identity verification submitted and is under review.' => '身份认证已提交,正在审核中。', + 'New passwords do not match.' => '新密码不匹配。', 'Password must be at least 6 characters.' => '密码长度必须至少为 6 个字符。', + 'Password updated successfully.' => '密码更新成功。', 'Update failed' => '更新失败', + 'Login Password' => '登录密码', '2FA Authentication' => '双重身份验证', 'Google Authenticator' => '谷歌身份验证器', + 'Your identity documents are being verified by our team.' => '我们的团队正在验证您的身份文件。', + 'Submitted Details' => '已提交详情', 'Verified Identity' => '已验证身份', + 'Your account is fully verified for all features.' => '您的账户已完全通过验证,可以使用所有功能。', + 'Current Trading Password' => '当前交易密码', 'New Trading Password' => '新交易密码', + 'Confirm New Trading Password' => '确认新交易密码', 'Withdrawal request submitted successfully.' => '提现申请提交成功。', + 'Insufficient balance.' => '余额不足。', 'Why Choose BITCrypto?' => '为什么选择 BITCrypto?', + 'Experience the most professional trading environment with institutional-grade security and liquidity.' => '体验最专业的交易环境,拥有机构级的安全性和流动性。', + 'Multi-sig Cold Storage' => '多重签名冷存储', 'DDoS Protection' => 'DDoS 防护', '2FA Security' => '双重身份验证', + 'Ultra-low Latency' => '极低延迟', 'High Liquidity' => '高流动性', 'Zero Slippage' => '零滑点', + 'Multi-language Support' => '多语言支持', 'Live Chat' => '在线聊天', 'Fast Response' => '快速响应', + 'Trade Anywhere, Anytime' => '随时随地交易', 'Experience the full power of our exchange on your mobile device. Trade spot and futures with ease.' => '在您的移动设备上体验我们交易所的全部功能。轻松进行现货和合约交易。', + 'Download on the' => '在 App Store 下载', 'Get it on' => '在 Google Play 获取', 'Scan to download' => '扫描下载', 'Compatible with iOS and Android devices.' => '兼容 iOS 和 Android 设备。', + 'Global Trust' => '全球信任', 'Our Global Partners' => '我们的全球合作伙伴', 'Smart Contracts' => '智能合约', 'Primary Network' => '主网', 'Security Audit' => '安全审计', 'Financial Partner' => '金融合作伙伴', 'Strategic Advisor' => '战略顾问' ] ]; - - return $translations[$lang][$key] ?? $translations['en'][$key] ?? $key; + return $translations[$lang][$key] ?? $key; } -function t($key) { return mt($key); } - -// Determine if we need a back button (not on index.php) $current_page = basename($_SERVER['PHP_SELF']); -$is_home = ($current_page == 'index.php'); +$is_home = $current_page === 'index.php'; ?> - - BITCrypto - Global Leading Crypto Exchange - + + BITCrypto | Professional Crypto Exchange - + + -