1040 lines
46 KiB
PHP
1040 lines
46 KiB
PHP
<?php
|
||
session_start();
|
||
|
||
$lang = $_SESSION['lang'] ?? 'zh';
|
||
if (isset($_GET['lang'])) {
|
||
$lang = $_GET['lang'] === 'zh' ? 'zh' : 'en';
|
||
$_SESSION['lang'] = $lang;
|
||
}
|
||
|
||
$translations = [
|
||
'zh' => [
|
||
'home' => '首页',
|
||
'market' => '行情',
|
||
'second_contract' => '秒合约',
|
||
'spot' => '现货交易',
|
||
'contract' => '合约交易',
|
||
'mining' => '挖矿',
|
||
'swap' => '闪兑',
|
||
'personal' => '个人中心',
|
||
'login' => '登入',
|
||
'register' => '注册',
|
||
'logout' => '退出',
|
||
'language' => '语言选择',
|
||
'footer_about' => '关于',
|
||
'footer_product' => '产品',
|
||
'footer_support' => '支持',
|
||
'about_us' => '关于我们',
|
||
'news' => '新闻中心',
|
||
'terms' => '服务条款',
|
||
'help' => '帮助中心',
|
||
'privacy' => '法律与隐私',
|
||
'submit_request' => '提交请求',
|
||
'api_doc' => '接口文档',
|
||
'fee_structure' => '费率标准',
|
||
'app_download' => '应用下载',
|
||
'system_status' => '系统状态',
|
||
'normal' => '正常',
|
||
'cookie_policy' => '隐私政策',
|
||
'platform_advantage' => '为什么选择BYRO',
|
||
'partners' => '合作伙伴',
|
||
'deposit' => '充值',
|
||
'withdraw' => '提现',
|
||
'assets' => '资产',
|
||
'enter_verify_code' => '请输入验证码',
|
||
'verify_code_error' => '验证码错误或已过期',
|
||
'agree_terms_error' => '请同意服务协议',
|
||
'mobile_verify' => '手机验证码',
|
||
'email_verify' => '邮箱验证码',
|
||
'approved' => '通过',
|
||
'rejected' => '拒绝',
|
||
'login_admin_error' => '管理员请通过后台页面登录',
|
||
'fill_full_info' => '请填写完整信息',
|
||
'verification_code' => '验证码',
|
||
'agree_tos_privacy' => '我已阅读并同意《服务协议》和《隐私政策》',
|
||
'register_now' => '立即注册',
|
||
'resend' => '重新发送',
|
||
'send_failed' => '发送失败',
|
||
'invalid_email' => '无效的邮箱地址',
|
||
'congrats_won' => '恭喜你获利',
|
||
'sorry_lost' => '很遗憾亏损',
|
||
'trade_won' => '交易获利',
|
||
'trade_lost' => '交易亏损',
|
||
'confirm' => '确 认',
|
||
'buy' => '买',
|
||
'sell' => '卖',
|
||
'approx' => '约等于',
|
||
'cookie_policy_title' => '隐私政策',
|
||
'cookie_policy_content' => '<h3>1. 什么是隐私数据?</h3><p>隐私数据是您访问网站时存储在您的计算机或移动设备上的信息。它们广泛用于使网站运行或更高效地运行。</p>',
|
||
'recharge_msg_fiat' => "用户ID:%uid% 申请充值金额:%amount% %currency%=%res%泰达币",
|
||
'recharge_msg_crypto' => "用户ID:%uid% 申请充值金额:%amount% 泰达币 (%network%)",
|
||
'withdraw_msg_fiat' => "用户ID:%uid% 申请提现金额:%amount% 泰达币=%res% %currency%",
|
||
'withdraw_msg_crypto' => "用户ID:%uid% 申请提现金额:%amount% 泰达币 (%network%)",
|
||
'select_network' => '选择网络',
|
||
'address_copied' => '地址已复制',
|
||
'withdrawal_password_error' => '提现密码错误',
|
||
'withdraw_pwd_placeholder' => '请输入提现密码',
|
||
'recharge_amount_label' => '充值金额',
|
||
'withdraw_amount_label' => '提现金额',
|
||
'i_have_paid' => '我已付款',
|
||
'enter_amount' => '请输入金额',
|
||
'crypto_recharge_warning' => '请仅向此地址发送泰达币。发送其他资产可能会导致永久丢失。',
|
||
'recharge_steps' => '充值步骤',
|
||
'security_tips' => '安全提示',
|
||
'est_receive_fiat' => '预计收到法币',
|
||
'withdraw_steps' => '提现步骤',
|
||
'withdraw_password' => '提现密码',
|
||
'coin' => '币种',
|
||
'address' => '地址',
|
||
'network' => '网络',
|
||
'fiat_amount' => '法币金额',
|
||
'recharge_amount' => '充值金额',
|
||
'withdraw_amount' => '提现金额',
|
||
'withdraw_address' => '提现地址',
|
||
'min_withdraw_hint' => '最小提现金额 10 泰达币',
|
||
'secure' => '安全',
|
||
'fast' => '极速',
|
||
'support_247' => '全天候支持',
|
||
'market_name' => '行情',
|
||
'trading' => '交易',
|
||
'status_normal' => '系统状态:正常',
|
||
'copyright' => '© 2023-2026 BYRO. 版权所有。',
|
||
'back' => '返回',
|
||
'crypto_withdraw' => '加密货币提现',
|
||
'fiat_withdraw' => '法币提现',
|
||
'to_receive' => '预计到账',
|
||
'confirm_order' => '确认订单',
|
||
'select_currency' => '选择币种',
|
||
'fiat_recharge' => '法币充值',
|
||
'crypto_recharge' => '加密货币充值',
|
||
'est_usdt' => '预计泰达币',
|
||
'enter_address' => '请输入地址',
|
||
'enter_password' => '请输入密码',
|
||
'request_sent' => '请求已发送,请检查聊天。',
|
||
'cs_connect_fail' => '连接失败,请刷新。',
|
||
'copy_success' => '复制成功',
|
||
'market_view' => '查看市场',
|
||
'prof_terminal' => '专业终端',
|
||
'prof_terminal_desc' => '高性能交易引擎,毫秒级响应。',
|
||
'inst_security' => '机构级安全',
|
||
'inst_security_desc' => '多层加密和冷存储方案,确保资产安全。',
|
||
'advantage_1_title' => '合规运营',
|
||
'advantage_1_desc' => '全球合规化运营,冷热钱包隔离。',
|
||
'advantage_2_title' => '深度流动性',
|
||
'advantage_2_desc' => '毫秒级撮合引擎,流动性充足。',
|
||
'advantage_3_title' => '全天候支持',
|
||
'advantage_3_desc' => '多语言客服全天候在线。',
|
||
'advantage_4_title' => '多元化产品',
|
||
'advantage_4_desc' => '涵盖现货、合约、秒合约和挖矿。',
|
||
'popular_markets' => '热门市场',
|
||
'view_more' => '更多',
|
||
'why_choose_us' => '为什么选择我们',
|
||
'footer_desc' => 'BYRO是全球领先的数字资产交易平台,为个人和机构提供安全、可靠的交易服务。',
|
||
'hero_title' => '全球领先的数字资产平台',
|
||
'hero_subtitle' => '在BYRO开启您的加密货币之旅,安全、稳定、可靠。',
|
||
'get_started' => '立即开启',
|
||
'account_exists' => '账号已存在或数据库错误',
|
||
'pwd_mismatch' => '两次输入的密码不一致',
|
||
'join_secure' => '加入全球领先的交易平台',
|
||
'have_account' => '已有账号?',
|
||
'usd_name' => '美元',
|
||
'eur_name' => '欧元',
|
||
'gbp_name' => '英镑',
|
||
'cny_name' => '人民币',
|
||
'jpy_name' => '日元',
|
||
'krw_name' => '韩元',
|
||
'hkd_name' => '港币',
|
||
'twd_name' => '新台币',
|
||
'sgd_name' => '新加坡元',
|
||
'myr_name' => '林吉特',
|
||
'thb_name' => '泰铢',
|
||
'vnd_name' => '越南盾',
|
||
'recharge_step1' => '选择您想要充值的币种和网络。',
|
||
'recharge_step2' => '复制充值地址或扫描二维码。',
|
||
'recharge_step3' => '完成转账后,等待网络确认。',
|
||
'recharge_step4' => '如有任何问题,请联系在线客服。',
|
||
'recharge_tip1' => '请务必核对充值网络,错误的地址将导致资产丢失。',
|
||
'recharge_tip2' => '充值完成后,请妥善保存转账凭证。',
|
||
'recharge_tip3' => '请勿向他人透露您的账户私密信息。',
|
||
'recharge_tip4' => '充值由系统自动到账,高峰期可能有延迟。',
|
||
'withdraw_step1' => '选择提现币种并输入提现地址。',
|
||
'withdraw_step2' => '输入您想要提现的金额。',
|
||
'withdraw_step3' => '确认费用并提交提现申请。',
|
||
'withdraw_step4' => '财务人员将在审核后处理您的请求。',
|
||
'withdraw_tip1' => '提现前请确保地址完全正确。',
|
||
'withdraw_tip2' => '错误的提现地址将无法追回资产。',
|
||
'withdraw_tip3' => '提现申请一旦提交,无法撤回。',
|
||
'withdraw_tip4' => '如有延误,请联系全天候在线客服。',
|
||
'withdraw_fee' => '手续费',
|
||
'unit_seconds' => '秒',
|
||
'trading_pair' => '交易对',
|
||
'leverage' => '杠杆',
|
||
'buy_long' => '买入/做多',
|
||
'buy_price' => '买入价',
|
||
'sell_short' => '卖出/做空',
|
||
'sell_price' => '卖出价',
|
||
'long' => '做多',
|
||
'short' => '做空',
|
||
'close' => '平仓',
|
||
'settling' => '结算中...',
|
||
'amount_limit_error' => '金额超出限制 (%min% - %max%)',
|
||
'settlement_price' => '结算价',
|
||
'warning' => '警告',
|
||
'high' => '最高',
|
||
'low' => '最低',
|
||
'chinese' => '中文',
|
||
'english' => '英文',
|
||
'qr_code' => '二维码',
|
||
'bitcoin' => '比特币',
|
||
'ethereum' => '以太坊',
|
||
'tether' => '泰达币',
|
||
'binance_coin' => '币安币',
|
||
'solana' => '索拉纳',
|
||
'ripple' => '瑞波币',
|
||
'cardano' => '卡尔达诺',
|
||
'dogecoin' => '狗狗币',
|
||
'polkadot' => '波卡',
|
||
'polygon' => '多边形',
|
||
'avalanche' => '雪崩',
|
||
'chainlink' => '链连',
|
||
'shiba_inu' => '柴犬币',
|
||
'tron' => '波场',
|
||
'bitcoin_cash' => '比特币现金',
|
||
'litecoin' => '莱特币',
|
||
'uniswap' => '独角兽',
|
||
'site_title' => '全球领先的数字资产交易平台',
|
||
'unverified' => '未认证',
|
||
'pending' => '审核中',
|
||
'verified' => '已认证',
|
||
'real_name' => '实名认证',
|
||
'credit_score' => '信用分',
|
||
'last_price' => '最新价',
|
||
'change_24h' => '24小时涨跌',
|
||
'vol_24h' => '24小时成交额',
|
||
'welcome_back' => '欢迎回来',
|
||
'forgot_password' => '忘记密码?',
|
||
'no_account' => '没有账号?',
|
||
'invalid_account_pwd' => '账号或密码错误',
|
||
'account' => '账号 / 邮箱',
|
||
'mobile_reg' => '手机注册',
|
||
'email_reg' => '邮箱注册',
|
||
'uploading' => '正在上传...',
|
||
'uid' => '用户ID',
|
||
'recharge' => '充值',
|
||
'withdrawal' => '提现',
|
||
'binary_win' => '秒合约获利',
|
||
'binary_loss' => '秒合约亏损',
|
||
'flash_exchange' => '闪兑',
|
||
'contract_settle' => '合约结算',
|
||
'contract_margin' => '合约保证金',
|
||
'fill_all_fields' => '请填写所有字段',
|
||
'kyc_submitted' => '实名认证资料已提交,请等待审核',
|
||
'kyc_pending_desc' => '您的实名认证正在审核中,通常需要 24 小时内完成。',
|
||
'full_name' => '全名',
|
||
'enter_full_name' => '请输入全名',
|
||
'id_number' => '证件号码',
|
||
'enter_id_number' => '请输入证件号码',
|
||
'id_front' => '证件正面',
|
||
'id_back' => '证件反面',
|
||
'id_handheld' => '手持证件照',
|
||
'upload' => '点击上传',
|
||
'kyc_steps' => '认证步骤',
|
||
'kyc_step1' => '填写您的真实姓名和身份证号。',
|
||
'kyc_step2' => '上传您的身份证正反面照片。',
|
||
'kyc_step3' => '上传您手持身份证的照片,确保面部清晰。',
|
||
'submit' => '提交',
|
||
'kyc_instructions' => '请确保上传的照片清晰可见,光线充足,不要遮挡关键信息。认证成功后将无法修改,请务必填写真实信息。',
|
||
'online_support' => '在线客服',
|
||
'type_message' => '输入消息...',
|
||
'welcome_support' => '欢迎来到BYRO支持中心!有什么可以帮您的?',
|
||
'mining_desc' => '专业的云挖矿和质押平台,加入成千上万的用户。',
|
||
'mining_pool' => '矿池',
|
||
'day' => '天',
|
||
'flexible' => '活期',
|
||
'est_apy' => '预计年化',
|
||
'min_deposit' => '起购金额',
|
||
'lock_period' => '锁定周期',
|
||
'principal_protected' => '本金保障',
|
||
'daily_payouts' => '每日派息',
|
||
'why_mining' => '为什么选择BYRO挖矿?',
|
||
'adv_hardware' => '先进硬件',
|
||
'adv_hardware_desc' => '我们使用最新的矿机,最大化收益。',
|
||
'auto_compound' => '自动复利',
|
||
'auto_compound_desc' => '每日收益自动再投资。',
|
||
'real_time_monitor' => '实时监控',
|
||
'real_time_monitor_desc' => '实时追踪您的算力和收益。',
|
||
'calc_profit' => '计算您的收益',
|
||
'calc_desc' => '输入投资金额以估算每日收益',
|
||
'amount_to_invest' => '投资金额',
|
||
'daily_profit' => '每日利润',
|
||
'monthly_profit' => '每月利润',
|
||
'try_calc' => '开始计算',
|
||
'app_desc' => '随时随地进行交易。通过BYRO移动应用掌控您的数字资产。',
|
||
'download_on' => '下载于',
|
||
'get_it_on' => '立即获取',
|
||
'scan_download' => '扫码下载',
|
||
'real_time_alerts' => '实时行情推送',
|
||
'full_trading_features' => '全功能交易体验',
|
||
'two_fa_security' => '双重身份验证',
|
||
'live_chat_247' => '24/7 在线客服',
|
||
'our_mission' => '我们的使命',
|
||
'mission_content' => '让数字资产交易对每个人、每个地方都变得触手可及、安全且直观。我们相信区块链的力量能够改变全球金融格局。',
|
||
'global_presence' => '全球业务',
|
||
'presence_content' => 'BYRO在新加坡、伦敦和东京设有办事处,服务于多元化的全球社区。我们符合国际标准,并优先考虑用户资产的安全。',
|
||
'users' => '用户管理',
|
||
'countries' => '国家',
|
||
'daily_volume' => '每日交易量',
|
||
'about_content' => 'BYRO是成立于 2023 年的全球领先数字货币交易所。',
|
||
'news_content' => '获取BYRO的最新动态、上市公告和市场洞察。',
|
||
'announcement' => '公告',
|
||
'read_more' => '阅读更多',
|
||
'newsletter' => '新闻通讯',
|
||
'newsletter_desc' => '订阅以获取最新的加密见解,直接发送到您的收件箱。',
|
||
'email_address' => '邮箱地址',
|
||
'join' => '加入',
|
||
'popular_topics' => '热门话题',
|
||
'effective_date' => '生效日期:2026年2月16日',
|
||
'tos_1_title' => '1. 接受条款',
|
||
'tos_1_content' => '通过访问或使用BYRO平台,您同意受这些服务条款的约束。如果您不同意这些条款,请不要使用我们的服务。',
|
||
'tos_2_title' => '2. 资格',
|
||
'tos_2_content' => '您必须年满 18 岁,并具有签订约束协议的法律能力,才能使用我们的平台。您有责任确保您对BYRO的使用符合所有当地法律法规。',
|
||
'tos_3_title' => '3. 账户安全',
|
||
'tos_3_content' => '您有责任维护您的账户凭据的机密性,并对在您的账户下发生的所有活动负责。您同意立即通知BYRO任何未经授权使用您账户的情况。',
|
||
'tos_4_title' => '4. 交易风险',
|
||
'tos_4_content' => '数字资产交易涉及重大风险。价格波动剧烈,您可能会损失全部投资。BYRO不提供财务建议。',
|
||
'tos_5_title' => '5. 终止',
|
||
'tos_5_content' => 'BYRO保留随时因任何原因(包括违反这些条款)暂停或终止您的账户的权利。',
|
||
'last_updated' => '最后更新:2026年2月16日',
|
||
'privacy_1_title' => '引言',
|
||
'privacy_1_content' => 'BYRO(“我们”或“我们的”)尊重您的隐私,并致力于保护您的个人数据。本隐私政策告知您当您访问我们的网站时,我们如何处理您的个人数据。',
|
||
'privacy_2_title' => '我们收集的数据',
|
||
'privacy_2_content' => '我们可能会收集、使用、存储和传输有关您的不同种类的个人数据,包括身份数据、联系数据、财务数据和技术数据。',
|
||
'privacy_3_title' => '我们如何使用您的数据',
|
||
'privacy_3_content' => '我们只会在法律允许的情况下使用您的个人数据。最常见的是,我们将使用您的个人数据来执行我们即将与您签订或已经与您签订的合同。',
|
||
'privacy_4_title' => '数据安全',
|
||
'privacy_4_content' => '我们已实施适当的安全措施,以防止您的个人数据意外丢失、以未经授权的方式使用或访问。',
|
||
'privacy_5_title' => '您的法律权利',
|
||
'privacy_5_content' => '在某些情况下,根据数据保护法,您拥有与您的个人数据相关的权利,包括要求访问、更正、删除或限制您的个人数据的权利。',
|
||
'issue_type' => '问题类型',
|
||
'account_access' => '账户访问',
|
||
'dep_with_issue' => '充值/提现',
|
||
'trading_issue' => '交易问题',
|
||
'bug_report' => '错误报告',
|
||
'other' => '其他',
|
||
'subject' => '主题',
|
||
'description' => '描述',
|
||
'submit_ticket' => '提交工单',
|
||
'support_response_time' => '我们的典型响应时间在 2 小时内。对于紧急问题,请使用右下角的实时聊天。',
|
||
'api_intro' => '引言',
|
||
'api_auth' => '身份验证',
|
||
'api_market_data' => '行情数据',
|
||
'api_trade_endpoints' => '交易接口',
|
||
'api_errors' => '错误代码',
|
||
'api_intro_desc' => '欢迎使用接口。我们的接口允许您以编程方式访问市场数据、管理您的账户并执行交易。我们使用先进的架构确保稳定性。',
|
||
'api_auth_desc' => '所有私有接口都需要密钥身份验证。您可以在账户个人资料设置中生成密钥。',
|
||
'api_get_ticker' => '获取行情',
|
||
'api_get_ticker_desc' => '返回指定交易对的最新价格和 24 小时成交量。',
|
||
'api_place_order' => '下单',
|
||
'api_payload_example' => '数据示例:',
|
||
'tier' => '等级',
|
||
'trading_vol_30d' => '30天交易量',
|
||
'maker_fee' => '挂单费',
|
||
'taker_fee' => '吃单费',
|
||
'regular' => '普通',
|
||
'spot_fees' => '现货交易费率',
|
||
'contract_fees' => '合约交易费率',
|
||
'trade_spot' => '现货',
|
||
'trade_contract' => '合约',
|
||
'trade_binary' => '秒合约',
|
||
'search' => '搜索',
|
||
'profit' => '收益',
|
||
'buy_up' => '看涨',
|
||
'buy_down' => '看跌',
|
||
'expected_profit' => '预期收益',
|
||
'purchase_amount' => '买入金额',
|
||
'cycle_settlement' => '周期结算',
|
||
'available_balance' => '可用余额',
|
||
'balance' => '余额',
|
||
'kyc' => '实名认证',
|
||
'security' => '安全中心',
|
||
'trade' => '交易',
|
||
'failed' => '失败',
|
||
'success' => '成功',
|
||
'direction' => '方向',
|
||
'order' => '订单',
|
||
'insufficient_balance' => '余额不足',
|
||
'limit' => '限价',
|
||
'amount' => '数量',
|
||
'operation' => '操作',
|
||
'frozen' => '冻结',
|
||
'converted_to' => '折合',
|
||
'asset_records' => '资产记录',
|
||
'no_records_found' => '暂无记录',
|
||
'type' => '类型',
|
||
'status' => '状态',
|
||
'time' => '时间',
|
||
'hot' => '热门',
|
||
'executing' => '进行中',
|
||
'won' => '盈利',
|
||
'loss' => '亏损',
|
||
'total' => '总计',
|
||
'orders' => '订单',
|
||
'all' => '全部',
|
||
'pnl' => '盈亏',
|
||
'completed' => '已完成',
|
||
'lost' => '亏损',
|
||
'rejected' => '已拒绝',
|
||
'cancelled' => '已取消',
|
||
'app_store' => '苹果商店',
|
||
'google_play' => '谷歌商店',
|
||
'android_apk' => '安卓应用',
|
||
'ios_install' => '苹果安装',
|
||
'sec_contract' => '秒合约',
|
||
'sec_contract_desc' => '预测涨跌,秒级结算',
|
||
'app_guide_step1' => '使用手机相机或浏览器扫描上方二维码,或直接点击下载按钮获取安装包。',
|
||
'app_guide_step2' => '下载完成后,在手机设置中开启“允许安装未知来源应用”权限,以确保顺利安装。',
|
||
'app_guide_step3' => '安装完成后,打开 APP 并登录您的账户,即可开始全球领先的数字资产交易之旅。',
|
||
'app_install_auth' => '授权安装',
|
||
'app_experience_now' => '立即体验',
|
||
'support_anywhere' => '随时随地支持',
|
||
'app_mockup_desc' => '在BYRO移动应用中掌控您的数字资产。随时随地进行交易。',
|
||
'scan_qr_to_download' => '扫码下载',
|
||
'vol_unit' => '万',
|
||
'from' => '从',
|
||
'to' => '到',
|
||
'rate' => '汇率',
|
||
'price_impact' => '价格影响',
|
||
'slippage' => '滑点',
|
||
'swap_now' => '立即闪兑',
|
||
'start_mining' => '开始挖矿',
|
||
'time_fs' => '分时',
|
||
'time_1m' => '1分',
|
||
'time_5m' => '5分',
|
||
'time_15m' => '15分',
|
||
'time_30m' => '30分',
|
||
'time_1h' => '1小时',
|
||
'time_4h' => '4小时',
|
||
'time_1d' => '1天',
|
||
'time_1w' => '1周',
|
||
'indicators' => '指标',
|
||
'chart' => '图表',
|
||
'depth' => '深度',
|
||
'price' => '价格',
|
||
'quantity' => '数量',
|
||
'open_orders' => '当前委托',
|
||
'settlement_history' => '历史记录',
|
||
'details' => '详情',
|
||
'confirm_close_pos' => '确认平仓吗?',
|
||
'pos_closed' => '仓位已平',
|
||
'order_in_progress' => '订单进行中',
|
||
'current_price' => '当前价格',
|
||
'opening_price' => '开仓价格',
|
||
'final_price_settlement' => '最终价格以结算时为准',
|
||
'error_msg_placeholder' => '错误消息',
|
||
'unauthorized' => '未授权',
|
||
'invalid_amount' => '无效金额',
|
||
'account_frozen' => '账号已冻结',
|
||
'invalid_action' => '无效操作',
|
||
'request_failed' => '请求失败',
|
||
'vip_level' => 'VIP等级',
|
||
'level' => '等级',
|
||
'recharge_to_upgrade' => '还需充值 %amount% USDT 升级到 VIP %level%',
|
||
'highest_level' => '已达到最高等级',
|
||
'USDT' => '泰达币',
|
||
'BTC' => '比特币',
|
||
'ETH' => '以太坊',
|
||
'BNB' => '币安币',
|
||
'SOL' => '索拉纳',
|
||
'XRP' => '瑞波币',
|
||
'ADA' => '卡尔达诺',
|
||
'DOGE' => '狗狗币',
|
||
'DOT' => '波卡',
|
||
'MATIC' => '多边形',
|
||
'LINK' => '链连',
|
||
'SHIB' => '柴犬币',
|
||
'TRX' => '波场',
|
||
'BCH' => '比特币现金',
|
||
'LTC' => '莱特币',
|
||
'UNI' => '独角兽',
|
||
'security_level' => '安全等级',
|
||
'login_password' => '登录密码',
|
||
'old_password' => '原密码',
|
||
'new_password' => '新密码',
|
||
'confirm_new_password' => '确认新密码',
|
||
'set_password' => '设置密码',
|
||
'binding_phone' => '手机绑定',
|
||
'google_verification' => '谷歌验证',
|
||
'binding_mailbox' => '邮箱绑定',
|
||
'update' => '修改',
|
||
'low' => '低',
|
||
'medium' => '中',
|
||
'high' => '高',
|
||
'bound' => '已绑定',
|
||
'not_bound' => '未绑定',
|
||
'copy' => '复制',
|
||
'old_pwd_incorrect' => '原密码不正确',
|
||
'pwd_changed_success' => '密码修改成功',
|
||
'trade_pwd_updated' => '交易密码已更新',
|
||
'security_step1' => '为了您的资产安全,请务必绑定手机和邮箱,并开启谷歌验证。',
|
||
'security_step2' => '请妥善保管您的登录密码和交易密码,切勿泄露给他人。',
|
||
'trade_password' => '交易密码',
|
||
'aud_name' => '澳大利亚元',
|
||
'cad_name' => '加拿大元',
|
||
'chf_name' => '瑞士法郎',
|
||
'brl_name' => '巴西雷亚尔',
|
||
'rub_name' => '俄罗斯卢布',
|
||
'inr_name' => '印度卢比',
|
||
'zar_name' => '南非兰特',
|
||
'try_name' => '土耳其里拉',
|
||
'aed_name' => '阿联酋迪拉姆',
|
||
'sar_name' => '沙特里亚尔',
|
||
'mxn_name' => '墨西哥比索',
|
||
'php_name' => '菲律宾比索',
|
||
'idr_name' => '印尼盾',
|
||
'platform_home' => '平台首页',
|
||
'admin_panel' => '超级管理后台',
|
||
'agent_panel' => '代理管理后台',
|
||
'finance_management' => '充提管理',
|
||
'finance_details' => '财务明细',
|
||
'sec_contract_management' => '秒合约管理',
|
||
'contract_trading' => '合约交易',
|
||
'spot_trading' => '现货交易',
|
||
'exchange_management' => '兑换管理',
|
||
'mining_management' => '挖矿管理',
|
||
'ai_control' => 'AI控盘',
|
||
'backend_settings' => '后台设置',
|
||
'personal_settings' => '个人设置',
|
||
'agents' => '代理管理',
|
||
],
|
||
'en' => [
|
||
'home' => 'Home',
|
||
'market' => 'Market',
|
||
'second_contract' => 'Binary',
|
||
'spot' => 'Spot',
|
||
'contract' => 'Contract',
|
||
'mining' => 'Mining',
|
||
'swap' => 'Swap',
|
||
'personal' => 'Account',
|
||
'login' => 'Login',
|
||
'register' => 'Register',
|
||
'logout' => 'Logout',
|
||
'language' => 'Language',
|
||
'footer_about' => 'About',
|
||
'footer_product' => 'Products',
|
||
'footer_support' => 'Support',
|
||
'about_us' => 'About Us',
|
||
'news' => 'News',
|
||
'terms' => 'Terms of Service',
|
||
'help' => 'Help Center',
|
||
'privacy' => 'Privacy Policy',
|
||
'submit_request' => 'Submit Request',
|
||
'api_doc' => 'API Docs',
|
||
'fee_structure' => 'Fees',
|
||
'app_download' => 'Download App',
|
||
'system_status' => 'System Status',
|
||
'normal' => 'Normal',
|
||
'cookie_policy' => 'Cookie Policy',
|
||
'platform_advantage' => 'Why Choose BYRO',
|
||
'partners' => 'Partners',
|
||
'deposit' => 'Deposit',
|
||
'withdraw' => 'Withdraw',
|
||
'assets' => 'Assets',
|
||
'enter_verify_code' => 'Please enter verification code',
|
||
'verify_code_error' => 'Invalid or expired verification code',
|
||
'agree_terms_error' => 'Please agree to terms',
|
||
'mobile_verify' => 'Mobile Code',
|
||
'email_verify' => 'Email Code',
|
||
'approved' => 'Approved',
|
||
'rejected' => 'Rejected',
|
||
'login_admin_error' => 'Admin please login via backend',
|
||
'fill_full_info' => 'Please fill in full info',
|
||
'verification_code' => 'Verification Code',
|
||
'agree_tos_privacy' => 'I have read and agree to the Terms of Service and Privacy Policy',
|
||
'register_now' => 'Register Now',
|
||
'resend' => 'Resend',
|
||
'send_failed' => 'Send Failed',
|
||
'invalid_email' => 'Invalid Email',
|
||
'congrats_won' => 'Congrats, you won',
|
||
'sorry_lost' => 'Sorry, you lost',
|
||
'trade_won' => 'Trade Profit',
|
||
'trade_lost' => 'Trade Loss',
|
||
'confirm' => 'Confirm',
|
||
'buy' => 'Buy',
|
||
'sell' => 'Sell',
|
||
'approx' => 'Approx.',
|
||
'cookie_policy_title' => 'Cookie Policy',
|
||
'cookie_policy_content' => '<h3>1. What are Cookies?</h3><p>Cookies are small text files stored on your device when you visit a website. They are used to make websites work efficiently.</p>',
|
||
'recharge_msg_fiat' => "UID: %uid% Request Recharge: %amount% %currency%=%res%USDT",
|
||
'recharge_msg_crypto' => "UID: %uid% Request Recharge: %amount% USDT (%network%)",
|
||
'withdraw_msg_fiat' => "UID: %uid% Request Withdraw: %amount% USDT=%res% %currency%",
|
||
'withdraw_msg_crypto' => "UID: %uid% Request Withdraw: %amount% USDT (%network%)",
|
||
'select_network' => 'Select Network',
|
||
'address_copied' => 'Address Copied',
|
||
'withdrawal_password_error' => 'Withdrawal Password Error',
|
||
'withdraw_pwd_placeholder' => 'Enter withdrawal password',
|
||
'recharge_amount_label' => 'Recharge Amount',
|
||
'withdraw_amount_label' => 'Withdraw Amount',
|
||
'i_have_paid' => 'I Have Paid',
|
||
'enter_amount' => 'Enter Amount',
|
||
'crypto_recharge_warning' => 'Please only send USDT to this address. Sending other assets may result in permanent loss.',
|
||
'recharge_steps' => 'Recharge Steps',
|
||
'security_tips' => 'Security Tips',
|
||
'est_receive_fiat' => 'Est. Receive Fiat',
|
||
'withdraw_steps' => 'Withdraw Steps',
|
||
'withdraw_password' => 'Withdraw Password',
|
||
'coin' => 'Coin',
|
||
'address' => 'Address',
|
||
'network' => 'Network',
|
||
'fiat_amount' => 'Fiat Amount',
|
||
'recharge_amount' => 'Recharge Amount',
|
||
'withdraw_amount' => 'Withdraw Amount',
|
||
'withdraw_address' => 'Withdraw Address',
|
||
'min_withdraw_hint' => 'Min. Withdraw 10 USDT',
|
||
'secure' => 'Secure',
|
||
'fast' => 'Fast',
|
||
'support_247' => '24/7 Support',
|
||
'market_name' => 'Market',
|
||
'trading' => 'Trading',
|
||
'status_normal' => 'System Status: Normal',
|
||
'copyright' => '© 2023-2026 BYRO. All rights reserved.',
|
||
'back' => 'Back',
|
||
'crypto_withdraw' => 'Crypto Withdraw',
|
||
'fiat_withdraw' => 'Fiat Withdraw',
|
||
'to_receive' => 'To Receive',
|
||
'confirm_order' => 'Confirm Order',
|
||
'select_currency' => 'Select Currency',
|
||
'fiat_recharge' => 'Fiat Recharge',
|
||
'crypto_recharge' => 'Crypto Recharge',
|
||
'est_usdt' => 'Est. USDT',
|
||
'enter_address' => 'Enter Address',
|
||
'enter_password' => 'Enter Password',
|
||
'request_sent' => 'Request sent, please check chat.',
|
||
'cs_connect_fail' => 'Connect fail, please refresh.',
|
||
'copy_success' => 'Copy Success',
|
||
'market_view' => 'Market View',
|
||
'prof_terminal' => 'Prof. Terminal',
|
||
'prof_terminal_desc' => 'High performance trading engine.',
|
||
'inst_security' => 'Inst. Security',
|
||
'inst_security_desc' => 'Multi-layer encryption.',
|
||
'advantage_1_title' => 'Compliance',
|
||
'advantage_1_desc' => 'Global compliant operations.',
|
||
'advantage_2_title' => 'Liquidity',
|
||
'advantage_2_desc' => 'Deep liquidity.',
|
||
'advantage_3_title' => '24/7 Support',
|
||
'advantage_3_desc' => 'Multi-language support.',
|
||
'advantage_4_title' => 'Diverse Products',
|
||
'advantage_4_desc' => 'Covering Spot, Contract, etc.',
|
||
'popular_markets' => 'Popular Markets',
|
||
'view_more' => 'View More',
|
||
'why_choose_us' => 'Why Choose Us',
|
||
'footer_desc' => 'BYRO is a leading digital asset platform.',
|
||
'hero_title' => 'Leading Digital Asset Platform',
|
||
'hero_subtitle' => 'Start your crypto journey with BYRO.',
|
||
'get_started' => 'Get Started',
|
||
'account_exists' => 'Account exists or error',
|
||
'pwd_mismatch' => 'Passwords mismatch',
|
||
'join_secure' => 'Join the leading platform',
|
||
'have_account' => 'Have an account?',
|
||
'usd_name' => 'USD',
|
||
'eur_name' => 'EUR',
|
||
'gbp_name' => 'GBP',
|
||
'cny_name' => 'CNY',
|
||
'jpy_name' => 'JPY',
|
||
'krw_name' => 'KRW',
|
||
'hkd_name' => 'HKD',
|
||
'twd_name' => 'TWD',
|
||
'sgd_name' => 'SGD',
|
||
'myr_name' => 'MYR',
|
||
'thb_name' => 'THB',
|
||
'vnd_name' => 'VND',
|
||
'recharge_step1' => 'Select coin and network.',
|
||
'recharge_step2' => 'Copy address or scan QR.',
|
||
'recharge_step3' => 'Wait for network confirmation.',
|
||
'recharge_step4' => 'Contact support for help.',
|
||
'recharge_tip1' => 'Check network carefully.',
|
||
'recharge_tip2' => 'Keep your vouchers safe.',
|
||
'recharge_tip3' => 'Never share your info.',
|
||
'recharge_tip4' => 'Auto-arrival, peak delay possible.',
|
||
'withdraw_step1' => 'Select coin and enter address.',
|
||
'withdraw_step2' => 'Enter amount.',
|
||
'withdraw_step3' => 'Confirm fee and submit.',
|
||
'withdraw_step4' => 'Finance will process soon.',
|
||
'withdraw_tip1' => 'Check address carefully.',
|
||
'withdraw_tip2' => 'Wrong address is non-recoverable.',
|
||
'withdraw_tip3' => 'Cannot withdraw after submit.',
|
||
'withdraw_tip4' => 'Contact 24/7 support for delay.',
|
||
'withdraw_fee' => 'Fee',
|
||
'unit_seconds' => 's',
|
||
'trading_pair' => 'Trading Pair',
|
||
'leverage' => 'Leverage',
|
||
'buy_long' => 'Buy/Long',
|
||
'buy_price' => 'Buy Price',
|
||
'sell_short' => 'Sell/Short',
|
||
'sell_price' => 'Sell Price',
|
||
'long' => 'Long',
|
||
'short' => 'Short',
|
||
'close' => 'Close',
|
||
'settling' => 'Settling...',
|
||
'amount_limit_error' => 'Amount limit (%min% - %max%)',
|
||
'settlement_price' => 'Settle Price',
|
||
'warning' => 'Warning',
|
||
'high' => 'High',
|
||
'low' => 'Low',
|
||
'chinese' => 'Chinese',
|
||
'english' => 'English',
|
||
'qr_code' => 'QR Code',
|
||
'password' => 'Password',
|
||
'mobile_number' => 'Mobile Number',
|
||
'confirm_password' => 'Confirm Password',
|
||
'send_code' => 'Send Code',
|
||
'email' => 'Email',
|
||
'email_placeholder' => 'Enter email address',
|
||
'registration_verify' => 'Registration Verify',
|
||
'bitcoin' => 'Bitcoin',
|
||
'ethereum' => 'Ethereum',
|
||
'tether' => 'Tether',
|
||
'binance_coin' => 'BNB',
|
||
'solana' => 'Solana',
|
||
'ripple' => 'Ripple',
|
||
'cardano' => 'Cardano',
|
||
'dogecoin' => 'Dogecoin',
|
||
'polkadot' => 'Polkadot',
|
||
'polygon' => 'Polygon',
|
||
'avalanche' => 'Avalanche',
|
||
'chainlink' => 'Chainlink',
|
||
'shiba_inu' => 'Shiba Inu',
|
||
'tron' => 'TRON',
|
||
'bitcoin_cash' => 'Bitcoin Cash',
|
||
'litecoin' => 'Litecoin',
|
||
'uniswap' => 'Uniswap',
|
||
'site_title' => 'Leading Digital Asset Platform',
|
||
'unverified' => 'Unverified',
|
||
'pending' => 'Pending',
|
||
'verified' => 'Verified',
|
||
'real_name' => 'Real Name',
|
||
'credit_score' => 'Credit Score',
|
||
'last_price' => 'Last Price',
|
||
'change_24h' => '24h Change',
|
||
'vol_24h' => '24h Volume',
|
||
'welcome_back' => 'Welcome Back',
|
||
'forgot_password' => 'Forgot Password?',
|
||
'no_account' => 'No account?',
|
||
'invalid_account_pwd' => 'Invalid account or password',
|
||
'account' => 'Account / Email',
|
||
'mobile_reg' => 'Mobile Reg',
|
||
'email_reg' => 'Email Reg',
|
||
'uploading' => 'Uploading...',
|
||
'uid' => 'UID',
|
||
'recharge' => 'Recharge',
|
||
'withdrawal' => 'Withdrawal',
|
||
'binary_win' => 'Binary Win',
|
||
'binary_loss' => 'Binary Loss',
|
||
'flash_exchange' => 'Flash Swap',
|
||
'contract_settle' => 'Contract Settle',
|
||
'contract_margin' => 'Contract Margin',
|
||
'fill_all_fields' => 'Please fill all fields',
|
||
'kyc_submitted' => 'KYC submitted, waiting for review',
|
||
'kyc_pending_desc' => 'Your KYC is under review.',
|
||
'full_name' => 'Full Name',
|
||
'enter_full_name' => 'Enter full name',
|
||
'id_number' => 'ID Number',
|
||
'enter_id_number' => 'Enter ID number',
|
||
'id_front' => 'ID Front',
|
||
'id_back' => 'ID Back',
|
||
'id_handheld' => 'Handheld ID',
|
||
'upload' => 'Upload',
|
||
'kyc_steps' => 'KYC Steps',
|
||
'kyc_step1' => 'Fill name and ID.',
|
||
'kyc_step2' => 'Upload ID photos.',
|
||
'kyc_step3' => 'Upload handheld photo.',
|
||
'submit' => 'Submit',
|
||
'kyc_instructions' => 'Ensure photos are clear.',
|
||
'online_support' => 'Online Support',
|
||
'type_message' => 'Type message...',
|
||
'welcome_support' => 'Welcome to support center.',
|
||
'mining_desc' => 'Cloud mining platform.',
|
||
'mining_pool' => 'Mining Pool',
|
||
'day' => 'Day',
|
||
'flexible' => 'Flexible',
|
||
'est_apy' => 'Est. APY',
|
||
'min_deposit' => 'Min. Deposit',
|
||
'lock_period' => 'Lock Period',
|
||
'principal_protected' => 'Principal Protected',
|
||
'daily_payouts' => 'Daily Payouts',
|
||
'why_mining' => 'Why BYRO Mining?',
|
||
'adv_hardware' => 'Adv. Hardware',
|
||
'adv_hardware_desc' => 'Latest mining tech.',
|
||
'auto_compound' => 'Auto Compound',
|
||
'auto_compound_desc' => 'Auto reinvest.',
|
||
'real_time_monitor' => 'RT Monitor',
|
||
'real_time_monitor_desc' => 'Monitor in real-time.',
|
||
'calc_profit' => 'Calc Profit',
|
||
'calc_desc' => 'Estimate earnings.',
|
||
'amount_to_invest' => 'Investment Amount',
|
||
'daily_profit' => 'Daily Profit',
|
||
'monthly_profit' => 'Monthly Profit',
|
||
'try_calc' => 'Try Calc',
|
||
'app_desc' => 'Trade on mobile.',
|
||
'download_on' => 'Download on',
|
||
'get_it_on' => 'Get it on',
|
||
'scan_download' => 'Scan Download',
|
||
'real_time_alerts' => 'RT Alerts',
|
||
'full_trading_features' => 'Full Features',
|
||
'two_fa_security' => '2FA Security',
|
||
'live_chat_247' => '24/7 Chat',
|
||
'our_mission' => 'Our Mission',
|
||
'mission_content' => 'Accessible crypto for all.',
|
||
'global_presence' => 'Global Presence',
|
||
'presence_content' => 'Global offices.',
|
||
'users' => 'Users',
|
||
'countries' => 'Countries',
|
||
'daily_volume' => 'Daily Vol',
|
||
'about_content' => 'Founded in 2023.',
|
||
'news_content' => 'Latest updates.',
|
||
'announcement' => 'Announcement',
|
||
'read_more' => 'Read More',
|
||
'newsletter' => 'Newsletter',
|
||
'newsletter_desc' => 'Subscribe for insights.',
|
||
'email_address' => 'Email Address',
|
||
'join' => 'Join',
|
||
'popular_topics' => 'Popular Topics',
|
||
'effective_date' => 'Feb 16, 2026',
|
||
'tos_1_title' => '1. Terms',
|
||
'tos_1_content' => 'Accept terms.',
|
||
'tos_2_title' => '2. Eligibility',
|
||
'tos_2_content' => '18+ only.',
|
||
'tos_3_title' => '3. Security',
|
||
'tos_3_content' => 'Protect account.',
|
||
'tos_4_title' => '4. Risks',
|
||
'tos_4_content' => 'Trading is risky.',
|
||
'tos_5_title' => '5. Termination',
|
||
'tos_5_content' => 'Account termination.',
|
||
'last_updated' => 'Feb 16, 2026',
|
||
'privacy_1_title' => 'Intro',
|
||
'privacy_1_content' => 'Privacy policy.',
|
||
'privacy_2_title' => 'Data',
|
||
'privacy_2_content' => 'Data collection.',
|
||
'privacy_3_title' => 'Usage',
|
||
'privacy_3_content' => 'Data usage.',
|
||
'privacy_4_title' => 'Security',
|
||
'privacy_4_content' => 'Data security.',
|
||
'privacy_5_title' => 'Rights',
|
||
'privacy_5_content' => 'Legal rights.',
|
||
'issue_type' => 'Issue Type',
|
||
'account_access' => 'Account',
|
||
'dep_with_issue' => 'Financial',
|
||
'trading_issue' => 'Trading',
|
||
'bug_report' => 'Bug',
|
||
'other' => 'Other',
|
||
'subject' => 'Subject',
|
||
'description' => 'Description',
|
||
'submit_ticket' => 'Submit Ticket',
|
||
'support_response_time' => '2h response time.',
|
||
'api_intro' => 'API Intro',
|
||
'api_auth' => 'API Auth',
|
||
'api_market_data' => 'Market Data',
|
||
'api_trade_endpoints' => 'Trade Endpoints',
|
||
'api_errors' => 'Errors',
|
||
'api_intro_desc' => 'RESTful API.',
|
||
'api_auth_desc' => 'Key auth required.',
|
||
'api_get_ticker' => 'Get Ticker',
|
||
'api_get_ticker_desc' => 'Symbol price.',
|
||
'api_place_order' => 'Place Order',
|
||
'api_payload_example' => 'Payload example',
|
||
'tier' => 'Tier',
|
||
'trading_vol_30d' => '30d Vol',
|
||
'maker_fee' => 'Maker Fee',
|
||
'taker_fee' => 'Taker Fee',
|
||
'regular' => 'Regular',
|
||
'spot_fees' => 'Spot Fees',
|
||
'contract_fees' => 'Contract Fees',
|
||
'trade_spot' => 'Spot',
|
||
'trade_contract' => 'Contract',
|
||
'trade_binary' => 'Binary',
|
||
'search' => 'Search',
|
||
'profit' => 'Profit',
|
||
'buy_up' => 'Buy Up',
|
||
'buy_down' => 'Buy Down',
|
||
'expected_profit' => 'Expected Profit',
|
||
'purchase_amount' => 'Amount',
|
||
'cycle_settlement' => 'Cycle',
|
||
'available_balance' => 'Available',
|
||
'balance' => 'Balance',
|
||
'kyc' => 'KYC',
|
||
'security' => 'Security Center',
|
||
'trade' => 'Trade',
|
||
'failed' => 'Failed',
|
||
'success' => 'Success',
|
||
'direction' => 'Direction',
|
||
'order' => 'Order',
|
||
'insufficient_balance' => 'Insufficient Balance',
|
||
'limit' => 'Limit',
|
||
'amount' => 'Amount',
|
||
'operation' => 'Operation',
|
||
'frozen' => 'Frozen',
|
||
'converted_to' => 'Converted',
|
||
'asset_records' => 'Asset Records',
|
||
'no_records_found' => 'No Records',
|
||
'type' => 'Type',
|
||
'status' => 'Status',
|
||
'time' => 'Time',
|
||
'hot' => 'Hot',
|
||
'executing' => 'Executing',
|
||
'won' => 'Won',
|
||
'loss' => 'Loss',
|
||
'total' => 'Total',
|
||
'orders' => 'Orders',
|
||
'all' => 'All',
|
||
'pnl' => 'PnL',
|
||
'completed' => 'Completed',
|
||
'lost' => 'Lost',
|
||
'rejected' => 'Rejected',
|
||
'cancelled' => 'Cancelled',
|
||
'app_store' => 'App Store',
|
||
'google_play' => 'Google Play',
|
||
'android_apk' => 'Android APK',
|
||
'ios_install' => 'iOS Install',
|
||
'sec_contract' => 'Binary',
|
||
'sec_contract_desc' => 'Binary options.',
|
||
'app_guide_step1' => 'Scan the QR code with your camera or browser, or click the download button to get the package.',
|
||
'app_guide_step2' => 'Enable "Allow unknown sources" in settings after download to ensure smooth installation.',
|
||
'app_guide_step3' => 'Open the APP and login to start your digital asset trading journey.',
|
||
'app_install_auth' => 'Authorize',
|
||
'app_experience_now' => 'Experience Now',
|
||
'support_anywhere' => 'Support Anywhere',
|
||
'app_mockup_desc' => 'Take control of your digital assets in BYRO mobile app. Trade anywhere.',
|
||
'scan_qr_to_download' => 'Scan QR to Download',
|
||
'vol_unit' => 'M',
|
||
'from' => 'From',
|
||
'to' => 'To',
|
||
'rate' => 'Rate',
|
||
'price_impact' => 'Price Impact',
|
||
'slippage' => 'Slippage',
|
||
'swap_now' => 'Swap Now',
|
||
'start_mining' => 'Start Mining',
|
||
'time_fs' => 'Time',
|
||
'time_1m' => '1m',
|
||
'time_5m' => '5m',
|
||
'time_15m' => '15m',
|
||
'time_30m' => '30m',
|
||
'time_1h' => '1h',
|
||
'time_4h' => '4h',
|
||
'time_1d' => '1d',
|
||
'time_1w' => '1w',
|
||
'indicators' => 'Indicators',
|
||
'chart' => 'Chart',
|
||
'depth' => 'Depth',
|
||
'price' => 'Price',
|
||
'quantity' => 'Quantity',
|
||
'open_orders' => 'Open Orders',
|
||
'settlement_history' => 'Settlement History',
|
||
'details' => 'Details',
|
||
'confirm_close_pos' => 'Confirm to close position?',
|
||
'pos_closed' => 'Position closed',
|
||
'order_in_progress' => 'Order in Progress',
|
||
'current_price' => 'Current Price',
|
||
'opening_price' => 'Opening Price',
|
||
'final_price_settlement' => 'Final price settlement',
|
||
'error_msg_placeholder' => 'Error message',
|
||
'unauthorized' => 'Unauthorized',
|
||
'invalid_amount' => 'Invalid amount',
|
||
'account_frozen' => 'Account frozen',
|
||
'invalid_action' => 'Invalid action',
|
||
'request_failed' => 'Request failed',
|
||
'vip_level' => 'VIP Level',
|
||
'level' => 'Level',
|
||
'recharge_to_upgrade' => 'Recharge %amount% USDT more to reach VIP %level%',
|
||
'highest_level' => 'Highest Level Reached',
|
||
'USDT' => 'USDT',
|
||
'BTC' => 'BTC',
|
||
'ETH' => 'ETH',
|
||
'BNB' => 'BNB',
|
||
'SOL' => 'SOL',
|
||
'XRP' => 'XRP',
|
||
'ADA' => 'ADA',
|
||
'DOGE' => 'DOGE',
|
||
'DOT' => 'DOT',
|
||
'MATIC' => 'MATIC',
|
||
'LINK' => 'LINK',
|
||
'SHIB' => 'SHIB',
|
||
'TRX' => 'TRX',
|
||
'BCH' => 'BCH',
|
||
'LTC' => 'LTC',
|
||
'UNI' => 'UNI',
|
||
'security_level' => 'Security Level',
|
||
'login_password' => 'Login Password',
|
||
'old_password' => 'Old Password',
|
||
'new_password' => 'New Password',
|
||
'confirm_new_password' => 'Confirm New Password',
|
||
'set_password' => 'Set Password',
|
||
'binding_phone' => 'Binding Phone',
|
||
'google_verification' => 'Google Verification',
|
||
'binding_mailbox' => 'Binding Mailbox',
|
||
'update' => 'Update',
|
||
'low' => 'Low',
|
||
'medium' => 'Medium',
|
||
'high' => 'High',
|
||
'bound' => 'Bound',
|
||
'not_bound' => 'Not Bound',
|
||
'copy' => 'Copy',
|
||
'old_pwd_incorrect' => 'Old password is incorrect',
|
||
'pwd_changed_success' => 'Password changed successfully',
|
||
'trade_pwd_updated' => 'Trade password updated',
|
||
'security_step1' => 'For your asset security, please bind your phone and email, and enable Google Verification.',
|
||
'security_step2' => 'Please keep your login and trade passwords safe and never disclose them to others.',
|
||
'trade_password' => 'Trade Password',
|
||
'aud_name' => 'AUD',
|
||
'cad_name' => 'CAD',
|
||
'chf_name' => 'CHF',
|
||
'brl_name' => 'BRL',
|
||
'rub_name' => 'RUB',
|
||
'inr_name' => 'INR',
|
||
'zar_name' => 'ZAR',
|
||
'try_name' => 'TRY',
|
||
'aed_name' => 'AED',
|
||
'sar_name' => 'SAR',
|
||
'mxn_name' => 'MXN',
|
||
'php_name' => 'PHP',
|
||
'idr_name' => 'IDR',
|
||
],
|
||
];
|
||
|
||
function __($key) {
|
||
global $translations, $lang;
|
||
return $translations[$lang][$key] ?? $key;
|
||
}
|
||
|
||
function getCoinIcon($symbol) {
|
||
$icon_ids = [
|
||
'BTC' => '1/small/bitcoin.png',
|
||
'ETH' => '279/small/ethereum.png',
|
||
'USDT' => '325/small/tether.png',
|
||
'BNB' => '825/small/binance-coin-logo.png',
|
||
'SOL' => '4128/small/solana.png',
|
||
'XRP' => '44/small/xrp-symbol-white-128.png',
|
||
'ADA' => '975/small/cardano.png',
|
||
'DOGE' => '5/small/dogecoin.png',
|
||
'DOT' => '12171/small/polkadot.png',
|
||
'MATIC' => '4713/small/matic-network.png',
|
||
'AVAX' => '12559/small/avalanche.png',
|
||
'LINK' => '877/small/chainlink.png',
|
||
'SHIB' => '11939/small/shiba-inu.png',
|
||
'TRX' => '1094/small/tron.png',
|
||
'BCH' => '153/small/bitcoin-cash.png',
|
||
'LTC' => '2/small/litecoin.png',
|
||
'UNI' => '12504/small/uniswap.png',
|
||
'ARB' => '29359/small/arbitrum.png',
|
||
'OP' => '25244/small/optimism.png',
|
||
'APT' => '27355/small/aptos.png',
|
||
'USDC' => '6319/small/usdc.png',
|
||
'PEPE' => '31386/small/pepe.png',
|
||
'FIL' => '12817/small/filecoin.png',
|
||
'NEAR' => '10365/small/near.png',
|
||
'ATOM' => '1481/small/cosmos.png',
|
||
'IMX' => '17233/small/immutable-x.png',
|
||
'KAS' => '26851/small/kaspa.png',
|
||
];
|
||
$id = $icon_ids[strtoupper($symbol)] ?? '1/small/bitcoin.png';
|
||
return "https://assets.coingecko.com/coins/images/" . $id;
|
||
}
|