2300 lines
88 KiB
TypeScript
2300 lines
88 KiB
TypeScript
/**
|
||
* Genex Admin Web - i18n 多语言支持
|
||
*
|
||
* 支持: zh-CN (默认), en-US, ja-JP
|
||
* 使用方式: import { t } from '@/i18n/locales'; t('key') 或 t('key', 'en-US')
|
||
*/
|
||
|
||
export type Locale = 'zh-CN' | 'en-US' | 'ja-JP';
|
||
|
||
export const defaultLocale: Locale = 'zh-CN';
|
||
|
||
export const supportedLocales: { value: Locale; label: string }[] = [
|
||
{ value: 'zh-CN', label: '简体中文' },
|
||
{ value: 'en-US', label: 'English' },
|
||
{ value: 'ja-JP', label: '日本語' },
|
||
];
|
||
|
||
export function t(key: string, locale: Locale = defaultLocale): string {
|
||
return translations[locale]?.[key] ?? translations['zh-CN']?.[key] ?? key;
|
||
}
|
||
|
||
const translations: Record<Locale, Record<string, string>> = {
|
||
'zh-CN': {
|
||
// ── Common ──
|
||
'app_name': 'Genex 管理后台',
|
||
'confirm': '确认',
|
||
'cancel': '取消',
|
||
'save': '保存',
|
||
'delete': '删除',
|
||
'edit': '编辑',
|
||
'search': '搜索',
|
||
'loading': '加载中...',
|
||
'retry': '重试',
|
||
'done': '完成',
|
||
'create': '创建',
|
||
'export': '导出',
|
||
'import': '导入',
|
||
'filter': '筛选',
|
||
'reset': '重置',
|
||
'submit': '提交',
|
||
'approve': '批准',
|
||
'reject': '拒绝',
|
||
'enable': '启用',
|
||
'disable': '禁用',
|
||
'status': '状态',
|
||
'actions': '操作',
|
||
'details': '详情',
|
||
'total': '合计',
|
||
'yes': '是',
|
||
'no': '否',
|
||
'all': '全部',
|
||
'view': '查看',
|
||
'process': '处理',
|
||
'download': '下载',
|
||
'collapse': '收起',
|
||
'time': '时间',
|
||
'amount': '金额',
|
||
'type': '类型',
|
||
'mark': '标记',
|
||
'review': '审核',
|
||
'suspend': '暂停',
|
||
'resume': '恢复',
|
||
'warning_label': '警告',
|
||
'investigate': '审查',
|
||
'completed': '已完成',
|
||
'in_progress': '进行中',
|
||
'pending': '待开始',
|
||
'blocked': '阻塞',
|
||
'custom_export': '自定义导出',
|
||
'export_report': '导出报告',
|
||
'auto_generated': '自动生成',
|
||
'as_of': '截至',
|
||
'generating': '生成中',
|
||
'accuracy': '准确率',
|
||
'overall_progress': '总体进度',
|
||
'renew_now': '立即续期',
|
||
'not_applied': '未申请',
|
||
'urgency_critical': '紧急',
|
||
'urgency_high': '高',
|
||
'urgency_medium': '中',
|
||
'urgency_low': '低',
|
||
'expiry_date': '到期日',
|
||
'remaining_days': '剩余 {0} 天',
|
||
'severity_high': '高',
|
||
'severity_medium': '中',
|
||
'severity_low': '低',
|
||
|
||
// ── Sidebar / Navigation ──
|
||
'nav_dashboard': '运营总览',
|
||
'nav_overview': '总览',
|
||
'nav_users': '用户管理',
|
||
'nav_coupons': '券审核',
|
||
'nav_issuers': '发行方管理',
|
||
'nav_issuers_review': '入驻审核',
|
||
'nav_issuers_list': '发行方列表',
|
||
'nav_issuers_coupons': '券审核',
|
||
'nav_users_list': '用户列表',
|
||
'nav_users_kyc': 'KYC审核',
|
||
'nav_trading': '交易监控',
|
||
'nav_trading_realtime': '实时交易流',
|
||
'nav_trading_stats': '交易统计',
|
||
'nav_trading_orders': '订单管理',
|
||
'nav_risk': '风控中心',
|
||
'nav_risk_dashboard': '风险仪表盘',
|
||
'nav_risk_suspicious': '可疑交易',
|
||
'nav_risk_blacklist': '黑名单管理',
|
||
'nav_risk_ofac': 'OFAC筛查日志',
|
||
'nav_finance': '财务管理',
|
||
'nav_chain': '链上监控',
|
||
'nav_reports': '报表中心',
|
||
'nav_compliance': '合规报表',
|
||
'nav_compliance_sar': 'SAR管理',
|
||
'nav_compliance_ctr': 'CTR管理',
|
||
'nav_compliance_audit': '审计日志',
|
||
'nav_compliance_reports': '监管报表',
|
||
'nav_analytics': '数据分析',
|
||
'nav_analytics_users': '用户分析',
|
||
'nav_analytics_coupons': '券分析',
|
||
'nav_analytics_market_maker': '做市商分析',
|
||
'nav_analytics_consumer_protection': '消费者保护',
|
||
'nav_ai_agent': 'AI 代理',
|
||
'nav_system': '系统管理',
|
||
'nav_system_admins': '管理员账号',
|
||
'nav_system_config': '系统配置',
|
||
'nav_system_contracts': '合约管理',
|
||
'nav_system_monitor': '系统监控',
|
||
'nav_disputes': '争议处理',
|
||
'nav_coupons_mgmt': '券管理',
|
||
'nav_merchant': '商户核销',
|
||
'nav_agent': '代理面板',
|
||
'nav_market_maker': '做市商',
|
||
'nav_insurance': '保险管理',
|
||
'nav_app_versions': '应用版本',
|
||
|
||
// ── App Version Management ──
|
||
'app_version_title': '应用版本管理',
|
||
'app_version_genex_mobile': 'Genex 用户端',
|
||
'app_version_admin_app': '发行方管理端',
|
||
'app_version_all_platforms': '全部平台',
|
||
'app_version_upload': '上传新版本',
|
||
'app_version_version_name': '版本号',
|
||
'app_version_version_code': '版本代码',
|
||
'app_version_build_number': '构建号',
|
||
'app_version_platform': '平台',
|
||
'app_version_file_size': '文件大小',
|
||
'app_version_force_update': '强制更新',
|
||
'app_version_enabled': '已启用',
|
||
'app_version_disabled': '已禁用',
|
||
'app_version_changelog': '更新日志',
|
||
'app_version_min_os': '最低系统版本',
|
||
'app_version_release_date': '发布日期',
|
||
'app_version_upload_file': '选择 APK/IPA 文件',
|
||
'app_version_parsing': '解析中...',
|
||
'app_version_uploading': '上传中...',
|
||
'app_version_confirm_delete': '确定删除此版本?此操作不可撤销。',
|
||
'app_version_no_versions': '暂无版本记录',
|
||
'app_version_edit': '编辑版本',
|
||
'app_version_created_at': '创建时间',
|
||
|
||
// ── Header ──
|
||
'header_search_placeholder': '搜索用户/订单/交易...',
|
||
'header_ai_assistant': 'AI 助手',
|
||
'header_logout': '退出登录',
|
||
|
||
// ── Dashboard ──
|
||
'dashboard_title': '运营总览',
|
||
'dashboard_total_volume': '总交易量',
|
||
'dashboard_total_amount': '交易金额',
|
||
'dashboard_active_users': '活跃用户',
|
||
'dashboard_issuer_count': '发行方数量',
|
||
'dashboard_coupon_circulation': '券流通总量',
|
||
'dashboard_system_health': '系统健康',
|
||
'dashboard_volume_trend': '交易量趋势',
|
||
'dashboard_type_distribution': '交易类型占比',
|
||
'dashboard_realtime_feed': '实时交易流',
|
||
'dashboard_total_users': '总用户数',
|
||
'dashboard_total_coupons': '券总量',
|
||
'dashboard_trading_volume': '交易量',
|
||
'dashboard_revenue': '平台收入',
|
||
'dashboard_today': '今日',
|
||
'dashboard_weekly': '本周',
|
||
'dashboard_monthly': '本月',
|
||
'dashboard_yearly': '本年',
|
||
'dashboard_real_time': '实时数据',
|
||
'dashboard_alerts': '告警',
|
||
'dashboard_th_time': '时间',
|
||
'dashboard_th_type': '类型',
|
||
'dashboard_th_order': '订单号',
|
||
'dashboard_th_amount': '金额',
|
||
'dashboard_th_status': '状态',
|
||
'dashboard_status_completed': '完成',
|
||
'dashboard_status_processing': '处理中',
|
||
'dashboard_type_purchase': '购买',
|
||
'dashboard_type_redeem': '核销',
|
||
'dashboard_type_resell': '转售',
|
||
'dashboard_type_transfer': '转赠',
|
||
'dashboard_service_api': 'API服务',
|
||
'dashboard_service_db': '数据库',
|
||
'dashboard_service_cache': '缓存服务',
|
||
'dashboard_service_mq': '消息队列',
|
||
|
||
// ── User Management ──
|
||
'user_management_title': '用户管理',
|
||
'user_search_placeholder': '搜索手机号/邮箱/用户ID...',
|
||
'user_list': '用户列表',
|
||
'user_detail': '用户详情',
|
||
'user_id': '用户ID',
|
||
'user_name': '用户名',
|
||
'user_email': '邮箱',
|
||
'user_phone': '手机号',
|
||
'user_role': '角色',
|
||
'user_status': '状态',
|
||
'user_kyc_level': 'KYC等级',
|
||
'user_created_at': '注册时间',
|
||
'user_last_login': '最后登录',
|
||
'user_freeze': '冻结',
|
||
'user_unfreeze': '解冻',
|
||
'user_ban': '封禁',
|
||
'user_consumer': '消费者',
|
||
'user_issuer': '发行方',
|
||
'user_admin': '管理员',
|
||
'user_coupon_count': '持券数',
|
||
'user_total_traded': '交易额',
|
||
'user_risk_tags': '风险标签',
|
||
'user_active': '正常',
|
||
'user_frozen': '已冻结',
|
||
'user_locked': '已锁定',
|
||
'user_unlock': '解锁',
|
||
|
||
// ── SMS Log ──
|
||
'nav_users_sms_logs': 'SMS 日志',
|
||
'sms_log_title': 'SMS 发送日志',
|
||
'sms_search_placeholder': '输入手机号搜索...',
|
||
'sms_search_hint': '请输入手机号搜索 SMS 发送记录',
|
||
'sms_log_phone': '手机号',
|
||
'sms_log_type': '类型',
|
||
'sms_log_status': '状态',
|
||
'sms_log_provider': '通道',
|
||
'sms_log_time': '发送时间',
|
||
'sms_type_register': '注册',
|
||
'sms_type_login': '登录',
|
||
'sms_type_reset': '重置密码',
|
||
'sms_type_change_phone': '换绑手机',
|
||
'sms_status_sent': '已发送',
|
||
'sms_status_failed': '发送失败',
|
||
'sms_no_logs': '暂无记录',
|
||
|
||
// ── Issuer Management ──
|
||
'issuer_management_title': '发行方管理',
|
||
'issuer_ai_pre_review': 'AI 预审',
|
||
'issuer_list': '发行方列表',
|
||
'issuer_detail': '发行方详情',
|
||
'issuer_name': '名称',
|
||
'issuer_company_name': '企业名称',
|
||
'issuer_credit_rating': '信用评级',
|
||
'issuer_onboarding_status': '入驻状态',
|
||
'issuer_onboarding_pending': '待审核',
|
||
'issuer_onboarding_approved': '已通过',
|
||
'issuer_onboarding_rejected': '已驳回',
|
||
'issuer_total_issued': '已发行总量',
|
||
'issuer_total_redeemed': '已核销总量',
|
||
'issuer_collateral': '质押品',
|
||
'issuer_deposit': '保证金',
|
||
'issuer_submit_time': '提交时间',
|
||
'issuer_coupon_count': '券数量',
|
||
'issuer_total_volume': '总发行额',
|
||
|
||
// ── Coupon Management ──
|
||
'coupon_management_title': '券管理',
|
||
'coupon_review': '券审核',
|
||
'coupon_pending_review': '待审核',
|
||
'coupon_approved': '已通过',
|
||
'coupon_rejected': '已拒绝',
|
||
'coupon_active': '在售中',
|
||
'coupon_suspended': '已暂停',
|
||
'coupon_expired': '已过期',
|
||
'coupon_issuer': '发行方',
|
||
'coupon_face_value': '面值',
|
||
'coupon_quantity': '发行量',
|
||
'coupon_valid_period': '有效期',
|
||
'coupon_category': '类别',
|
||
'coupon_risk_score': '风险评分',
|
||
'coupon_chain_status': '上链状态',
|
||
'coupon_approve': '通过',
|
||
'coupon_reject': '拒绝',
|
||
'coupon_review_comment': '审核意见',
|
||
'coupon_id': '券ID',
|
||
'coupon_name': '券名称',
|
||
'coupon_template': '模板',
|
||
'coupon_sold': '已售',
|
||
'coupon_redeemed': '已核销',
|
||
|
||
// ── Trading Monitor ──
|
||
'trading_title': '交易监控',
|
||
'trading_today_volume': '今日交易量',
|
||
'trading_today_amount': '今日交易额',
|
||
'trading_avg_discount': '平均折扣率',
|
||
'trading_large_trades': '大额交易',
|
||
'trading_volume_trend': '交易量/金额趋势',
|
||
'trading_order_management': '订单管理',
|
||
'trading_search_order': '搜索订单号...',
|
||
'trading_th_order_id': '订单号',
|
||
'trading_th_type': '类型',
|
||
'trading_th_coupon_name': '券名称',
|
||
'trading_th_buyer': '买方',
|
||
'trading_th_seller': '卖方',
|
||
'trading_th_amount': '金额',
|
||
'trading_th_status': '状态',
|
||
'trading_th_time': '时间',
|
||
'trading_type_purchase': '购买',
|
||
'trading_type_resell': '转售',
|
||
'trading_type_redeem': '核销',
|
||
'trading_type_transfer': '转赠',
|
||
'trading_status_completed': '完成',
|
||
'trading_status_dispute': '争议',
|
||
|
||
// ── Risk Center ──
|
||
'risk_title': '风控中心',
|
||
'risk_ai_warning': 'AI 风险预警',
|
||
'risk_events': '风险事件',
|
||
'risk_suspicious_trades': '可疑交易',
|
||
'risk_frozen_accounts': '冻结账户',
|
||
'risk_ofac_hits': 'OFAC命中',
|
||
'risk_th_trade_id': '交易ID',
|
||
'risk_th_user': '用户',
|
||
'risk_th_anomaly_type': '异常类型',
|
||
'risk_th_amount': '金额',
|
||
'risk_th_time': '时间',
|
||
'risk_th_risk_score': '风险评分',
|
||
'risk_type_high_freq': '高频交易',
|
||
'risk_type_large_single': '大额单笔',
|
||
'risk_type_related_account': '关联账户',
|
||
'risk_type_abnormal_ip': '异常IP',
|
||
|
||
// ── Compliance ──
|
||
'compliance_title': '合规报表',
|
||
'compliance_ai_generate': 'AI 生成报表',
|
||
'compliance_tab_sar': 'SAR管理',
|
||
'compliance_tab_ctr': 'CTR管理',
|
||
'compliance_tab_audit': '审计日志',
|
||
'compliance_tab_reports': '监管报表',
|
||
'compliance_overview': '合规概览',
|
||
'compliance_sec_filing': 'SEC 申报',
|
||
'compliance_license': '牌照管理',
|
||
'compliance_sox': 'SOX 审计',
|
||
'compliance_tax_report': '税务报表',
|
||
'compliance_aml': '反洗钱',
|
||
'compliance_kyc_review': 'KYC 审核',
|
||
'compliance_consumer_protection': '消费者保护',
|
||
'compliance_risk_assessment': '风险评估',
|
||
'compliance_audit_log': '审计日志',
|
||
'compliance_policy': '合规政策',
|
||
'compliance_sar_id': 'SAR编号',
|
||
'compliance_sar_related_txn': '相关交易',
|
||
'compliance_sar_user': '涉及用户',
|
||
'compliance_sar_amount': '金额',
|
||
'compliance_sar_risk_type': '风险类型',
|
||
'compliance_sar_status': '状态',
|
||
'compliance_sar_created': '创建时间',
|
||
'compliance_sar_pending': '待提交',
|
||
'compliance_sar_submitted': '已提交',
|
||
'compliance_ctr_title': '大额交易报告',
|
||
'compliance_ctr_desc': '超过$10,000的交易自动生成CTR,当前无待处理项',
|
||
'compliance_audit_search': '搜索操作日志...',
|
||
'compliance_audit_action_login': '登录',
|
||
'compliance_audit_action_review': '审核',
|
||
'compliance_audit_action_config': '配置',
|
||
'compliance_audit_action_freeze': '冻结',
|
||
'compliance_audit_action_export': '导出',
|
||
'compliance_audit_action_query': '查询',
|
||
'compliance_report_daily': '日报',
|
||
'compliance_report_monthly': '月报',
|
||
'compliance_report_sar_quarterly': '季度SAR汇总',
|
||
'compliance_report_annual': '年度合规报告',
|
||
|
||
// ── System Management ──
|
||
'system_title': '系统管理',
|
||
'system_tab_admins': '管理员账号',
|
||
'system_tab_config': '系统配置',
|
||
'system_tab_contracts': '合约管理',
|
||
'system_tab_monitor': '系统监控',
|
||
'system_admin_list': '管理员列表',
|
||
'system_add_admin': '+ 添加管理员',
|
||
'system_th_account': '账号',
|
||
'system_th_name': '姓名',
|
||
'system_th_role': '角色',
|
||
'system_th_last_login': '最后登录',
|
||
'system_th_status': '状态',
|
||
'system_general': '通用设置',
|
||
'system_roles': '角色权限',
|
||
'system_api_keys': 'API 密钥',
|
||
'system_webhooks': 'Webhooks',
|
||
'system_notifications': '通知设置',
|
||
'system_maintenance': '系统维护',
|
||
'system_backup': '备份',
|
||
'system_logs': '系统日志',
|
||
'system_feature_flags': '功能开关',
|
||
'system_rate_limit': '限流配置',
|
||
'system_fee_config': '手续费率设置',
|
||
'system_kyc_config': 'KYC阈值配置',
|
||
'system_trade_limit_config': '交易限额配置',
|
||
'system_params': '系统参数',
|
||
'system_contract_status': '智能合约状态',
|
||
'system_running': '运行中',
|
||
'system_health_check': '服务健康检查',
|
||
'system_api_response': 'API 响应时间',
|
||
|
||
// ── Disputes ──
|
||
'dispute_title': '争议处理',
|
||
'dispute_pending': '待处理',
|
||
'dispute_processing': '处理中',
|
||
'dispute_resolved_today': '今日解决',
|
||
'dispute_resolved': '已解决',
|
||
'dispute_rejected': '已驳回',
|
||
'dispute_type_buyer': '买方申诉',
|
||
'dispute_type_seller': '卖方申诉',
|
||
'dispute_type_refund': '退款申请',
|
||
'dispute_th_ticket_id': '工单号',
|
||
'dispute_th_type': '类型',
|
||
'dispute_th_order': '关联订单',
|
||
'dispute_th_plaintiff': '申诉方',
|
||
'dispute_th_defendant': '被诉方',
|
||
'dispute_th_amount': '金额',
|
||
'dispute_th_status': '状态',
|
||
'dispute_th_sla': '处理时效',
|
||
'dispute_th_created': '创建时间',
|
||
|
||
// ── Finance Management ──
|
||
'finance_title': '财务管理',
|
||
'finance_platform_fee': '平台手续费收入',
|
||
'finance_pending_settlement': '待结算给发行方',
|
||
'finance_consumer_refund': '消费者退款',
|
||
'finance_pool_balance': '资金池余额',
|
||
'finance_settlement_queue': '结算队列',
|
||
'finance_revenue_trend': '收入趋势',
|
||
'finance_th_issuer': '发行方',
|
||
'finance_th_amount': '金额',
|
||
'finance_th_status': '状态',
|
||
'finance_th_time': '时间',
|
||
'finance_status_settled': '已结算',
|
||
'finance_status_processing': '处理中',
|
||
'finance_status_pending': '待结算',
|
||
'finance_overview': '财务概览',
|
||
'finance_settlement': '结算管理',
|
||
'finance_fee': '手续费',
|
||
'finance_revenue': '收入',
|
||
'finance_payout': '支出',
|
||
'finance_reconciliation': '对账',
|
||
'finance_invoice': '发票',
|
||
'finance_tax': '税务',
|
||
'finance_report': '财务报表',
|
||
'finance_period_month': '本月',
|
||
'finance_period_cumulative': '累计',
|
||
'finance_period_realtime': '实时',
|
||
|
||
// ── Chain Monitor ──
|
||
'chain_title': '链上监控',
|
||
'chain_recent_events': '最近链上事件',
|
||
'chain_gas_monitor': 'Gas费监控',
|
||
'chain_current_gas': '当前Gas',
|
||
'chain_today_avg': '今日均值',
|
||
'chain_today_gas_spend': '今日Gas支出',
|
||
'chain_monitor': '链监控',
|
||
'chain_block_height': '区块高度',
|
||
'chain_tps': 'TPS',
|
||
'chain_node_status': '节点状态',
|
||
'chain_contracts': '智能合约',
|
||
'chain_transactions': '链上交易',
|
||
'chain_gas_usage': 'Gas 消耗',
|
||
'chain_explorer': '区块浏览器',
|
||
|
||
// ── Reports ──
|
||
'reports_title': '报表中心',
|
||
'reports_operations': '运营报表',
|
||
'reports_compliance': '合规报表',
|
||
'reports_financial': '财务报表',
|
||
'reports_audit': '审计报表',
|
||
'reports_status_generated': '已生成',
|
||
'reports_status_submitted': '已提交',
|
||
'reports_status_passed': '已通过',
|
||
'reports_status_pending_review': '待审核',
|
||
'reports_status_pending_generate': '待生成',
|
||
'report_list': '报表列表',
|
||
'report_generate': '生成报表',
|
||
'report_daily': '日报',
|
||
'report_weekly': '周报',
|
||
'report_monthly': '月报',
|
||
'report_custom': '自定义报表',
|
||
'report_download': '下载报表',
|
||
|
||
// ── Merchant Redemption ──
|
||
'merchant_title': '商户核销管理',
|
||
'merchant_today_redemption': '今日核销',
|
||
'merchant_today_amount': '今日核销金额',
|
||
'merchant_active_stores': '活跃门店',
|
||
'merchant_abnormal_redemption': '异常核销',
|
||
'merchant_store_ranking': '门店核销排行',
|
||
'merchant_realtime_feed': '实时核销流',
|
||
'merchant_need_review': '需审核',
|
||
'merchant_unit_count': '笔',
|
||
|
||
// ── Agent Panel ──
|
||
'agent_title': 'AI Agent 管理',
|
||
'agent_today_sessions': '今日会话数',
|
||
'agent_avg_response': '平均响应时间',
|
||
'agent_satisfaction': '用户满意度',
|
||
'agent_human_takeover': '人工接管率',
|
||
'agent_top_questions': '热门问题 Top 5',
|
||
'agent_modules': 'Agent 模块',
|
||
'agent_running': '运行中',
|
||
'agent_unit_times': '次',
|
||
|
||
// ── Insurance ──
|
||
'insurance_title': '保险与消费者保护',
|
||
'insurance_protection_fund': '消费者保护基金',
|
||
'insurance_monthly_payout': '本月赔付',
|
||
'insurance_payout_rate': '赔付率',
|
||
'insurance_ipo_readiness': 'IPO准备度',
|
||
'insurance_recent_claims': '最近赔付记录',
|
||
'insurance_th_id': '编号',
|
||
'insurance_th_user': '用户',
|
||
'insurance_th_reason': '原因',
|
||
'insurance_th_amount': '金额',
|
||
'insurance_th_status': '状态',
|
||
'insurance_status_paid': '已赔付',
|
||
'insurance_status_processing': '处理中',
|
||
'insurance_ipo_checklist': 'IPO准备度检查清单',
|
||
'insurance_pool': '保险池',
|
||
'insurance_premium': '保费',
|
||
'insurance_claim': '理赔',
|
||
'insurance_coverage': '覆盖范围',
|
||
'insurance_policy': '保险策略',
|
||
|
||
// ── SEC Filing ──
|
||
'sec_title': 'SEC文件管理',
|
||
'sec_new_filing': '+ 新建Filing',
|
||
'sec_filed_count': '已提交文件数',
|
||
'sec_pending_review': '待审核',
|
||
'sec_passed': '已通过',
|
||
'sec_next_deadline': '距下次截止',
|
||
'sec_filing_list': 'SEC申报文件列表',
|
||
'sec_th_id': '编号',
|
||
'sec_th_form_type': '表格类型',
|
||
'sec_th_title': '标题',
|
||
'sec_th_filing_date': '提交日期',
|
||
'sec_th_deadline': '截止日期',
|
||
'sec_th_reviewer': '审核方',
|
||
'sec_th_status': '状态',
|
||
'sec_status_reviewing': '审核中',
|
||
'sec_status_submitted': '已提交',
|
||
'sec_status_passed': '已通过',
|
||
'sec_status_needs_revision': '需修订',
|
||
'sec_status_pending': '待提交',
|
||
'sec_timeline': '申报日程',
|
||
'sec_upcoming': '即将到期',
|
||
'sec_disclosure_status': '披露文件自动生成状态',
|
||
'sec_disclosure_progress': '披露文件完成度',
|
||
|
||
// ── License Management ──
|
||
'license_title': '牌照与监管许可管理',
|
||
'license_new': '+ 新增牌照申请',
|
||
'license_active_count': '活跃牌照数',
|
||
'license_pending': '待申请',
|
||
'license_expiring_soon': '即将到期',
|
||
'license_revoked': '已吊销',
|
||
'license_list': '牌照清单',
|
||
'license_th_id': '编号',
|
||
'license_th_name': '牌照名称',
|
||
'license_th_jurisdiction': '司法管辖区',
|
||
'license_th_reg_body': '监管机构',
|
||
'license_th_issue_date': '签发日期',
|
||
'license_th_expiry_date': '到期日期',
|
||
'license_th_status': '状态',
|
||
'license_status_active': '有效',
|
||
'license_status_applying': '申请中',
|
||
'license_status_renewal': '待续期',
|
||
'license_status_expiring': '即将到期',
|
||
'license_status_expired': '已过期',
|
||
'license_reg_body_mapping': '监管机构映射',
|
||
'license_renewal_alerts': '续期提醒',
|
||
'license_unit': '牌照',
|
||
'license_jurisdictions_covered': '个有效牌照覆盖 {0} 个司法管辖区',
|
||
|
||
// ── SOX Compliance ──
|
||
'sox_title': 'SOX合规管理',
|
||
'sox_overall_score': '整体合规评分',
|
||
'sox_full_score': '满分 100',
|
||
'sox_total_controls': '总控制点',
|
||
'sox_test_passed': '测试通过',
|
||
'sox_defects_found': '发现缺陷',
|
||
'sox_pending_test': '待测试',
|
||
'sox_control_categories': '内部控制类别',
|
||
'sox_th_control_point': '控制点',
|
||
'sox_th_test_result': '测试结果',
|
||
'sox_th_last_test': '上次测试',
|
||
'sox_th_next_test': '下次测试',
|
||
'sox_result_passed': '通过',
|
||
'sox_result_defect': '发现缺陷',
|
||
'sox_result_pending': '待测试',
|
||
'sox_deficiency_tracking': '缺陷追踪',
|
||
'sox_th_id': '编号',
|
||
'sox_th_control': '控制点',
|
||
'sox_th_severity': '严重程度',
|
||
'sox_th_description': '描述',
|
||
'sox_th_due_date': '整改期限',
|
||
'sox_th_status': '状态',
|
||
'sox_th_owner': '负责方',
|
||
'sox_severity_major': '重大缺陷',
|
||
'sox_severity_minor': '一般缺陷',
|
||
'sox_severity_observation': '观察项',
|
||
'sox_status_remediating': '整改中',
|
||
'sox_status_pending': '待整改',
|
||
'sox_auditor_progress': '审计师审核进度',
|
||
'sox_audit_progress': '审计进度',
|
||
|
||
// ── Tax Compliance ──
|
||
'tax_title': '税务合规管理',
|
||
'tax_export_report': '导出税务报告',
|
||
'tax_payable': '应纳税额',
|
||
'tax_paid': '已缴税额',
|
||
'tax_compliance_rate': '税务合规率',
|
||
'tax_pending_items': '待处理事项',
|
||
'tax_obligations': '各司法管辖区税务义务',
|
||
'tax_th_jurisdiction': '管辖区',
|
||
'tax_th_type': '税种',
|
||
'tax_th_period': '期间',
|
||
'tax_th_payable': '应缴金额',
|
||
'tax_th_paid': '已缴金额',
|
||
'tax_th_deadline': '截止日期',
|
||
'tax_th_status': '状态',
|
||
'tax_status_paid': '已缴',
|
||
'tax_status_partial': '部分缴纳',
|
||
'tax_status_unpaid': '待缴',
|
||
'tax_type_breakdown': '税种分类汇总',
|
||
'tax_th_tax_type': '税种',
|
||
'tax_th_federal': '联邦',
|
||
'tax_th_state': '州级',
|
||
'tax_th_total': '合计',
|
||
'tax_th_percentage': '占比',
|
||
'tax_calendar': '税务日历',
|
||
'tax_status_done': '已完成',
|
||
'tax_status_pending': '待处理',
|
||
'tax_irs_tracker': 'IRS表格提交追踪',
|
||
'tax_th_form': '表格',
|
||
'tax_th_description': '说明',
|
||
'tax_th_tax_year': '税务年度',
|
||
'tax_th_filed_date': '提交日期',
|
||
'tax_filing_submitted': '已提交',
|
||
'tax_filing_preparing': '准备中',
|
||
'tax_filing_on_demand': '按需提交',
|
||
'tax_filing_overdue': '逾期',
|
||
|
||
// ── IPO Readiness ──
|
||
'ipo_title': 'IPO准备度检查清单',
|
||
'ipo_subtitle': '跟踪所有IPO里程碑、合规项、依赖关系和阻塞项',
|
||
'ipo_total_items': '总计检查项',
|
||
'ipo_overall_progress': '总体IPO准备进度',
|
||
'ipo_cat_legal': '法律合规',
|
||
'ipo_cat_financial': '财务审计',
|
||
'ipo_cat_sox': 'SOX合规',
|
||
'ipo_cat_governance': '公司治理',
|
||
'ipo_cat_insurance': '保险保障',
|
||
'ipo_th_id': '编号',
|
||
'ipo_th_item': '检查项',
|
||
'ipo_th_owner': '负责方',
|
||
'ipo_th_deadline': '截止日',
|
||
'ipo_th_status': '状态',
|
||
'ipo_unit_done': '完成',
|
||
'ipo_dependency': '依赖',
|
||
'ipo_timeline': 'IPO时间线',
|
||
'ipo_blockers': '阻塞项',
|
||
'ipo_category_progress': '分类进度',
|
||
'ipo_key_contacts': '关键联系方',
|
||
'ipo_owner': '负责',
|
||
'ipo_deadline': '截止',
|
||
|
||
// ── User Analytics ──
|
||
'ua_title': '用户分析',
|
||
'ua_total_users': '总用户数',
|
||
'ua_new_users_week': '新增用户/周',
|
||
'ua_growth_trend': '用户增长趋势',
|
||
'ua_kyc_distribution': 'KYC等级分布',
|
||
'ua_geo_distribution': '地理分布 (Top 10)',
|
||
'ua_th_rank': '排名',
|
||
'ua_th_region': '地区',
|
||
'ua_th_users': '用户数',
|
||
'ua_th_percent': '占比',
|
||
'ua_retention_matrix': '用户留存矩阵',
|
||
'ua_th_cohort': '注册周',
|
||
'ua_user_segments': '活跃用户分群',
|
||
'ua_segment_high_freq': '高频交易',
|
||
'ua_segment_occasional': '偶尔购买',
|
||
'ua_segment_browse': '仅浏览',
|
||
'ua_segment_churned': '流失用户',
|
||
'ua_unit_people': '人',
|
||
|
||
// ── Coupon Analytics ──
|
||
'ca_title': '券分析',
|
||
'ca_total_coupons': '券总量',
|
||
'ca_active_coupons': '活跃券',
|
||
'ca_redeemed': '已核销',
|
||
'ca_expiring_soon': '即将过期',
|
||
'ca_category_distribution': '品类分布',
|
||
'ca_face_value_distribution': '面值分布',
|
||
'ca_top_selling': '热销券 Top 10',
|
||
'ca_th_rank': '排名',
|
||
'ca_th_brand': '品牌',
|
||
'ca_th_coupon_name': '券名称',
|
||
'ca_th_sales': '销量',
|
||
'ca_th_revenue': '收入',
|
||
'ca_th_rating': '评分',
|
||
'ca_breakage_trend': 'Breakage趋势 (未核销率)',
|
||
'ca_secondary_market': '二级市场分析',
|
||
|
||
// ── Market Maker ──
|
||
'mm_title': '做市商管理',
|
||
'mm_add_new': '新增做市商',
|
||
'mm_active_makers': '活跃做市商',
|
||
'mm_total_liquidity': '总流动性',
|
||
'mm_daily_volume': '日均交易量',
|
||
'mm_avg_spread': '平均价差',
|
||
'mm_th_name': '做市商',
|
||
'mm_th_status': '状态',
|
||
'mm_th_daily_volume': '日交易量',
|
||
'mm_status_active': '活跃',
|
||
'mm_status_paused': '暂停',
|
||
'mm_status_suspended': '停用',
|
||
'mm_liquidity_pools': '流动性池分布',
|
||
'mm_order_book_depth': '订单簿深度',
|
||
'mm_health_indicators': '市场健康指标',
|
||
'mm_risk_alerts': '风险预警',
|
||
'mm_high_risk': '高风险',
|
||
'mm_unit_makers': '做市商',
|
||
'market_maker_list': '做市商列表',
|
||
'market_maker_config': '做市商配置',
|
||
'market_maker_spread': '价差',
|
||
'market_maker_liquidity': '流动性',
|
||
'market_maker_algorithm': '算法策略',
|
||
'market_maker_pnl': '盈亏',
|
||
|
||
// ── Consumer Protection ──
|
||
'cp_title': '消费者保护',
|
||
'cp_total_complaints': '投诉总数',
|
||
'cp_resolved': '已解决',
|
||
'cp_processing': '处理中',
|
||
'cp_avg_resolution_time': '平均解决时间',
|
||
'cp_complaint_categories': '投诉分类',
|
||
'cp_cat_redeem_fail': '核销失败',
|
||
'cp_cat_refund_dispute': '退款纠纷',
|
||
'cp_cat_fake_coupon': '虚假券',
|
||
'cp_cat_other': '其他',
|
||
'cp_csat': '消费者满意度 (CSAT)',
|
||
'cp_protection_fund': '保障基金使用率',
|
||
'cp_recent_complaints': '近期投诉',
|
||
'cp_search_complaints': '搜索投诉...',
|
||
'cp_th_id': '编号',
|
||
'cp_th_severity': '严重度',
|
||
'cp_th_category': '分类',
|
||
'cp_th_description': '描述',
|
||
'cp_th_status': '状态',
|
||
'cp_th_assignee': '负责人',
|
||
'cp_th_date': '日期',
|
||
'cp_refund_compliance': '退款合规 - 不合规发行方 Top 5',
|
||
'cp_th_rank': '排名',
|
||
'cp_th_issuer': '发行方',
|
||
'cp_th_violations': '违规次数',
|
||
'cp_th_refund_rate': '退款通过率',
|
||
'cp_th_avg_delay': '平均处理延迟',
|
||
'cp_th_risk_level': '风险等级',
|
||
'cp_unit_cases': '件',
|
||
|
||
// ── AI Agent ──
|
||
'ai_agent_list': 'AI 代理列表',
|
||
'ai_agent_config': 'AI 代理配置',
|
||
'ai_agent_logs': 'AI 运行日志',
|
||
'ai_agent_pricing': 'AI 定价引擎',
|
||
'ai_agent_recommendation': 'AI 推荐引擎',
|
||
'ai_agent_risk': 'AI 风控',
|
||
'ai_agent_status': '运行状态',
|
||
},
|
||
|
||
'en-US': {
|
||
// ── Common ──
|
||
'app_name': 'Genex Admin',
|
||
'confirm': 'Confirm',
|
||
'cancel': 'Cancel',
|
||
'save': 'Save',
|
||
'delete': 'Delete',
|
||
'edit': 'Edit',
|
||
'search': 'Search',
|
||
'loading': 'Loading...',
|
||
'retry': 'Retry',
|
||
'done': 'Done',
|
||
'create': 'Create',
|
||
'export': 'Export',
|
||
'import': 'Import',
|
||
'filter': 'Filter',
|
||
'reset': 'Reset',
|
||
'submit': 'Submit',
|
||
'approve': 'Approve',
|
||
'reject': 'Reject',
|
||
'enable': 'Enable',
|
||
'disable': 'Disable',
|
||
'status': 'Status',
|
||
'actions': 'Actions',
|
||
'details': 'Details',
|
||
'total': 'Total',
|
||
'yes': 'Yes',
|
||
'no': 'No',
|
||
'all': 'All',
|
||
'view': 'View',
|
||
'process': 'Process',
|
||
'download': 'Download',
|
||
'collapse': 'Collapse',
|
||
'time': 'Time',
|
||
'amount': 'Amount',
|
||
'type': 'Type',
|
||
'mark': 'Mark',
|
||
'review': 'Review',
|
||
'suspend': 'Suspend',
|
||
'resume': 'Resume',
|
||
'warning_label': 'Warn',
|
||
'investigate': 'Investigate',
|
||
'completed': 'Completed',
|
||
'in_progress': 'In Progress',
|
||
'pending': 'Pending',
|
||
'blocked': 'Blocked',
|
||
'custom_export': 'Custom Export',
|
||
'export_report': 'Export Report',
|
||
'auto_generated': 'Auto Generated',
|
||
'as_of': 'As of',
|
||
'generating': 'Generating',
|
||
'accuracy': 'Accuracy',
|
||
'overall_progress': 'Overall Progress',
|
||
'renew_now': 'Renew Now',
|
||
'not_applied': 'Not Applied',
|
||
'urgency_critical': 'Critical',
|
||
'urgency_high': 'High',
|
||
'urgency_medium': 'Medium',
|
||
'urgency_low': 'Low',
|
||
'expiry_date': 'Expiry',
|
||
'remaining_days': '{0} days left',
|
||
'severity_high': 'High',
|
||
'severity_medium': 'Medium',
|
||
'severity_low': 'Low',
|
||
|
||
// ── Sidebar / Navigation ──
|
||
'nav_dashboard': 'Dashboard',
|
||
'nav_overview': 'Overview',
|
||
'nav_users': 'User Management',
|
||
'nav_coupons': 'Coupon Review',
|
||
'nav_issuers': 'Issuer Management',
|
||
'nav_issuers_review': 'Onboarding Review',
|
||
'nav_issuers_list': 'Issuer List',
|
||
'nav_issuers_coupons': 'Coupon Review',
|
||
'nav_users_list': 'User List',
|
||
'nav_users_kyc': 'KYC Review',
|
||
'nav_trading': 'Trading Monitor',
|
||
'nav_trading_realtime': 'Real-time Feed',
|
||
'nav_trading_stats': 'Trading Stats',
|
||
'nav_trading_orders': 'Order Management',
|
||
'nav_risk': 'Risk Center',
|
||
'nav_risk_dashboard': 'Risk Dashboard',
|
||
'nav_risk_suspicious': 'Suspicious Trades',
|
||
'nav_risk_blacklist': 'Blacklist',
|
||
'nav_risk_ofac': 'OFAC Screening Log',
|
||
'nav_finance': 'Finance',
|
||
'nav_chain': 'Chain Monitor',
|
||
'nav_reports': 'Reports',
|
||
'nav_compliance': 'Compliance',
|
||
'nav_compliance_sar': 'SAR Management',
|
||
'nav_compliance_ctr': 'CTR Management',
|
||
'nav_compliance_audit': 'Audit Log',
|
||
'nav_compliance_reports': 'Regulatory Reports',
|
||
'nav_analytics': 'Analytics',
|
||
'nav_analytics_users': 'User Analytics',
|
||
'nav_analytics_coupons': 'Coupon Analytics',
|
||
'nav_analytics_market_maker': 'Market Maker Analytics',
|
||
'nav_analytics_consumer_protection': 'Consumer Protection',
|
||
'nav_ai_agent': 'AI Agent',
|
||
'nav_system': 'System',
|
||
'nav_system_admins': 'Admin Accounts',
|
||
'nav_system_config': 'System Config',
|
||
'nav_system_contracts': 'Contract Management',
|
||
'nav_system_monitor': 'System Monitor',
|
||
'nav_disputes': 'Disputes',
|
||
'nav_coupons_mgmt': 'Coupon Management',
|
||
'nav_merchant': 'Merchant Redemption',
|
||
'nav_agent': 'Agent Panel',
|
||
'nav_market_maker': 'Market Maker',
|
||
'nav_insurance': 'Insurance',
|
||
'nav_app_versions': 'App Versions',
|
||
|
||
// ── App Version Management ──
|
||
'app_version_title': 'App Version Management',
|
||
'app_version_genex_mobile': 'Genex Mobile',
|
||
'app_version_admin_app': 'Admin App',
|
||
'app_version_all_platforms': 'All Platforms',
|
||
'app_version_upload': 'Upload Version',
|
||
'app_version_version_name': 'Version',
|
||
'app_version_version_code': 'Version Code',
|
||
'app_version_build_number': 'Build Number',
|
||
'app_version_platform': 'Platform',
|
||
'app_version_file_size': 'File Size',
|
||
'app_version_force_update': 'Force Update',
|
||
'app_version_enabled': 'Enabled',
|
||
'app_version_disabled': 'Disabled',
|
||
'app_version_changelog': 'Changelog',
|
||
'app_version_min_os': 'Min OS Version',
|
||
'app_version_release_date': 'Release Date',
|
||
'app_version_upload_file': 'Select APK/IPA File',
|
||
'app_version_parsing': 'Parsing...',
|
||
'app_version_uploading': 'Uploading...',
|
||
'app_version_confirm_delete': 'Delete this version? This action cannot be undone.',
|
||
'app_version_no_versions': 'No versions found',
|
||
'app_version_edit': 'Edit Version',
|
||
'app_version_created_at': 'Created At',
|
||
|
||
// ── Header ──
|
||
'header_search_placeholder': 'Search users/orders/trades...',
|
||
'header_ai_assistant': 'AI Assistant',
|
||
'header_logout': 'Logout',
|
||
|
||
// ── Dashboard ──
|
||
'dashboard_title': 'Dashboard',
|
||
'dashboard_total_volume': 'Total Volume',
|
||
'dashboard_total_amount': 'Total Amount',
|
||
'dashboard_active_users': 'Active Users',
|
||
'dashboard_issuer_count': 'Issuers',
|
||
'dashboard_coupon_circulation': 'Coupons in Circulation',
|
||
'dashboard_system_health': 'System Health',
|
||
'dashboard_volume_trend': 'Volume Trend',
|
||
'dashboard_type_distribution': 'Trade Type Distribution',
|
||
'dashboard_realtime_feed': 'Real-time Feed',
|
||
'dashboard_total_users': 'Total Users',
|
||
'dashboard_total_coupons': 'Total Coupons',
|
||
'dashboard_trading_volume': 'Trading Volume',
|
||
'dashboard_revenue': 'Platform Revenue',
|
||
'dashboard_today': 'Today',
|
||
'dashboard_weekly': 'This Week',
|
||
'dashboard_monthly': 'This Month',
|
||
'dashboard_yearly': 'This Year',
|
||
'dashboard_real_time': 'Real-time Data',
|
||
'dashboard_alerts': 'Alerts',
|
||
'dashboard_th_time': 'Time',
|
||
'dashboard_th_type': 'Type',
|
||
'dashboard_th_order': 'Order',
|
||
'dashboard_th_amount': 'Amount',
|
||
'dashboard_th_status': 'Status',
|
||
'dashboard_status_completed': 'Completed',
|
||
'dashboard_status_processing': 'Processing',
|
||
'dashboard_type_purchase': 'Purchase',
|
||
'dashboard_type_redeem': 'Redeem',
|
||
'dashboard_type_resell': 'Resell',
|
||
'dashboard_type_transfer': 'Transfer',
|
||
'dashboard_service_api': 'API Service',
|
||
'dashboard_service_db': 'Database',
|
||
'dashboard_service_cache': 'Cache Service',
|
||
'dashboard_service_mq': 'Message Queue',
|
||
|
||
// ── User Management ──
|
||
'user_management_title': 'User Management',
|
||
'user_search_placeholder': 'Search phone/email/user ID...',
|
||
'user_list': 'User List',
|
||
'user_detail': 'User Details',
|
||
'user_id': 'User ID',
|
||
'user_name': 'Username',
|
||
'user_email': 'Email',
|
||
'user_phone': 'Phone',
|
||
'user_role': 'Role',
|
||
'user_status': 'Status',
|
||
'user_kyc_level': 'KYC Level',
|
||
'user_created_at': 'Registered',
|
||
'user_last_login': 'Last Login',
|
||
'user_freeze': 'Freeze',
|
||
'user_unfreeze': 'Unfreeze',
|
||
'user_ban': 'Ban',
|
||
'user_consumer': 'Consumer',
|
||
'user_issuer': 'Issuer',
|
||
'user_admin': 'Admin',
|
||
'user_coupon_count': 'Coupons',
|
||
'user_total_traded': 'Traded',
|
||
'user_risk_tags': 'Risk Tags',
|
||
'user_active': 'Active',
|
||
'user_frozen': 'Frozen',
|
||
'user_locked': 'Locked',
|
||
'user_unlock': 'Unlock',
|
||
|
||
// ── SMS Log ──
|
||
'nav_users_sms_logs': 'SMS Logs',
|
||
'sms_log_title': 'SMS Delivery Logs',
|
||
'sms_search_placeholder': 'Search by phone number...',
|
||
'sms_search_hint': 'Enter a phone number to search SMS delivery records',
|
||
'sms_log_phone': 'Phone',
|
||
'sms_log_type': 'Type',
|
||
'sms_log_status': 'Status',
|
||
'sms_log_provider': 'Provider',
|
||
'sms_log_time': 'Sent At',
|
||
'sms_type_register': 'Register',
|
||
'sms_type_login': 'Login',
|
||
'sms_type_reset': 'Reset Password',
|
||
'sms_type_change_phone': 'Change Phone',
|
||
'sms_status_sent': 'Sent',
|
||
'sms_status_failed': 'Failed',
|
||
'sms_no_logs': 'No records found',
|
||
|
||
// ── Issuer Management ──
|
||
'issuer_management_title': 'Issuer Management',
|
||
'issuer_ai_pre_review': 'AI Pre-review',
|
||
'issuer_list': 'Issuer List',
|
||
'issuer_detail': 'Issuer Details',
|
||
'issuer_name': 'Name',
|
||
'issuer_company_name': 'Company Name',
|
||
'issuer_credit_rating': 'Credit Rating',
|
||
'issuer_onboarding_status': 'Onboarding Status',
|
||
'issuer_onboarding_pending': 'Pending',
|
||
'issuer_onboarding_approved': 'Approved',
|
||
'issuer_onboarding_rejected': 'Rejected',
|
||
'issuer_total_issued': 'Total Issued',
|
||
'issuer_total_redeemed': 'Total Redeemed',
|
||
'issuer_collateral': 'Collateral',
|
||
'issuer_deposit': 'Deposit',
|
||
'issuer_submit_time': 'Submitted',
|
||
'issuer_coupon_count': 'Coupons',
|
||
'issuer_total_volume': 'Total Volume',
|
||
|
||
// ── Coupon Management ──
|
||
'coupon_management_title': 'Coupon Management',
|
||
'coupon_review': 'Coupon Review',
|
||
'coupon_pending_review': 'Pending Review',
|
||
'coupon_approved': 'Approved',
|
||
'coupon_rejected': 'Rejected',
|
||
'coupon_active': 'Active',
|
||
'coupon_suspended': 'Suspended',
|
||
'coupon_expired': 'Expired',
|
||
'coupon_issuer': 'Issuer',
|
||
'coupon_face_value': 'Face Value',
|
||
'coupon_quantity': 'Quantity',
|
||
'coupon_valid_period': 'Valid Period',
|
||
'coupon_category': 'Category',
|
||
'coupon_risk_score': 'Risk Score',
|
||
'coupon_chain_status': 'On-chain Status',
|
||
'coupon_approve': 'Approve',
|
||
'coupon_reject': 'Reject',
|
||
'coupon_review_comment': 'Review Comment',
|
||
'coupon_id': 'Coupon ID',
|
||
'coupon_name': 'Coupon Name',
|
||
'coupon_template': 'Template',
|
||
'coupon_sold': 'Sold',
|
||
'coupon_redeemed': 'Redeemed',
|
||
|
||
// ── Trading Monitor ──
|
||
'trading_title': 'Trading Monitor',
|
||
'trading_today_volume': 'Today Volume',
|
||
'trading_today_amount': 'Today Amount',
|
||
'trading_avg_discount': 'Avg Discount',
|
||
'trading_large_trades': 'Large Trades',
|
||
'trading_volume_trend': 'Volume/Amount Trend',
|
||
'trading_order_management': 'Order Management',
|
||
'trading_search_order': 'Search order ID...',
|
||
'trading_th_order_id': 'Order ID',
|
||
'trading_th_type': 'Type',
|
||
'trading_th_coupon_name': 'Coupon',
|
||
'trading_th_buyer': 'Buyer',
|
||
'trading_th_seller': 'Seller',
|
||
'trading_th_amount': 'Amount',
|
||
'trading_th_status': 'Status',
|
||
'trading_th_time': 'Time',
|
||
'trading_type_purchase': 'Purchase',
|
||
'trading_type_resell': 'Resell',
|
||
'trading_type_redeem': 'Redeem',
|
||
'trading_type_transfer': 'Transfer',
|
||
'trading_status_completed': 'Completed',
|
||
'trading_status_dispute': 'Dispute',
|
||
|
||
// ── Risk Center ──
|
||
'risk_title': 'Risk Center',
|
||
'risk_ai_warning': 'AI Risk Alert',
|
||
'risk_events': 'Risk Events',
|
||
'risk_suspicious_trades': 'Suspicious Trades',
|
||
'risk_frozen_accounts': 'Frozen Accounts',
|
||
'risk_ofac_hits': 'OFAC Hits',
|
||
'risk_th_trade_id': 'Trade ID',
|
||
'risk_th_user': 'User',
|
||
'risk_th_anomaly_type': 'Anomaly Type',
|
||
'risk_th_amount': 'Amount',
|
||
'risk_th_time': 'Time',
|
||
'risk_th_risk_score': 'Risk Score',
|
||
'risk_type_high_freq': 'High Frequency',
|
||
'risk_type_large_single': 'Large Single',
|
||
'risk_type_related_account': 'Related Account',
|
||
'risk_type_abnormal_ip': 'Abnormal IP',
|
||
|
||
// ── Compliance ──
|
||
'compliance_title': 'Compliance Reports',
|
||
'compliance_ai_generate': 'AI Generate Report',
|
||
'compliance_tab_sar': 'SAR Management',
|
||
'compliance_tab_ctr': 'CTR Management',
|
||
'compliance_tab_audit': 'Audit Log',
|
||
'compliance_tab_reports': 'Regulatory Reports',
|
||
'compliance_overview': 'Compliance Overview',
|
||
'compliance_sec_filing': 'SEC Filing',
|
||
'compliance_license': 'License Management',
|
||
'compliance_sox': 'SOX Audit',
|
||
'compliance_tax_report': 'Tax Report',
|
||
'compliance_aml': 'Anti-Money Laundering',
|
||
'compliance_kyc_review': 'KYC Review',
|
||
'compliance_consumer_protection': 'Consumer Protection',
|
||
'compliance_risk_assessment': 'Risk Assessment',
|
||
'compliance_audit_log': 'Audit Log',
|
||
'compliance_policy': 'Compliance Policy',
|
||
'compliance_sar_id': 'SAR ID',
|
||
'compliance_sar_related_txn': 'Related Txn',
|
||
'compliance_sar_user': 'User',
|
||
'compliance_sar_amount': 'Amount',
|
||
'compliance_sar_risk_type': 'Risk Type',
|
||
'compliance_sar_status': 'Status',
|
||
'compliance_sar_created': 'Created',
|
||
'compliance_sar_pending': 'Pending',
|
||
'compliance_sar_submitted': 'Submitted',
|
||
'compliance_ctr_title': 'Large Transaction Report',
|
||
'compliance_ctr_desc': 'Transactions over $10,000 auto-generate CTR. No pending items.',
|
||
'compliance_audit_search': 'Search audit log...',
|
||
'compliance_audit_action_login': 'Login',
|
||
'compliance_audit_action_review': 'Review',
|
||
'compliance_audit_action_config': 'Config',
|
||
'compliance_audit_action_freeze': 'Freeze',
|
||
'compliance_audit_action_export': 'Export',
|
||
'compliance_audit_action_query': 'Query',
|
||
'compliance_report_daily': 'Daily',
|
||
'compliance_report_monthly': 'Monthly',
|
||
'compliance_report_sar_quarterly': 'Quarterly SAR Summary',
|
||
'compliance_report_annual': 'Annual Compliance Report',
|
||
|
||
// ── System Management ──
|
||
'system_title': 'System Management',
|
||
'system_tab_admins': 'Admin Accounts',
|
||
'system_tab_config': 'System Config',
|
||
'system_tab_contracts': 'Contract Management',
|
||
'system_tab_monitor': 'System Monitor',
|
||
'system_admin_list': 'Admin List',
|
||
'system_add_admin': '+ Add Admin',
|
||
'system_th_account': 'Account',
|
||
'system_th_name': 'Name',
|
||
'system_th_role': 'Role',
|
||
'system_th_last_login': 'Last Login',
|
||
'system_th_status': 'Status',
|
||
'system_general': 'General Settings',
|
||
'system_roles': 'Roles & Permissions',
|
||
'system_api_keys': 'API Keys',
|
||
'system_webhooks': 'Webhooks',
|
||
'system_notifications': 'Notification Settings',
|
||
'system_maintenance': 'Maintenance',
|
||
'system_backup': 'Backup',
|
||
'system_logs': 'System Logs',
|
||
'system_feature_flags': 'Feature Flags',
|
||
'system_rate_limit': 'Rate Limiting',
|
||
'system_fee_config': 'Fee Rate Settings',
|
||
'system_kyc_config': 'KYC Threshold Config',
|
||
'system_trade_limit_config': 'Trade Limit Config',
|
||
'system_params': 'System Parameters',
|
||
'system_contract_status': 'Smart Contract Status',
|
||
'system_running': 'Running',
|
||
'system_health_check': 'Service Health Check',
|
||
'system_api_response': 'API Response Time',
|
||
|
||
// ── Disputes ──
|
||
'dispute_title': 'Dispute Resolution',
|
||
'dispute_pending': 'Pending',
|
||
'dispute_processing': 'Processing',
|
||
'dispute_resolved_today': 'Resolved Today',
|
||
'dispute_resolved': 'Resolved',
|
||
'dispute_rejected': 'Rejected',
|
||
'dispute_type_buyer': 'Buyer Complaint',
|
||
'dispute_type_seller': 'Seller Complaint',
|
||
'dispute_type_refund': 'Refund Request',
|
||
'dispute_th_ticket_id': 'Ticket ID',
|
||
'dispute_th_type': 'Type',
|
||
'dispute_th_order': 'Related Order',
|
||
'dispute_th_plaintiff': 'Plaintiff',
|
||
'dispute_th_defendant': 'Defendant',
|
||
'dispute_th_amount': 'Amount',
|
||
'dispute_th_status': 'Status',
|
||
'dispute_th_sla': 'SLA',
|
||
'dispute_th_created': 'Created',
|
||
|
||
// ── Finance Management ──
|
||
'finance_title': 'Finance Management',
|
||
'finance_platform_fee': 'Platform Fee Revenue',
|
||
'finance_pending_settlement': 'Pending Settlement',
|
||
'finance_consumer_refund': 'Consumer Refunds',
|
||
'finance_pool_balance': 'Fund Pool Balance',
|
||
'finance_settlement_queue': 'Settlement Queue',
|
||
'finance_revenue_trend': 'Revenue Trend',
|
||
'finance_th_issuer': 'Issuer',
|
||
'finance_th_amount': 'Amount',
|
||
'finance_th_status': 'Status',
|
||
'finance_th_time': 'Time',
|
||
'finance_status_settled': 'Settled',
|
||
'finance_status_processing': 'Processing',
|
||
'finance_status_pending': 'Pending',
|
||
'finance_overview': 'Finance Overview',
|
||
'finance_settlement': 'Settlement',
|
||
'finance_fee': 'Fees',
|
||
'finance_revenue': 'Revenue',
|
||
'finance_payout': 'Payouts',
|
||
'finance_reconciliation': 'Reconciliation',
|
||
'finance_invoice': 'Invoices',
|
||
'finance_tax': 'Tax',
|
||
'finance_report': 'Financial Report',
|
||
'finance_period_month': 'This Month',
|
||
'finance_period_cumulative': 'Cumulative',
|
||
'finance_period_realtime': 'Real-time',
|
||
|
||
// ── Chain Monitor ──
|
||
'chain_title': 'Chain Monitor',
|
||
'chain_recent_events': 'Recent On-chain Events',
|
||
'chain_gas_monitor': 'Gas Fee Monitor',
|
||
'chain_current_gas': 'Current Gas',
|
||
'chain_today_avg': 'Today Avg',
|
||
'chain_today_gas_spend': 'Today Gas Spend',
|
||
'chain_monitor': 'Chain Monitor',
|
||
'chain_block_height': 'Block Height',
|
||
'chain_tps': 'TPS',
|
||
'chain_node_status': 'Node Status',
|
||
'chain_contracts': 'Smart Contracts',
|
||
'chain_transactions': 'On-chain Transactions',
|
||
'chain_gas_usage': 'Gas Usage',
|
||
'chain_explorer': 'Block Explorer',
|
||
|
||
// ── Reports ──
|
||
'reports_title': 'Report Center',
|
||
'reports_operations': 'Operations Reports',
|
||
'reports_compliance': 'Compliance Reports',
|
||
'reports_financial': 'Financial Reports',
|
||
'reports_audit': 'Audit Reports',
|
||
'reports_status_generated': 'Generated',
|
||
'reports_status_submitted': 'Submitted',
|
||
'reports_status_passed': 'Passed',
|
||
'reports_status_pending_review': 'Pending Review',
|
||
'reports_status_pending_generate': 'Pending',
|
||
'report_list': 'Report List',
|
||
'report_generate': 'Generate Report',
|
||
'report_daily': 'Daily Report',
|
||
'report_weekly': 'Weekly Report',
|
||
'report_monthly': 'Monthly Report',
|
||
'report_custom': 'Custom Report',
|
||
'report_download': 'Download Report',
|
||
|
||
// ── Merchant Redemption ──
|
||
'merchant_title': 'Merchant Redemption',
|
||
'merchant_today_redemption': 'Today Redemptions',
|
||
'merchant_today_amount': 'Today Amount',
|
||
'merchant_active_stores': 'Active Stores',
|
||
'merchant_abnormal_redemption': 'Abnormal Redemptions',
|
||
'merchant_store_ranking': 'Store Ranking',
|
||
'merchant_realtime_feed': 'Real-time Feed',
|
||
'merchant_need_review': 'Needs Review',
|
||
'merchant_unit_count': 'txns',
|
||
|
||
// ── Agent Panel ──
|
||
'agent_title': 'AI Agent Management',
|
||
'agent_today_sessions': 'Today Sessions',
|
||
'agent_avg_response': 'Avg Response Time',
|
||
'agent_satisfaction': 'User Satisfaction',
|
||
'agent_human_takeover': 'Human Takeover Rate',
|
||
'agent_top_questions': 'Top Questions',
|
||
'agent_modules': 'Agent Modules',
|
||
'agent_running': 'Running',
|
||
'agent_unit_times': 'times',
|
||
|
||
// ── Insurance ──
|
||
'insurance_title': 'Insurance & Consumer Protection',
|
||
'insurance_protection_fund': 'Consumer Protection Fund',
|
||
'insurance_monthly_payout': 'Monthly Payouts',
|
||
'insurance_payout_rate': 'Payout Rate',
|
||
'insurance_ipo_readiness': 'IPO Readiness',
|
||
'insurance_recent_claims': 'Recent Claims',
|
||
'insurance_th_id': 'ID',
|
||
'insurance_th_user': 'User',
|
||
'insurance_th_reason': 'Reason',
|
||
'insurance_th_amount': 'Amount',
|
||
'insurance_th_status': 'Status',
|
||
'insurance_status_paid': 'Paid',
|
||
'insurance_status_processing': 'Processing',
|
||
'insurance_ipo_checklist': 'IPO Readiness Checklist',
|
||
'insurance_pool': 'Insurance Pool',
|
||
'insurance_premium': 'Premium',
|
||
'insurance_claim': 'Claims',
|
||
'insurance_coverage': 'Coverage',
|
||
'insurance_policy': 'Insurance Policy',
|
||
|
||
// ── SEC Filing ──
|
||
'sec_title': 'SEC Filing Management',
|
||
'sec_new_filing': '+ New Filing',
|
||
'sec_filed_count': 'Filed Documents',
|
||
'sec_pending_review': 'Pending Review',
|
||
'sec_passed': 'Approved',
|
||
'sec_next_deadline': 'Next Deadline',
|
||
'sec_filing_list': 'SEC Filing List',
|
||
'sec_th_id': 'ID',
|
||
'sec_th_form_type': 'Form Type',
|
||
'sec_th_title': 'Title',
|
||
'sec_th_filing_date': 'Filing Date',
|
||
'sec_th_deadline': 'Deadline',
|
||
'sec_th_reviewer': 'Reviewer',
|
||
'sec_th_status': 'Status',
|
||
'sec_status_reviewing': 'Under Review',
|
||
'sec_status_submitted': 'Submitted',
|
||
'sec_status_passed': 'Approved',
|
||
'sec_status_needs_revision': 'Needs Revision',
|
||
'sec_status_pending': 'Pending',
|
||
'sec_timeline': 'Filing Timeline',
|
||
'sec_upcoming': 'Upcoming',
|
||
'sec_disclosure_status': 'Disclosure Auto-generation Status',
|
||
'sec_disclosure_progress': 'Disclosure Completion',
|
||
|
||
// ── License Management ──
|
||
'license_title': 'License & Regulatory Permit Management',
|
||
'license_new': '+ New License Application',
|
||
'license_active_count': 'Active Licenses',
|
||
'license_pending': 'Pending',
|
||
'license_expiring_soon': 'Expiring Soon',
|
||
'license_revoked': 'Revoked',
|
||
'license_list': 'License List',
|
||
'license_th_id': 'ID',
|
||
'license_th_name': 'License Name',
|
||
'license_th_jurisdiction': 'Jurisdiction',
|
||
'license_th_reg_body': 'Regulator',
|
||
'license_th_issue_date': 'Issue Date',
|
||
'license_th_expiry_date': 'Expiry Date',
|
||
'license_th_status': 'Status',
|
||
'license_status_active': 'Active',
|
||
'license_status_applying': 'Applying',
|
||
'license_status_renewal': 'Pending Renewal',
|
||
'license_status_expiring': 'Expiring Soon',
|
||
'license_status_expired': 'Expired',
|
||
'license_reg_body_mapping': 'Regulatory Body Mapping',
|
||
'license_renewal_alerts': 'Renewal Alerts',
|
||
'license_unit': 'license(s)',
|
||
'license_jurisdictions_covered': 'active licenses covering {0} jurisdictions',
|
||
|
||
// ── SOX Compliance ──
|
||
'sox_title': 'SOX Compliance Management',
|
||
'sox_overall_score': 'Overall Compliance Score',
|
||
'sox_full_score': 'Out of 100',
|
||
'sox_total_controls': 'Total Controls',
|
||
'sox_test_passed': 'Passed',
|
||
'sox_defects_found': 'Defects Found',
|
||
'sox_pending_test': 'Pending Test',
|
||
'sox_control_categories': 'Internal Control Categories',
|
||
'sox_th_control_point': 'Control Point',
|
||
'sox_th_test_result': 'Test Result',
|
||
'sox_th_last_test': 'Last Test',
|
||
'sox_th_next_test': 'Next Test',
|
||
'sox_result_passed': 'Passed',
|
||
'sox_result_defect': 'Defect Found',
|
||
'sox_result_pending': 'Pending',
|
||
'sox_deficiency_tracking': 'Deficiency Tracking',
|
||
'sox_th_id': 'ID',
|
||
'sox_th_control': 'Control',
|
||
'sox_th_severity': 'Severity',
|
||
'sox_th_description': 'Description',
|
||
'sox_th_due_date': 'Due Date',
|
||
'sox_th_status': 'Status',
|
||
'sox_th_owner': 'Owner',
|
||
'sox_severity_major': 'Material Weakness',
|
||
'sox_severity_minor': 'Significant Deficiency',
|
||
'sox_severity_observation': 'Observation',
|
||
'sox_status_remediating': 'Remediating',
|
||
'sox_status_pending': 'Pending',
|
||
'sox_auditor_progress': 'Auditor Review Progress',
|
||
'sox_audit_progress': 'Audit Progress',
|
||
|
||
// ── Tax Compliance ──
|
||
'tax_title': 'Tax Compliance Management',
|
||
'tax_export_report': 'Export Tax Report',
|
||
'tax_payable': 'Tax Payable',
|
||
'tax_paid': 'Tax Paid',
|
||
'tax_compliance_rate': 'Tax Compliance Rate',
|
||
'tax_pending_items': 'Pending Items',
|
||
'tax_obligations': 'Tax Obligations by Jurisdiction',
|
||
'tax_th_jurisdiction': 'Jurisdiction',
|
||
'tax_th_type': 'Tax Type',
|
||
'tax_th_period': 'Period',
|
||
'tax_th_payable': 'Payable',
|
||
'tax_th_paid': 'Paid',
|
||
'tax_th_deadline': 'Deadline',
|
||
'tax_th_status': 'Status',
|
||
'tax_status_paid': 'Paid',
|
||
'tax_status_partial': 'Partial',
|
||
'tax_status_unpaid': 'Unpaid',
|
||
'tax_type_breakdown': 'Tax Type Breakdown',
|
||
'tax_th_tax_type': 'Tax Type',
|
||
'tax_th_federal': 'Federal',
|
||
'tax_th_state': 'State',
|
||
'tax_th_total': 'Total',
|
||
'tax_th_percentage': 'Share',
|
||
'tax_calendar': 'Tax Calendar',
|
||
'tax_status_done': 'Completed',
|
||
'tax_status_pending': 'Pending',
|
||
'tax_irs_tracker': 'IRS Filing Tracker',
|
||
'tax_th_form': 'Form',
|
||
'tax_th_description': 'Description',
|
||
'tax_th_tax_year': 'Tax Year',
|
||
'tax_th_filed_date': 'Filed Date',
|
||
'tax_filing_submitted': 'Submitted',
|
||
'tax_filing_preparing': 'Preparing',
|
||
'tax_filing_on_demand': 'On Demand',
|
||
'tax_filing_overdue': 'Overdue',
|
||
|
||
// ── IPO Readiness ──
|
||
'ipo_title': 'IPO Readiness Checklist',
|
||
'ipo_subtitle': 'Track all IPO milestones, compliance items, dependencies and blockers',
|
||
'ipo_total_items': 'Total Items',
|
||
'ipo_overall_progress': 'Overall IPO Readiness',
|
||
'ipo_cat_legal': 'Legal Compliance',
|
||
'ipo_cat_financial': 'Financial Audit',
|
||
'ipo_cat_sox': 'SOX Compliance',
|
||
'ipo_cat_governance': 'Corporate Governance',
|
||
'ipo_cat_insurance': 'Insurance Coverage',
|
||
'ipo_th_id': 'ID',
|
||
'ipo_th_item': 'Item',
|
||
'ipo_th_owner': 'Owner',
|
||
'ipo_th_deadline': 'Deadline',
|
||
'ipo_th_status': 'Status',
|
||
'ipo_unit_done': 'done',
|
||
'ipo_dependency': 'Depends on',
|
||
'ipo_timeline': 'IPO Timeline',
|
||
'ipo_blockers': 'Blockers',
|
||
'ipo_category_progress': 'Category Progress',
|
||
'ipo_key_contacts': 'Key Contacts',
|
||
'ipo_owner': 'Owner',
|
||
'ipo_deadline': 'Deadline',
|
||
|
||
// ── User Analytics ──
|
||
'ua_title': 'User Analytics',
|
||
'ua_total_users': 'Total Users',
|
||
'ua_new_users_week': 'New Users/Week',
|
||
'ua_growth_trend': 'User Growth Trend',
|
||
'ua_kyc_distribution': 'KYC Level Distribution',
|
||
'ua_geo_distribution': 'Geographic Distribution (Top 10)',
|
||
'ua_th_rank': 'Rank',
|
||
'ua_th_region': 'Region',
|
||
'ua_th_users': 'Users',
|
||
'ua_th_percent': 'Share',
|
||
'ua_retention_matrix': 'User Retention Matrix',
|
||
'ua_th_cohort': 'Cohort',
|
||
'ua_user_segments': 'User Segments',
|
||
'ua_segment_high_freq': 'High Frequency',
|
||
'ua_segment_occasional': 'Occasional',
|
||
'ua_segment_browse': 'Browse Only',
|
||
'ua_segment_churned': 'Churned',
|
||
'ua_unit_people': 'users',
|
||
|
||
// ── Coupon Analytics ──
|
||
'ca_title': 'Coupon Analytics',
|
||
'ca_total_coupons': 'Total Coupons',
|
||
'ca_active_coupons': 'Active Coupons',
|
||
'ca_redeemed': 'Redeemed',
|
||
'ca_expiring_soon': 'Expiring Soon',
|
||
'ca_category_distribution': 'Category Distribution',
|
||
'ca_face_value_distribution': 'Face Value Distribution',
|
||
'ca_top_selling': 'Top 10 Best Sellers',
|
||
'ca_th_rank': 'Rank',
|
||
'ca_th_brand': 'Brand',
|
||
'ca_th_coupon_name': 'Coupon Name',
|
||
'ca_th_sales': 'Sales',
|
||
'ca_th_revenue': 'Revenue',
|
||
'ca_th_rating': 'Rating',
|
||
'ca_breakage_trend': 'Breakage Trend (Unredeemed Rate)',
|
||
'ca_secondary_market': 'Secondary Market Analytics',
|
||
|
||
// ── Market Maker ──
|
||
'mm_title': 'Market Maker Management',
|
||
'mm_add_new': 'Add Market Maker',
|
||
'mm_active_makers': 'Active Makers',
|
||
'mm_total_liquidity': 'Total Liquidity',
|
||
'mm_daily_volume': 'Daily Volume',
|
||
'mm_avg_spread': 'Avg Spread',
|
||
'mm_th_name': 'Market Maker',
|
||
'mm_th_status': 'Status',
|
||
'mm_th_daily_volume': 'Daily Volume',
|
||
'mm_status_active': 'Active',
|
||
'mm_status_paused': 'Paused',
|
||
'mm_status_suspended': 'Suspended',
|
||
'mm_liquidity_pools': 'Liquidity Pool Distribution',
|
||
'mm_order_book_depth': 'Order Book Depth',
|
||
'mm_health_indicators': 'Market Health Indicators',
|
||
'mm_risk_alerts': 'Risk Alerts',
|
||
'mm_high_risk': 'High Risk',
|
||
'mm_unit_makers': 'makers',
|
||
'market_maker_list': 'Market Makers',
|
||
'market_maker_config': 'Market Maker Config',
|
||
'market_maker_spread': 'Spread',
|
||
'market_maker_liquidity': 'Liquidity',
|
||
'market_maker_algorithm': 'Algorithm Strategy',
|
||
'market_maker_pnl': 'P&L',
|
||
|
||
// ── Consumer Protection ──
|
||
'cp_title': 'Consumer Protection',
|
||
'cp_total_complaints': 'Total Complaints',
|
||
'cp_resolved': 'Resolved',
|
||
'cp_processing': 'Processing',
|
||
'cp_avg_resolution_time': 'Avg Resolution Time',
|
||
'cp_complaint_categories': 'Complaint Categories',
|
||
'cp_cat_redeem_fail': 'Redemption Failure',
|
||
'cp_cat_refund_dispute': 'Refund Dispute',
|
||
'cp_cat_fake_coupon': 'Fake Coupon',
|
||
'cp_cat_other': 'Other',
|
||
'cp_csat': 'Consumer Satisfaction (CSAT)',
|
||
'cp_protection_fund': 'Protection Fund Utilization',
|
||
'cp_recent_complaints': 'Recent Complaints',
|
||
'cp_search_complaints': 'Search complaints...',
|
||
'cp_th_id': 'ID',
|
||
'cp_th_severity': 'Severity',
|
||
'cp_th_category': 'Category',
|
||
'cp_th_description': 'Description',
|
||
'cp_th_status': 'Status',
|
||
'cp_th_assignee': 'Assignee',
|
||
'cp_th_date': 'Date',
|
||
'cp_refund_compliance': 'Refund Compliance - Non-compliant Issuers Top 5',
|
||
'cp_th_rank': 'Rank',
|
||
'cp_th_issuer': 'Issuer',
|
||
'cp_th_violations': 'Violations',
|
||
'cp_th_refund_rate': 'Refund Rate',
|
||
'cp_th_avg_delay': 'Avg Delay',
|
||
'cp_th_risk_level': 'Risk Level',
|
||
'cp_unit_cases': 'cases',
|
||
|
||
// ── AI Agent ──
|
||
'ai_agent_list': 'AI Agent List',
|
||
'ai_agent_config': 'AI Agent Config',
|
||
'ai_agent_logs': 'AI Execution Logs',
|
||
'ai_agent_pricing': 'AI Pricing Engine',
|
||
'ai_agent_recommendation': 'AI Recommendation Engine',
|
||
'ai_agent_risk': 'AI Risk Control',
|
||
'ai_agent_status': 'Running Status',
|
||
},
|
||
|
||
'ja-JP': {
|
||
// ── Common ──
|
||
'app_name': 'Genex 管理画面',
|
||
'confirm': '確認',
|
||
'cancel': 'キャンセル',
|
||
'save': '保存',
|
||
'delete': '削除',
|
||
'edit': '編集',
|
||
'search': '検索',
|
||
'loading': '読み込み中...',
|
||
'retry': 'リトライ',
|
||
'done': '完了',
|
||
'create': '作成',
|
||
'export': 'エクスポート',
|
||
'import': 'インポート',
|
||
'filter': 'フィルター',
|
||
'reset': 'リセット',
|
||
'submit': '送信',
|
||
'approve': '承認',
|
||
'reject': '却下',
|
||
'enable': '有効',
|
||
'disable': '無効',
|
||
'status': 'ステータス',
|
||
'actions': '操作',
|
||
'details': '詳細',
|
||
'total': '合計',
|
||
'yes': 'はい',
|
||
'no': 'いいえ',
|
||
'all': 'すべて',
|
||
'view': '表示',
|
||
'process': '処理',
|
||
'download': 'ダウンロード',
|
||
'collapse': '折りたたむ',
|
||
'time': '時間',
|
||
'amount': '金額',
|
||
'type': 'タイプ',
|
||
'mark': 'マーク',
|
||
'review': '審査',
|
||
'suspend': '一時停止',
|
||
'resume': '再開',
|
||
'warning_label': '警告',
|
||
'investigate': '調査',
|
||
'completed': '完了',
|
||
'in_progress': '進行中',
|
||
'pending': '未着手',
|
||
'blocked': 'ブロック',
|
||
'custom_export': 'カスタムエクスポート',
|
||
'export_report': 'レポートエクスポート',
|
||
'auto_generated': '自動生成',
|
||
'as_of': '時点',
|
||
'generating': '生成中',
|
||
'accuracy': '精度',
|
||
'overall_progress': '全体進捗',
|
||
'renew_now': '今すぐ更新',
|
||
'not_applied': '未申請',
|
||
'urgency_critical': '緊急',
|
||
'urgency_high': '高',
|
||
'urgency_medium': '中',
|
||
'urgency_low': '低',
|
||
'expiry_date': '有効期限',
|
||
'remaining_days': '残り {0} 日',
|
||
'severity_high': '高',
|
||
'severity_medium': '中',
|
||
'severity_low': '低',
|
||
|
||
// ── Sidebar / Navigation ──
|
||
'nav_dashboard': '運営概要',
|
||
'nav_overview': '概要',
|
||
'nav_users': 'ユーザー管理',
|
||
'nav_coupons': 'クーポン審査',
|
||
'nav_issuers': '発行者管理',
|
||
'nav_issuers_review': '申請審査',
|
||
'nav_issuers_list': '発行者一覧',
|
||
'nav_issuers_coupons': 'クーポン審査',
|
||
'nav_users_list': 'ユーザー一覧',
|
||
'nav_users_kyc': 'KYC審査',
|
||
'nav_trading': '取引監視',
|
||
'nav_trading_realtime': 'リアルタイムフィード',
|
||
'nav_trading_stats': '取引統計',
|
||
'nav_trading_orders': '注文管理',
|
||
'nav_risk': 'リスクセンター',
|
||
'nav_risk_dashboard': 'リスクダッシュボード',
|
||
'nav_risk_suspicious': '不審な取引',
|
||
'nav_risk_blacklist': 'ブラックリスト管理',
|
||
'nav_risk_ofac': 'OFACスクリーニングログ',
|
||
'nav_finance': '財務管理',
|
||
'nav_chain': 'チェーン監視',
|
||
'nav_reports': 'レポートセンター',
|
||
'nav_compliance': 'コンプライアンス',
|
||
'nav_compliance_sar': 'SAR管理',
|
||
'nav_compliance_ctr': 'CTR管理',
|
||
'nav_compliance_audit': '監査ログ',
|
||
'nav_compliance_reports': '規制レポート',
|
||
'nav_analytics': 'データ分析',
|
||
'nav_analytics_users': 'ユーザー分析',
|
||
'nav_analytics_coupons': 'クーポン分析',
|
||
'nav_analytics_market_maker': 'マーケットメーカー分析',
|
||
'nav_analytics_consumer_protection': '消費者保護',
|
||
'nav_ai_agent': 'AIエージェント',
|
||
'nav_system': 'システム管理',
|
||
'nav_system_admins': '管理者アカウント',
|
||
'nav_system_config': 'システム設定',
|
||
'nav_system_contracts': 'コントラクト管理',
|
||
'nav_system_monitor': 'システム監視',
|
||
'nav_disputes': '紛争処理',
|
||
'nav_coupons_mgmt': 'クーポン管理',
|
||
'nav_merchant': '加盟店精算',
|
||
'nav_agent': 'エージェントパネル',
|
||
'nav_market_maker': 'マーケットメーカー',
|
||
'nav_insurance': '保険管理',
|
||
'nav_app_versions': 'アプリバージョン',
|
||
|
||
// ── App Version Management ──
|
||
'app_version_title': 'アプリバージョン管理',
|
||
'app_version_genex_mobile': 'Genex モバイル',
|
||
'app_version_admin_app': '管理アプリ',
|
||
'app_version_all_platforms': '全プラットフォーム',
|
||
'app_version_upload': 'バージョンをアップロード',
|
||
'app_version_version_name': 'バージョン',
|
||
'app_version_version_code': 'バージョンコード',
|
||
'app_version_build_number': 'ビルド番号',
|
||
'app_version_platform': 'プラットフォーム',
|
||
'app_version_file_size': 'ファイルサイズ',
|
||
'app_version_force_update': '強制更新',
|
||
'app_version_enabled': '有効',
|
||
'app_version_disabled': '無効',
|
||
'app_version_changelog': '更新ログ',
|
||
'app_version_min_os': '最低OSバージョン',
|
||
'app_version_release_date': 'リリース日',
|
||
'app_version_upload_file': 'APK/IPAファイルを選択',
|
||
'app_version_parsing': '解析中...',
|
||
'app_version_uploading': 'アップロード中...',
|
||
'app_version_confirm_delete': 'このバージョンを削除しますか?この操作は元に戻せません。',
|
||
'app_version_no_versions': 'バージョンが見つかりません',
|
||
'app_version_edit': 'バージョンを編集',
|
||
'app_version_created_at': '作成日時',
|
||
|
||
// ── Header ──
|
||
'header_search_placeholder': 'ユーザー/注文/取引を検索...',
|
||
'header_ai_assistant': 'AIアシスタント',
|
||
'header_logout': 'ログアウト',
|
||
|
||
// ── Dashboard ──
|
||
'dashboard_title': '運営概要',
|
||
'dashboard_total_volume': '総取引量',
|
||
'dashboard_total_amount': '取引金額',
|
||
'dashboard_active_users': 'アクティブユーザー',
|
||
'dashboard_issuer_count': '発行者数',
|
||
'dashboard_coupon_circulation': 'クーポン流通量',
|
||
'dashboard_system_health': 'システムヘルス',
|
||
'dashboard_volume_trend': '取引量トレンド',
|
||
'dashboard_type_distribution': '取引タイプ分布',
|
||
'dashboard_realtime_feed': 'リアルタイムフィード',
|
||
'dashboard_total_users': '総ユーザー数',
|
||
'dashboard_total_coupons': 'クーポン総数',
|
||
'dashboard_trading_volume': '取引量',
|
||
'dashboard_revenue': 'プラットフォーム収益',
|
||
'dashboard_today': '本日',
|
||
'dashboard_weekly': '今週',
|
||
'dashboard_monthly': '今月',
|
||
'dashboard_yearly': '今年',
|
||
'dashboard_real_time': 'リアルタイムデータ',
|
||
'dashboard_alerts': 'アラート',
|
||
'dashboard_th_time': '時間',
|
||
'dashboard_th_type': 'タイプ',
|
||
'dashboard_th_order': '注文番号',
|
||
'dashboard_th_amount': '金額',
|
||
'dashboard_th_status': 'ステータス',
|
||
'dashboard_status_completed': '完了',
|
||
'dashboard_status_processing': '処理中',
|
||
'dashboard_type_purchase': '購入',
|
||
'dashboard_type_redeem': '利用',
|
||
'dashboard_type_resell': '転売',
|
||
'dashboard_type_transfer': '譲渡',
|
||
'dashboard_service_api': 'APIサービス',
|
||
'dashboard_service_db': 'データベース',
|
||
'dashboard_service_cache': 'キャッシュサービス',
|
||
'dashboard_service_mq': 'メッセージキュー',
|
||
|
||
// ── User Management ──
|
||
'user_management_title': 'ユーザー管理',
|
||
'user_search_placeholder': '電話番号/メール/ユーザーIDで検索...',
|
||
'user_list': 'ユーザー一覧',
|
||
'user_detail': 'ユーザー詳細',
|
||
'user_id': 'ユーザーID',
|
||
'user_name': 'ユーザー名',
|
||
'user_email': 'メール',
|
||
'user_phone': '電話番号',
|
||
'user_role': '役割',
|
||
'user_status': 'ステータス',
|
||
'user_kyc_level': 'KYCレベル',
|
||
'user_created_at': '登録日',
|
||
'user_last_login': '最終ログイン',
|
||
'user_freeze': '凍結',
|
||
'user_unfreeze': '凍結解除',
|
||
'user_ban': 'アカウント停止',
|
||
'user_consumer': '消費者',
|
||
'user_issuer': '発行者',
|
||
'user_admin': '管理者',
|
||
'user_coupon_count': 'クーポン数',
|
||
'user_total_traded': '取引額',
|
||
'user_risk_tags': 'リスクタグ',
|
||
'user_active': '正常',
|
||
'user_frozen': '凍結中',
|
||
'user_locked': 'ロック中',
|
||
'user_unlock': 'ロック解除',
|
||
|
||
// ── SMS Log ──
|
||
'nav_users_sms_logs': 'SMS ログ',
|
||
'sms_log_title': 'SMS 送信ログ',
|
||
'sms_search_placeholder': '電話番号で検索...',
|
||
'sms_search_hint': '電話番号を入力して SMS 送信記録を検索してください',
|
||
'sms_log_phone': '電話番号',
|
||
'sms_log_type': 'タイプ',
|
||
'sms_log_status': 'ステータス',
|
||
'sms_log_provider': 'プロバイダ',
|
||
'sms_log_time': '送信日時',
|
||
'sms_type_register': '登録',
|
||
'sms_type_login': 'ログイン',
|
||
'sms_type_reset': 'パスワードリセット',
|
||
'sms_type_change_phone': '電話番号変更',
|
||
'sms_status_sent': '送信済み',
|
||
'sms_status_failed': '送信失敗',
|
||
'sms_no_logs': '記録なし',
|
||
|
||
// ── Issuer Management ──
|
||
'issuer_management_title': '発行者管理',
|
||
'issuer_ai_pre_review': 'AI事前審査',
|
||
'issuer_list': '発行者一覧',
|
||
'issuer_detail': '発行者詳細',
|
||
'issuer_name': '名称',
|
||
'issuer_company_name': '企業名',
|
||
'issuer_credit_rating': '信用格付け',
|
||
'issuer_onboarding_status': '申請状態',
|
||
'issuer_onboarding_pending': '審査中',
|
||
'issuer_onboarding_approved': '承認済み',
|
||
'issuer_onboarding_rejected': '却下済み',
|
||
'issuer_total_issued': '発行総数',
|
||
'issuer_total_redeemed': '検証総数',
|
||
'issuer_collateral': '担保',
|
||
'issuer_deposit': '保証金',
|
||
'issuer_submit_time': '申請日',
|
||
'issuer_coupon_count': 'クーポン数',
|
||
'issuer_total_volume': '総発行額',
|
||
|
||
// ── Coupon Management ──
|
||
'coupon_management_title': 'クーポン管理',
|
||
'coupon_review': 'クーポン審査',
|
||
'coupon_pending_review': '審査待ち',
|
||
'coupon_approved': '承認済み',
|
||
'coupon_rejected': '却下済み',
|
||
'coupon_active': '販売中',
|
||
'coupon_suspended': '一時停止',
|
||
'coupon_expired': '期限切れ',
|
||
'coupon_issuer': '発行者',
|
||
'coupon_face_value': '額面',
|
||
'coupon_quantity': '発行数',
|
||
'coupon_valid_period': '有効期間',
|
||
'coupon_category': 'カテゴリー',
|
||
'coupon_risk_score': 'リスクスコア',
|
||
'coupon_chain_status': 'オンチェーン状態',
|
||
'coupon_approve': '承認',
|
||
'coupon_reject': '却下',
|
||
'coupon_review_comment': '審査コメント',
|
||
'coupon_id': 'クーポンID',
|
||
'coupon_name': 'クーポン名',
|
||
'coupon_template': 'テンプレート',
|
||
'coupon_sold': '販売済み',
|
||
'coupon_redeemed': '利用済み',
|
||
|
||
// ── Trading Monitor ──
|
||
'trading_title': '取引監視',
|
||
'trading_today_volume': '本日取引量',
|
||
'trading_today_amount': '本日取引額',
|
||
'trading_avg_discount': '平均割引率',
|
||
'trading_large_trades': '大口取引',
|
||
'trading_volume_trend': '取引量/金額トレンド',
|
||
'trading_order_management': '注文管理',
|
||
'trading_search_order': '注文番号で検索...',
|
||
'trading_th_order_id': '注文番号',
|
||
'trading_th_type': 'タイプ',
|
||
'trading_th_coupon_name': 'クーポン名',
|
||
'trading_th_buyer': '買い手',
|
||
'trading_th_seller': '売り手',
|
||
'trading_th_amount': '金額',
|
||
'trading_th_status': 'ステータス',
|
||
'trading_th_time': '時間',
|
||
'trading_type_purchase': '購入',
|
||
'trading_type_resell': '転売',
|
||
'trading_type_redeem': '利用',
|
||
'trading_type_transfer': '譲渡',
|
||
'trading_status_completed': '完了',
|
||
'trading_status_dispute': '紛争',
|
||
|
||
// ── Risk Center ──
|
||
'risk_title': 'リスクセンター',
|
||
'risk_ai_warning': 'AIリスク警告',
|
||
'risk_events': 'リスクイベント',
|
||
'risk_suspicious_trades': '不審な取引',
|
||
'risk_frozen_accounts': '凍結アカウント',
|
||
'risk_ofac_hits': 'OFACヒット',
|
||
'risk_th_trade_id': '取引ID',
|
||
'risk_th_user': 'ユーザー',
|
||
'risk_th_anomaly_type': '異常タイプ',
|
||
'risk_th_amount': '金額',
|
||
'risk_th_time': '時間',
|
||
'risk_th_risk_score': 'リスクスコア',
|
||
'risk_type_high_freq': '高頻度取引',
|
||
'risk_type_large_single': '大口単独',
|
||
'risk_type_related_account': '関連アカウント',
|
||
'risk_type_abnormal_ip': '異常IP',
|
||
|
||
// ── Compliance ──
|
||
'compliance_title': 'コンプライアンスレポート',
|
||
'compliance_ai_generate': 'AIレポート生成',
|
||
'compliance_tab_sar': 'SAR管理',
|
||
'compliance_tab_ctr': 'CTR管理',
|
||
'compliance_tab_audit': '監査ログ',
|
||
'compliance_tab_reports': '規制レポート',
|
||
'compliance_overview': 'コンプライアンス概要',
|
||
'compliance_sec_filing': 'SEC申告',
|
||
'compliance_license': 'ライセンス管理',
|
||
'compliance_sox': 'SOX監査',
|
||
'compliance_tax_report': '税務報告',
|
||
'compliance_aml': 'マネーロンダリング対策',
|
||
'compliance_kyc_review': 'KYC審査',
|
||
'compliance_consumer_protection': '消費者保護',
|
||
'compliance_risk_assessment': 'リスク評価',
|
||
'compliance_audit_log': '監査ログ',
|
||
'compliance_policy': 'コンプライアンスポリシー',
|
||
'compliance_sar_id': 'SAR番号',
|
||
'compliance_sar_related_txn': '関連取引',
|
||
'compliance_sar_user': '対象ユーザー',
|
||
'compliance_sar_amount': '金額',
|
||
'compliance_sar_risk_type': 'リスクタイプ',
|
||
'compliance_sar_status': 'ステータス',
|
||
'compliance_sar_created': '作成日',
|
||
'compliance_sar_pending': '未提出',
|
||
'compliance_sar_submitted': '提出済み',
|
||
'compliance_ctr_title': '大口取引報告',
|
||
'compliance_ctr_desc': '$10,000超の取引はCTR自動生成。現在保留中の項目はありません',
|
||
'compliance_audit_search': '監査ログを検索...',
|
||
'compliance_audit_action_login': 'ログイン',
|
||
'compliance_audit_action_review': '審査',
|
||
'compliance_audit_action_config': '設定',
|
||
'compliance_audit_action_freeze': '凍結',
|
||
'compliance_audit_action_export': 'エクスポート',
|
||
'compliance_audit_action_query': '照会',
|
||
'compliance_report_daily': '日次',
|
||
'compliance_report_monthly': '月次',
|
||
'compliance_report_sar_quarterly': '四半期SAR概要',
|
||
'compliance_report_annual': '年次コンプライアンスレポート',
|
||
|
||
// ── System Management ──
|
||
'system_title': 'システム管理',
|
||
'system_tab_admins': '管理者アカウント',
|
||
'system_tab_config': 'システム設定',
|
||
'system_tab_contracts': 'コントラクト管理',
|
||
'system_tab_monitor': 'システム監視',
|
||
'system_admin_list': '管理者一覧',
|
||
'system_add_admin': '+ 管理者追加',
|
||
'system_th_account': 'アカウント',
|
||
'system_th_name': '名前',
|
||
'system_th_role': '役割',
|
||
'system_th_last_login': '最終ログイン',
|
||
'system_th_status': 'ステータス',
|
||
'system_general': '一般設定',
|
||
'system_roles': '役割と権限',
|
||
'system_api_keys': 'APIキー',
|
||
'system_webhooks': 'Webhooks',
|
||
'system_notifications': '通知設定',
|
||
'system_maintenance': 'メンテナンス',
|
||
'system_backup': 'バックアップ',
|
||
'system_logs': 'システムログ',
|
||
'system_feature_flags': '機能フラグ',
|
||
'system_rate_limit': 'レート制限',
|
||
'system_fee_config': '手数料率設定',
|
||
'system_kyc_config': 'KYC閾値設定',
|
||
'system_trade_limit_config': '取引限度額設定',
|
||
'system_params': 'システムパラメータ',
|
||
'system_contract_status': 'スマートコントラクト状態',
|
||
'system_running': '稼働中',
|
||
'system_health_check': 'サービスヘルスチェック',
|
||
'system_api_response': 'APIレスポンスタイム',
|
||
|
||
// ── Disputes ──
|
||
'dispute_title': '紛争処理',
|
||
'dispute_pending': '未処理',
|
||
'dispute_processing': '処理中',
|
||
'dispute_resolved_today': '本日解決',
|
||
'dispute_resolved': '解決済み',
|
||
'dispute_rejected': '却下済み',
|
||
'dispute_type_buyer': '買い手申立',
|
||
'dispute_type_seller': '売り手申立',
|
||
'dispute_type_refund': '返金申請',
|
||
'dispute_th_ticket_id': 'チケットID',
|
||
'dispute_th_type': 'タイプ',
|
||
'dispute_th_order': '関連注文',
|
||
'dispute_th_plaintiff': '申立人',
|
||
'dispute_th_defendant': '被申立人',
|
||
'dispute_th_amount': '金額',
|
||
'dispute_th_status': 'ステータス',
|
||
'dispute_th_sla': 'SLA',
|
||
'dispute_th_created': '作成日',
|
||
|
||
// ── Finance Management ──
|
||
'finance_title': '財務管理',
|
||
'finance_platform_fee': 'プラットフォーム手数料収入',
|
||
'finance_pending_settlement': '未精算(発行者向け)',
|
||
'finance_consumer_refund': '消費者返金',
|
||
'finance_pool_balance': '資金プール残高',
|
||
'finance_settlement_queue': '精算キュー',
|
||
'finance_revenue_trend': '収益トレンド',
|
||
'finance_th_issuer': '発行者',
|
||
'finance_th_amount': '金額',
|
||
'finance_th_status': 'ステータス',
|
||
'finance_th_time': '時間',
|
||
'finance_status_settled': '精算済み',
|
||
'finance_status_processing': '処理中',
|
||
'finance_status_pending': '未精算',
|
||
'finance_overview': '財務概要',
|
||
'finance_settlement': '決済管理',
|
||
'finance_fee': '手数料',
|
||
'finance_revenue': '収益',
|
||
'finance_payout': '支払い',
|
||
'finance_reconciliation': '照合',
|
||
'finance_invoice': '請求書',
|
||
'finance_tax': '税務',
|
||
'finance_report': '財務レポート',
|
||
'finance_period_month': '今月',
|
||
'finance_period_cumulative': '累計',
|
||
'finance_period_realtime': 'リアルタイム',
|
||
|
||
// ── Chain Monitor ──
|
||
'chain_title': 'チェーン監視',
|
||
'chain_recent_events': '最近のオンチェーンイベント',
|
||
'chain_gas_monitor': 'Gas費モニター',
|
||
'chain_current_gas': '現在のGas',
|
||
'chain_today_avg': '本日平均',
|
||
'chain_today_gas_spend': '本日Gas支出',
|
||
'chain_monitor': 'チェーン監視',
|
||
'chain_block_height': 'ブロック高さ',
|
||
'chain_tps': 'TPS',
|
||
'chain_node_status': 'ノードステータス',
|
||
'chain_contracts': 'スマートコントラクト',
|
||
'chain_transactions': 'オンチェーン取引',
|
||
'chain_gas_usage': 'Gas消費',
|
||
'chain_explorer': 'ブロックエクスプローラー',
|
||
|
||
// ── Reports ──
|
||
'reports_title': 'レポートセンター',
|
||
'reports_operations': '運営レポート',
|
||
'reports_compliance': 'コンプライアンスレポート',
|
||
'reports_financial': '財務レポート',
|
||
'reports_audit': '監査レポート',
|
||
'reports_status_generated': '生成済み',
|
||
'reports_status_submitted': '提出済み',
|
||
'reports_status_passed': '合格',
|
||
'reports_status_pending_review': '審査待ち',
|
||
'reports_status_pending_generate': '未生成',
|
||
'report_list': 'レポート一覧',
|
||
'report_generate': 'レポート生成',
|
||
'report_daily': '日次レポート',
|
||
'report_weekly': '週次レポート',
|
||
'report_monthly': '月次レポート',
|
||
'report_custom': 'カスタムレポート',
|
||
'report_download': 'レポートダウンロード',
|
||
|
||
// ── Merchant Redemption ──
|
||
'merchant_title': '加盟店精算管理',
|
||
'merchant_today_redemption': '本日精算',
|
||
'merchant_today_amount': '本日精算額',
|
||
'merchant_active_stores': 'アクティブ店舗',
|
||
'merchant_abnormal_redemption': '異常精算',
|
||
'merchant_store_ranking': '店舗精算ランキング',
|
||
'merchant_realtime_feed': 'リアルタイムフィード',
|
||
'merchant_need_review': '要審査',
|
||
'merchant_unit_count': '件',
|
||
|
||
// ── Agent Panel ──
|
||
'agent_title': 'AIエージェント管理',
|
||
'agent_today_sessions': '本日セッション数',
|
||
'agent_avg_response': '平均応答時間',
|
||
'agent_satisfaction': 'ユーザー満足度',
|
||
'agent_human_takeover': '有人対応率',
|
||
'agent_top_questions': '人気質問 Top 5',
|
||
'agent_modules': 'エージェントモジュール',
|
||
'agent_running': '稼働中',
|
||
'agent_unit_times': '回',
|
||
|
||
// ── Insurance ──
|
||
'insurance_title': '保険と消費者保護',
|
||
'insurance_protection_fund': '消費者保護基金',
|
||
'insurance_monthly_payout': '今月支払い',
|
||
'insurance_payout_rate': '支払い率',
|
||
'insurance_ipo_readiness': 'IPO準備度',
|
||
'insurance_recent_claims': '最近の保険請求',
|
||
'insurance_th_id': '番号',
|
||
'insurance_th_user': 'ユーザー',
|
||
'insurance_th_reason': '理由',
|
||
'insurance_th_amount': '金額',
|
||
'insurance_th_status': 'ステータス',
|
||
'insurance_status_paid': '支払い済み',
|
||
'insurance_status_processing': '処理中',
|
||
'insurance_ipo_checklist': 'IPO準備チェックリスト',
|
||
'insurance_pool': '保険プール',
|
||
'insurance_premium': '保険料',
|
||
'insurance_claim': '保険請求',
|
||
'insurance_coverage': '補償範囲',
|
||
'insurance_policy': '保険ポリシー',
|
||
|
||
// ── SEC Filing ──
|
||
'sec_title': 'SEC文書管理',
|
||
'sec_new_filing': '+ 新規Filing',
|
||
'sec_filed_count': '提出済み文書数',
|
||
'sec_pending_review': '審査待ち',
|
||
'sec_passed': '承認済み',
|
||
'sec_next_deadline': '次の締切まで',
|
||
'sec_filing_list': 'SEC申告文書一覧',
|
||
'sec_th_id': '番号',
|
||
'sec_th_form_type': 'フォームタイプ',
|
||
'sec_th_title': 'タイトル',
|
||
'sec_th_filing_date': '提出日',
|
||
'sec_th_deadline': '締切日',
|
||
'sec_th_reviewer': '審査者',
|
||
'sec_th_status': 'ステータス',
|
||
'sec_status_reviewing': '審査中',
|
||
'sec_status_submitted': '提出済み',
|
||
'sec_status_passed': '承認済み',
|
||
'sec_status_needs_revision': '要修正',
|
||
'sec_status_pending': '未提出',
|
||
'sec_timeline': '申告スケジュール',
|
||
'sec_upcoming': '期限間近',
|
||
'sec_disclosure_status': '開示文書自動生成状況',
|
||
'sec_disclosure_progress': '開示文書完成度',
|
||
|
||
// ── License Management ──
|
||
'license_title': 'ライセンス・規制許可管理',
|
||
'license_new': '+ 新規ライセンス申請',
|
||
'license_active_count': 'アクティブライセンス数',
|
||
'license_pending': '申請待ち',
|
||
'license_expiring_soon': '期限間近',
|
||
'license_revoked': '取消済み',
|
||
'license_list': 'ライセンス一覧',
|
||
'license_th_id': '番号',
|
||
'license_th_name': 'ライセンス名',
|
||
'license_th_jurisdiction': '管轄',
|
||
'license_th_reg_body': '規制機関',
|
||
'license_th_issue_date': '発行日',
|
||
'license_th_expiry_date': '有効期限',
|
||
'license_th_status': 'ステータス',
|
||
'license_status_active': '有効',
|
||
'license_status_applying': '申請中',
|
||
'license_status_renewal': '更新待ち',
|
||
'license_status_expiring': '期限間近',
|
||
'license_status_expired': '期限切れ',
|
||
'license_reg_body_mapping': '規制機関マッピング',
|
||
'license_renewal_alerts': '更新アラート',
|
||
'license_unit': 'ライセンス',
|
||
'license_jurisdictions_covered': '件のライセンスが {0} 管轄区域をカバー',
|
||
|
||
// ── SOX Compliance ──
|
||
'sox_title': 'SOXコンプライアンス管理',
|
||
'sox_overall_score': '総合コンプライアンススコア',
|
||
'sox_full_score': '満点 100',
|
||
'sox_total_controls': '総管理項目',
|
||
'sox_test_passed': 'テスト合格',
|
||
'sox_defects_found': '欠陥発見',
|
||
'sox_pending_test': 'テスト待ち',
|
||
'sox_control_categories': '内部統制カテゴリ',
|
||
'sox_th_control_point': '管理項目',
|
||
'sox_th_test_result': 'テスト結果',
|
||
'sox_th_last_test': '前回テスト',
|
||
'sox_th_next_test': '次回テスト',
|
||
'sox_result_passed': '合格',
|
||
'sox_result_defect': '欠陥発見',
|
||
'sox_result_pending': 'テスト待ち',
|
||
'sox_deficiency_tracking': '欠陥追跡',
|
||
'sox_th_id': '番号',
|
||
'sox_th_control': '管理項目',
|
||
'sox_th_severity': '重要度',
|
||
'sox_th_description': '説明',
|
||
'sox_th_due_date': '是正期限',
|
||
'sox_th_status': 'ステータス',
|
||
'sox_th_owner': '担当者',
|
||
'sox_severity_major': '重大な欠陥',
|
||
'sox_severity_minor': '一般的な欠陥',
|
||
'sox_severity_observation': '観察事項',
|
||
'sox_status_remediating': '是正中',
|
||
'sox_status_pending': '是正待ち',
|
||
'sox_auditor_progress': '監査人レビュー進捗',
|
||
'sox_audit_progress': '監査進捗',
|
||
|
||
// ── Tax Compliance ──
|
||
'tax_title': '税務コンプライアンス管理',
|
||
'tax_export_report': '税務レポートエクスポート',
|
||
'tax_payable': '納税額',
|
||
'tax_paid': '納付済み',
|
||
'tax_compliance_rate': '税務コンプライアンス率',
|
||
'tax_pending_items': '未処理事項',
|
||
'tax_obligations': '管轄区域別税務義務',
|
||
'tax_th_jurisdiction': '管轄区域',
|
||
'tax_th_type': '税種',
|
||
'tax_th_period': '期間',
|
||
'tax_th_payable': '納付額',
|
||
'tax_th_paid': '納付済み',
|
||
'tax_th_deadline': '締切日',
|
||
'tax_th_status': 'ステータス',
|
||
'tax_status_paid': '納付済み',
|
||
'tax_status_partial': '一部納付',
|
||
'tax_status_unpaid': '未納',
|
||
'tax_type_breakdown': '税種別集計',
|
||
'tax_th_tax_type': '税種',
|
||
'tax_th_federal': '連邦',
|
||
'tax_th_state': '州',
|
||
'tax_th_total': '合計',
|
||
'tax_th_percentage': '割合',
|
||
'tax_calendar': '税務カレンダー',
|
||
'tax_status_done': '完了',
|
||
'tax_status_pending': '未処理',
|
||
'tax_irs_tracker': 'IRS書類提出追跡',
|
||
'tax_th_form': 'フォーム',
|
||
'tax_th_description': '説明',
|
||
'tax_th_tax_year': '課税年度',
|
||
'tax_th_filed_date': '提出日',
|
||
'tax_filing_submitted': '提出済み',
|
||
'tax_filing_preparing': '準備中',
|
||
'tax_filing_on_demand': '随時提出',
|
||
'tax_filing_overdue': '期限超過',
|
||
|
||
// ── IPO Readiness ──
|
||
'ipo_title': 'IPO準備チェックリスト',
|
||
'ipo_subtitle': 'すべてのIPOマイルストーン、コンプライアンス項目、依存関係、ブロッカーを追跡',
|
||
'ipo_total_items': '総チェック項目',
|
||
'ipo_overall_progress': '全体IPO準備進捗',
|
||
'ipo_cat_legal': '法的コンプライアンス',
|
||
'ipo_cat_financial': '財務監査',
|
||
'ipo_cat_sox': 'SOXコンプライアンス',
|
||
'ipo_cat_governance': 'コーポレートガバナンス',
|
||
'ipo_cat_insurance': '保険保障',
|
||
'ipo_th_id': '番号',
|
||
'ipo_th_item': 'チェック項目',
|
||
'ipo_th_owner': '担当',
|
||
'ipo_th_deadline': '締切',
|
||
'ipo_th_status': 'ステータス',
|
||
'ipo_unit_done': '完了',
|
||
'ipo_dependency': '依存',
|
||
'ipo_timeline': 'IPOタイムライン',
|
||
'ipo_blockers': 'ブロッカー',
|
||
'ipo_category_progress': 'カテゴリ別進捗',
|
||
'ipo_key_contacts': '主要連絡先',
|
||
'ipo_owner': '担当',
|
||
'ipo_deadline': '締切',
|
||
|
||
// ── User Analytics ──
|
||
'ua_title': 'ユーザー分析',
|
||
'ua_total_users': '総ユーザー数',
|
||
'ua_new_users_week': '週間新規ユーザー',
|
||
'ua_growth_trend': 'ユーザー成長トレンド',
|
||
'ua_kyc_distribution': 'KYCレベル分布',
|
||
'ua_geo_distribution': '地域分布 (Top 10)',
|
||
'ua_th_rank': '順位',
|
||
'ua_th_region': '地域',
|
||
'ua_th_users': 'ユーザー数',
|
||
'ua_th_percent': '割合',
|
||
'ua_retention_matrix': 'ユーザーリテンションマトリックス',
|
||
'ua_th_cohort': 'コホート',
|
||
'ua_user_segments': 'ユーザーセグメント',
|
||
'ua_segment_high_freq': '高頻度取引',
|
||
'ua_segment_occasional': '時々購入',
|
||
'ua_segment_browse': '閲覧のみ',
|
||
'ua_segment_churned': '離脱ユーザー',
|
||
'ua_unit_people': '人',
|
||
|
||
// ── Coupon Analytics ──
|
||
'ca_title': 'クーポン分析',
|
||
'ca_total_coupons': 'クーポン総数',
|
||
'ca_active_coupons': 'アクティブクーポン',
|
||
'ca_redeemed': '利用済み',
|
||
'ca_expiring_soon': '期限間近',
|
||
'ca_category_distribution': 'カテゴリ分布',
|
||
'ca_face_value_distribution': '額面分布',
|
||
'ca_top_selling': '人気クーポン Top 10',
|
||
'ca_th_rank': '順位',
|
||
'ca_th_brand': 'ブランド',
|
||
'ca_th_coupon_name': 'クーポン名',
|
||
'ca_th_sales': '販売数',
|
||
'ca_th_revenue': '収益',
|
||
'ca_th_rating': '評価',
|
||
'ca_breakage_trend': 'Breakageトレンド (未利用率)',
|
||
'ca_secondary_market': 'セカンダリーマーケット分析',
|
||
|
||
// ── Market Maker ──
|
||
'mm_title': 'マーケットメーカー管理',
|
||
'mm_add_new': 'マーケットメーカー追加',
|
||
'mm_active_makers': 'アクティブメーカー',
|
||
'mm_total_liquidity': '総流動性',
|
||
'mm_daily_volume': '日次取引量',
|
||
'mm_avg_spread': '平均スプレッド',
|
||
'mm_th_name': 'マーケットメーカー',
|
||
'mm_th_status': 'ステータス',
|
||
'mm_th_daily_volume': '日次取引量',
|
||
'mm_status_active': 'アクティブ',
|
||
'mm_status_paused': '一時停止',
|
||
'mm_status_suspended': '停止',
|
||
'mm_liquidity_pools': '流動性プール分布',
|
||
'mm_order_book_depth': 'オーダーブック深度',
|
||
'mm_health_indicators': '市場ヘルス指標',
|
||
'mm_risk_alerts': 'リスクアラート',
|
||
'mm_high_risk': '高リスク',
|
||
'mm_unit_makers': 'メーカー',
|
||
'market_maker_list': 'マーケットメーカー一覧',
|
||
'market_maker_config': 'マーケットメーカー設定',
|
||
'market_maker_spread': 'スプレッド',
|
||
'market_maker_liquidity': '流動性',
|
||
'market_maker_algorithm': 'アルゴリズム戦略',
|
||
'market_maker_pnl': '損益',
|
||
|
||
// ── Consumer Protection ──
|
||
'cp_title': '消費者保護',
|
||
'cp_total_complaints': '苦情総数',
|
||
'cp_resolved': '解決済み',
|
||
'cp_processing': '処理中',
|
||
'cp_avg_resolution_time': '平均解決時間',
|
||
'cp_complaint_categories': '苦情分類',
|
||
'cp_cat_redeem_fail': '利用失敗',
|
||
'cp_cat_refund_dispute': '返金紛争',
|
||
'cp_cat_fake_coupon': '偽クーポン',
|
||
'cp_cat_other': 'その他',
|
||
'cp_csat': '消費者満足度 (CSAT)',
|
||
'cp_protection_fund': '保護基金使用率',
|
||
'cp_recent_complaints': '最近の苦情',
|
||
'cp_search_complaints': '苦情を検索...',
|
||
'cp_th_id': '番号',
|
||
'cp_th_severity': '重要度',
|
||
'cp_th_category': '分類',
|
||
'cp_th_description': '説明',
|
||
'cp_th_status': 'ステータス',
|
||
'cp_th_assignee': '担当者',
|
||
'cp_th_date': '日付',
|
||
'cp_refund_compliance': '返金コンプライアンス - 非準拠発行者 Top 5',
|
||
'cp_th_rank': '順位',
|
||
'cp_th_issuer': '発行者',
|
||
'cp_th_violations': '違反回数',
|
||
'cp_th_refund_rate': '返金承認率',
|
||
'cp_th_avg_delay': '平均遅延',
|
||
'cp_th_risk_level': 'リスクレベル',
|
||
'cp_unit_cases': '件',
|
||
|
||
// ── AI Agent ──
|
||
'ai_agent_list': 'AIエージェント一覧',
|
||
'ai_agent_config': 'AIエージェント設定',
|
||
'ai_agent_logs': 'AI実行ログ',
|
||
'ai_agent_pricing': 'AI価格エンジン',
|
||
'ai_agent_recommendation': 'AIレコメンドエンジン',
|
||
'ai_agent_risk': 'AIリスク管理',
|
||
'ai_agent_status': '実行ステータス',
|
||
},
|
||
};
|