@seasonkoh/webaz 0.1.28 → 0.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/README.md +3 -2
  2. package/README.zh-CN.md +7 -6
  3. package/dist/currency.js +16 -0
  4. package/dist/deposit-rails.js +52 -0
  5. package/dist/direct-pay-aml-monitor.js +67 -0
  6. package/dist/direct-pay-aml-review.js +40 -0
  7. package/dist/direct-pay-base-bond-entry.js +5 -0
  8. package/dist/direct-pay-bond-rail-clearance.js +94 -0
  9. package/dist/direct-pay-compliance-ingress.js +145 -0
  10. package/dist/direct-pay-controls.js +136 -0
  11. package/dist/direct-pay-create.js +162 -0
  12. package/dist/direct-pay-deferral-quota.js +43 -0
  13. package/dist/direct-pay-disclosures.js +44 -0
  14. package/dist/direct-pay-eligibility.js +46 -0
  15. package/dist/direct-pay-fee-ar.js +241 -0
  16. package/dist/direct-pay-launch-readiness.js +108 -0
  17. package/dist/direct-pay-launch-summary.js +68 -0
  18. package/dist/direct-pay-ledger.js +94 -0
  19. package/dist/direct-receive-account-qr.js +77 -0
  20. package/dist/direct-receive-accounts.js +82 -0
  21. package/dist/direct-receive-deferral.js +142 -0
  22. package/dist/direct-receive-deposits.js +260 -0
  23. package/dist/direct-receive-payment-instruction.js +26 -0
  24. package/dist/fx-rates.js +71 -0
  25. package/dist/layer0-foundation/L0-1-database/schema.js +531 -1
  26. package/dist/layer0-foundation/L0-2-state-machine/genuine-sale.js +15 -5
  27. package/dist/layer0-foundation/L0-2-state-machine/transitions.js +41 -0
  28. package/dist/layer0-foundation/L0-5-manifest/manifest.js +1 -1
  29. package/dist/layer1-agent/L1-1-mcp-server/cli.js +64 -0
  30. package/dist/layer1-agent/L1-1-mcp-server/network-mode.js +11 -0
  31. package/dist/layer1-agent/L1-1-mcp-server/server.js +18 -16
  32. package/dist/layer4-economics/L4-4-skill-market/skill-engine.js +4 -4
  33. package/dist/ledger.js +12 -3
  34. package/dist/mcp.js +23 -4
  35. package/dist/merchant-bond-domain.js +64 -0
  36. package/dist/merchant-bond-exposure.js +78 -0
  37. package/dist/merchant-bond-watcher.js +26 -0
  38. package/dist/payment-rails.js +29 -0
  39. package/dist/product-verification.js +93 -0
  40. package/dist/pwa/acp-feed.js +3 -2
  41. package/dist/pwa/contract-fingerprint.js +3 -0
  42. package/dist/pwa/direct-pay-guards.js +20 -0
  43. package/dist/pwa/direct-pay-order-redaction.js +24 -0
  44. package/dist/pwa/endpoint-actions.js +3 -0
  45. package/dist/pwa/public/app-ai.js +10 -10
  46. package/dist/pwa/public/app-chat-poll.js +29 -0
  47. package/dist/pwa/public/app-create-kinds.js +17 -0
  48. package/dist/pwa/public/app-direct-pay-accounts.js +141 -0
  49. package/dist/pwa/public/app-direct-pay-buyer.js +72 -0
  50. package/dist/pwa/public/app-direct-pay-compliance.js +67 -0
  51. package/dist/pwa/public/app-direct-pay-deferral-admin.js +72 -0
  52. package/dist/pwa/public/app-direct-pay-deferral.js +61 -0
  53. package/dist/pwa/public/app-direct-pay-fee-center.js +33 -0
  54. package/dist/pwa/public/app-direct-pay-fee-ops.js +112 -0
  55. package/dist/pwa/public/app-direct-pay-product-verify.js +103 -0
  56. package/dist/pwa/public/app-direct-pay-readiness.js +38 -0
  57. package/dist/pwa/public/app-direct-pay-store-verify.js +100 -0
  58. package/dist/pwa/public/app-direct-pay.js +227 -0
  59. package/dist/pwa/public/app-discover.js +20 -20
  60. package/dist/pwa/public/app-external-links.js +32 -0
  61. package/dist/pwa/public/app-listings.js +4 -4
  62. package/dist/pwa/public/app-prelaunch-waz.js +39 -0
  63. package/dist/pwa/public/app-price.js +55 -0
  64. package/dist/pwa/public/app-product-media.js +15 -0
  65. package/dist/pwa/public/app-profile.js +6 -6
  66. package/dist/pwa/public/app-seller.js +5 -5
  67. package/dist/pwa/public/app-shop.js +19 -19
  68. package/dist/pwa/public/app.js +142 -146
  69. package/dist/pwa/public/i18n.js +398 -197
  70. package/dist/pwa/public/index.html +17 -0
  71. package/dist/pwa/public/openapi.json +495 -1
  72. package/dist/pwa/routes/admin-analytics.js +4 -2
  73. package/dist/pwa/routes/admin-direct-receive-deposits.js +321 -0
  74. package/dist/pwa/routes/buyer-feeds.js +2 -1
  75. package/dist/pwa/routes/chat.js +6 -1
  76. package/dist/pwa/routes/dashboards.js +2 -1
  77. package/dist/pwa/routes/direct-pay-availability.js +196 -0
  78. package/dist/pwa/routes/direct-pay-disclosure-acks.js +74 -0
  79. package/dist/pwa/routes/direct-pay-timeouts.js +71 -0
  80. package/dist/pwa/routes/direct-receive-accounts.js +155 -0
  81. package/dist/pwa/routes/direct-receive-payment-instructions.js +45 -0
  82. package/dist/pwa/routes/fx.js +12 -0
  83. package/dist/pwa/routes/leaderboard.js +47 -9
  84. package/dist/pwa/routes/listings.js +2 -2
  85. package/dist/pwa/routes/logistics.js +4 -0
  86. package/dist/pwa/routes/manifests.js +38 -0
  87. package/dist/pwa/routes/me-data.js +5 -2
  88. package/dist/pwa/routes/orders-action.js +117 -9
  89. package/dist/pwa/routes/orders-create.js +4 -0
  90. package/dist/pwa/routes/orders-read.js +36 -0
  91. package/dist/pwa/routes/p2p-products.js +2 -2
  92. package/dist/pwa/routes/products-create.js +5 -3
  93. package/dist/pwa/routes/products-links.js +34 -0
  94. package/dist/pwa/routes/products-list.js +2 -1
  95. package/dist/pwa/routes/products-update.js +22 -2
  96. package/dist/pwa/routes/promoter.js +3 -0
  97. package/dist/pwa/routes/referral.js +4 -0
  98. package/dist/pwa/routes/returns.js +26 -1
  99. package/dist/pwa/routes/rewards-apply.js +10 -5
  100. package/dist/pwa/routes/rewards-clearing-mature.js +96 -0
  101. package/dist/pwa/routes/rewards-escrow-expire.js +6 -2
  102. package/dist/pwa/routes/shops.js +2 -1
  103. package/dist/pwa/routes/url-claim.js +2 -2
  104. package/dist/pwa/routes/users-public.js +8 -0
  105. package/dist/pwa/routes/wallet-read.js +3 -0
  106. package/dist/pwa/routes/webauthn.js +1 -1
  107. package/dist/pwa/server.js +59 -102
  108. package/dist/runtime/webaz-schema-helpers.js +104 -0
  109. package/dist/store-verification.js +77 -0
  110. package/dist/version.js +1 -1
  111. package/package.json +71 -2
@@ -1,9 +1,280 @@
1
- // WebAZ i18n — Chinese (default) / English
1
+ // WebAZ i18n — Chinese / English
2
2
  // Usage: t('中文') → returns English when lang='en', or Chinese as-is
3
-
4
- window._lang = localStorage.getItem('webaz_lang') || 'zh'
3
+ // Default language: a saved manual choice always wins; otherwise infer from the browser/OS
4
+ // language (zh* → Chinese, everything else → English). Manual switches persist via setLang.
5
+
6
+ // 默认语言解析(纯函数,便于测试)。savedLang 只认 'zh'/'en'(异常值忽略,走浏览器检测);
7
+ // 否则按 navigator.languages(有序偏好列表)、其次 language,取【第一个受支持的语言】——
8
+ // 首个 zh*(zh/zh-CN/zh-Hant/zh-TW…)→ zh,首个 en*→ en;无受支持项(含无 navigator)→ en。
9
+ // ⚠️ 必须按顺序取首个受支持项,不能"只要含中文就中文":['en-US','zh-CN'] 是英文优先用户,应默认 en。
10
+ window.resolveInitialLang = (savedLang, navigatorLike) => {
11
+ if (savedLang === 'zh' || savedLang === 'en') return savedLang // 用户手动选择,永远优先,之后不被浏览器语言覆盖
12
+ const nav = navigatorLike || {}
13
+ const langs = (nav.languages && nav.languages.length) ? nav.languages : (nav.language ? [nav.language] : [])
14
+ for (const l of langs) { const s = String(l || '').toLowerCase(); if (s.startsWith('zh')) return 'zh'; if (s.startsWith('en')) return 'en' }
15
+ return 'en'
16
+ }
17
+ window._lang = window.resolveInitialLang(localStorage.getItem('webaz_lang'), typeof navigator !== 'undefined' ? navigator : null)
5
18
 
6
19
  const _EN = {
20
+ // ── Direct Pay (Rail 1) — PR-5c availability/control reason copy (off-platform; WebAZ does not custody/guarantee/refund) ──
21
+ '直付当前未开放': 'Direct Pay is not open yet',
22
+ '直付暂停受理(运营维护中),请稍后再试': 'Direct Pay is paused (operational maintenance) — please try again later',
23
+ '直付在你所在地区暂未开放': 'Direct Pay is not available in your region yet',
24
+ '超出直付单笔上限(按 WebAZ 记录的订单金额计;不涉及你与卖家场外实际付款金额)': 'Over the Direct Pay per-order limit (on the WebAZ-recorded order total; this does not govern the actual amount you pay the seller off-platform)',
25
+ '该卖家直付已被暂停': "This seller's Direct Pay is currently suspended",
26
+ // ── Direct Pay (Rail 1) — PR-4f-b bilingual UI wiring (non-custodial; WebAZ does not custody/verify/route) ──
27
+ '需完成 D1/D2 Passkey 风险确认后才显示收款说明 · 可在订单页继续': 'The payment instruction is shown only after you complete the D1/D2 Passkey risk confirmations · you can continue on the order page',
28
+ '风险确认完成 · 这是卖家的收款说明(下单时快照,WebAZ 不验证)': 'Risk confirmation complete · This is the seller\'s payment instruction (snapshot at order time; WebAZ does not verify it)',
29
+ '请按此付款,然后在订单页标记"我已付款"': 'Pay accordingly, then mark "I have paid" on the order page',
30
+ '我知道了': 'Got it',
31
+ '需先完成 D1/D2 Passkey 风险确认,确认后才显示卖家收款说明。': 'Complete the D1/D2 Passkey risk confirmations first; the seller\'s payment instruction is shown only afterwards.',
32
+ '完成风险确认': 'Complete risk confirmation',
33
+ '直付的风险确认与付款标记需要 Passkey。前往「我的 → 安全与存储」注册一个?': 'Direct Pay risk confirmation and payment marking require a Passkey. Go to My → Security & Storage to register one?',
34
+ '前往注册 Passkey': 'Go register a Passkey',
35
+ '需要 Passkey。': 'Passkey required. ',
36
+ '前往「我的 → 安全与存储」注册 →': 'Register in My → Security & Storage →',
37
+ '支付方式': 'Payment method',
38
+ '托管(Escrow,默认)': 'Escrow (default)',
39
+ '托管(Escrow,模拟测试币)': 'Escrow (simulated test currency)',
40
+ '本金由协议托管,确认收货后释放给卖家': 'Principal held by the protocol, released to the seller after you confirm receipt',
41
+ '直付(Direct Pay · 非托管)': 'Direct Pay (non-custodial)',
42
+ '你直接付款给卖家(场外),本金不经 WebAZ': 'You pay the seller directly (off-platform); the principal never passes through WebAZ',
43
+ '直付风险提醒:WebAZ 不托管本金、不担保、不退款、不代维权,也不验证卖家的付款方式或币种。下单后需用 Passkey 完成两次风险确认,再标记付款。': 'Direct Pay risk notice: WebAZ does not custody the principal, does not guarantee, refund, or pursue claims on your behalf, and does not verify the seller\'s payment method or currency. After placing the order you must complete two risk confirmations with a Passkey, then mark the payment.',
44
+ '我已阅读并理解上述风险': 'I have read and understood the risks above',
45
+ '确认(需 Passkey)': 'Confirm (Passkey required)',
46
+ '风险披露': 'Risk disclosure',
47
+ '直付订单(非托管)': 'Direct Pay order (non-custodial)',
48
+ '本金不经 WebAZ —— 你直接付款给卖家(场外)': 'Principal never passes through WebAZ — you pay the seller directly (off-platform)',
49
+ 'WebAZ 不托管、不担保、不退款、不代维权': 'WebAZ does not custody, guarantee, refund, or pursue claims on your behalf',
50
+ '卖家收款说明来自卖家自填,WebAZ 不验证付款方式或币种': 'The payment instruction is provided by the seller; WebAZ does not verify the payment method or currency',
51
+ '卖家收款说明(下单时快照)': 'Seller payment instruction (snapshot at order time)',
52
+ '我已付款': 'I have paid',
53
+ '取消订单': 'Cancel order',
54
+ '操作成功': 'Done',
55
+ '操作失败,请重试': 'Action failed, please try again',
56
+ '直付收款说明': 'Direct Pay payment instruction',
57
+ '直付收款账号': 'Direct Pay receive accounts',
58
+ '选择卖家收款方式': 'Choose the seller\'s receive method',
59
+ '卖家按此收款': 'Seller receives',
60
+ '收款明细与二维码将在完成风险确认后显示': 'Payment details and QR appear after you complete the risk confirmation',
61
+ '你可维护多个收款账号(各自币种、可选二维码),买家直付时自选其一。WebAZ 只存储与展示,不验证付款方式或币种,不路由/托管资金,也不解析二维码。': 'You can keep multiple receive accounts (each with its own currency and optional QR); buyers pick one at direct-pay checkout. WebAZ only stores and displays them — it does not verify payment methods or currencies, route or custody funds, or parse the QR.',
62
+ '尚未添加收款账号': 'No receive accounts yet',
63
+ '新增收款账号': 'Add receive account',
64
+ '收款账号': 'Receive account',
65
+ '无二维码': 'No QR',
66
+ '更换二维码': 'Replace QR',
67
+ '上传二维码': 'Upload QR',
68
+ '收款方式': 'Payment method',
69
+ '币种': 'Currency',
70
+ '如 SGD / USDC': 'e.g. SGD / USDC',
71
+ '停用后买家将无法选择该收款账号,确定停用?': 'Once deactivated, buyers can no longer choose this receive account. Deactivate?',
72
+ '二维码仅支持 PNG 或 WebP 图片': 'QR must be a PNG or WebP image',
73
+ '二维码图片过大(需 ≤ 64KB)': 'QR image is too large (must be ≤ 64KB)',
74
+ '二维码图片不合法(仅支持 PNG/WebP,解码后 ≤ 64KB)': 'Invalid QR image (PNG/WebP only, ≤ 64KB decoded)',
75
+ '二维码已上传': 'QR uploaded',
76
+ '二维码读取失败': 'Failed to read QR image',
77
+ '收款二维码': 'Receive QR',
78
+ '仅卖家可管理收款账号': 'Only sellers can manage receive accounts',
79
+ '账号不存在': 'Account not found',
80
+ '账号信息不合法': 'Invalid account details',
81
+ '需先注册 Passkey': 'Passkey registration required',
82
+ '直付开通进度(仅你可见)': 'Direct Pay onboarding progress (visible only to you)',
83
+ '履约保证金缓交(仅你可见)': 'Performance-bond deferral (visible only to you)',
84
+ '缓交 = 先入场、履约保证金延后交,由管理员人工审批。批准后直付仍需满足全部合规条件(身份与商户合规审核、Passkey、收款说明);缓交期内额度会被压低。': 'Deferral = enter first, post the performance bond later, subject to manual admin approval. Even once approved, Direct Pay still requires all compliance conditions (identity & merchant compliance review, Passkey, payment instruction); your quota is reduced during the deferral period.',
85
+ '缓交申请审核中,等待管理员人工审批': 'Deferral application under review — awaiting manual admin approval',
86
+ '缓交已批准': 'Deferral approved',
87
+ '缓交申请未通过': 'Deferral application not approved',
88
+ '缓交已到期': 'Deferral has expired',
89
+ '可重新申请': 'You may apply again',
90
+ '申请原因(选填)': 'Reason (optional)',
91
+ '缓交天数(选填,默认 30)': 'Deferral days (optional, default 30)',
92
+ '提交缓交申请': 'Submit deferral application',
93
+ '缓交期额度系数': 'Deferral-period quota factor',
94
+ '保证金到期日': 'Bond due date',
95
+ '宽限至': 'Grace until',
96
+ '已进入宽限期,请尽快补交履约保证金,否则直付资格将被暂停': 'You are in the grace period — please post the performance bond soon, or your Direct Pay eligibility will be suspended',
97
+ '缓交申请已提交,等待管理员审批': 'Deferral application submitted — awaiting admin approval',
98
+ '履约保证金缓交审批': 'Performance-bond deferral approvals',
99
+ '商户缓交申请;批准设压低额度 + 真人 Passkey(仅 root)': 'Merchant deferral applications; approval sets a reduced quota + live Passkey (root only)',
100
+ '批准后该卖家可先入场直付、保证金延后交;直付仍需满足全部合规条件,且缓交期内额度被压低。批准/拒绝均需真人 Passkey。': 'Once approved, the seller may use Direct Pay first and post the bond later; Direct Pay still requires all compliance conditions, and the quota is reduced during the deferral period. Both approve and reject require a live Passkey.',
101
+ '缓交期(天)': 'Deferral period (days)',
102
+ '批准缓交(需真人 Passkey)': 'Approve deferral (live Passkey required)',
103
+ '缓交期额度系数(0–1,留空用默认;缓交期内必压低,有下限)': 'Deferral-period quota factor (0–1; blank = default; always reduced during deferral, with a floor)',
104
+ '额度系数(如 0.5)': 'Quota factor (e.g. 0.5)',
105
+ '宽限天数(留空用默认)': 'Grace days (blank = default)',
106
+ '真人确认批准': 'Confirm approval (Passkey)',
107
+ '拒绝缓交(需真人 Passkey)': 'Reject deferral (live Passkey required)',
108
+ '真人确认拒绝': 'Confirm rejection (Passkey)',
109
+ '暂无待审缓交申请': 'No pending deferral applications',
110
+ '需要真人 Passkey 确认': 'A live Passkey confirmation is required',
111
+ '缓交申请已拒绝': 'Deferral application rejected',
112
+ '逐产品直付验证(仅你可见)': 'Per-product Direct Pay verification (visible only to you)',
113
+ '每个走直付收款的商品都需【单独】通过平台人工验证(防作弊):申领验证码 → 贴到该商品的外部平台页面 → 回来提交该商品链接 → 管理员手动核对。未验证的商品只能用托管交易。': 'Each product sold via Direct Pay must be individually verified by the platform (anti-fraud): get a code → display it on that product’s external page → submit that product’s link → an admin reviews it manually. Unverified products can only use escrow.',
114
+ '已签发验证码,请贴到该商品的外部页面后提交链接': 'Code issued — display it on the product’s external page, then submit the link',
115
+ '已提交,等待管理员核验': 'Submitted — awaiting admin review',
116
+ '已通过验证,可直付': 'Verified — Direct Pay enabled',
117
+ '未通过,请修正后重新申请': 'Not approved — fix and re-apply',
118
+ '你还没有商品': 'You have no products yet',
119
+ '申请验证': 'Request verification',
120
+ '把它展示在该商品的外部页面': 'display it on the product’s external page',
121
+ '该商品的外部链接(http/https)': 'The product’s external link (http/https)',
122
+ '提交链接': 'Submit link',
123
+ '验证码已签发': 'Verification code issued',
124
+ '请填写该商品的外部链接': 'Please enter the product’s external link',
125
+ '已提交,等待管理员核验。': 'Submitted — awaiting admin review.',
126
+ '逐产品直付验证审核': 'Per-product Direct Pay verification review',
127
+ '逐个核验商品外部链接验证码;通过=该商品可直付 + 真人 Passkey(仅 root)': 'Review each product’s external-link code; approve = that product becomes Direct-Pay-eligible + live Passkey (root only)',
128
+ '请手动打开链接,确认该商品页面上展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the product page shows the code above, then approve/reject.',
129
+ '通过(真人 Passkey)': 'Approve (live Passkey)',
130
+ '拒绝(真人 Passkey)': 'Reject (live Passkey)',
131
+ '暂无待核验商品': 'No products awaiting review',
132
+ '每个商品需单独核验:打开卖家提交的外部链接,确认页面展示了验证码再通过。通过=该商品可直付(逐品,绝不放行全部)。通过/拒绝均需真人 Passkey。': 'Each product is reviewed individually: open the seller-submitted external link, confirm the page shows the code, then approve. Approve = that product becomes Direct-Pay-eligible (per-product, never all at once). Both require a live Passkey.',
133
+ '该商品已通过验证': 'Product verified',
134
+ '该商品已拒绝': 'Product rejected',
135
+ '店铺认证(可申请免逐品验证)': 'Store verification (apply to skip per-product checks)',
136
+ '默认每个商品需单独验证才能直付。你也可以申请【店铺认证】:申领验证码 → 贴到你的外部店铺主页 → 提交店铺链接 → 管理员手动核对;通过且管理员勾选豁免后,你【所有商品】免逐品验证即可直付。': 'By default each product must be verified individually before Direct Pay. You can also apply for store verification: get a code → display it on your external store homepage → submit the store link → an admin reviews it manually; once approved and the admin grants the exemption, all your products can use Direct Pay without per-product checks.',
137
+ '已签发验证码,请贴到你的外部店铺页后提交店铺链接': 'Code issued — display it on your external store page, then submit the store link',
138
+ '店铺已通过验证': 'Store verified',
139
+ '申请店铺认证': 'Apply for store verification',
140
+ '把它展示在你的外部店铺主页': 'display it on your external store homepage',
141
+ '你的外部店铺链接(http/https)': 'Your external store link (http/https)',
142
+ '提交店铺链接': 'Submit store link',
143
+ '已豁免逐品验证:你的所有商品可直付': 'Exempt from per-product verification — all your products can use Direct Pay',
144
+ '已通过,但未获逐品豁免:商品仍需逐个验证': 'Verified, but no per-product exemption — products still need individual verification',
145
+ '请填写你的外部店铺链接': 'Please enter your external store link',
146
+ '店铺认证审核': 'Store verification review',
147
+ '商户合规录入': 'Merchant compliance entry',
148
+ '录入卖家 KYB / 制裁筛查结论 + 真人 Passkey(仅 root)': 'Record a seller’s KYB / sanctions-screening result + live Passkey (root only)',
149
+ // PR-B Direct Pay 商户运营 hub + 平台服务费(预充值)账户
150
+ '仅限根管理员': 'Root admin only',
151
+ 'Direct Pay 商户运营': 'Direct Pay merchant ops',
152
+ '返回协议管理': 'Back to protocol admin',
153
+ '直付(Rail 1)商户运营集中入口:资格合规、平台服务费预充值、上线控制。': 'Central entry for Direct Pay (Rail 1) merchant ops: eligibility & compliance, platform-fee prepayment, launch controls.',
154
+ '资格与合规': 'Eligibility & compliance',
155
+ 'KYB / 制裁筛查结论': 'KYB / sanctions results',
156
+ '缓交申请 + 压低额度': 'Deferral requests + reduced quota',
157
+ '逐产品直付验证': 'Per-product direct-pay verification',
158
+ '核验商品外链验证码': 'Verify product external-link code',
159
+ '核验店铺外链 + 免逐品': 'Verify shop link + per-product exemption',
160
+ '平台服务费(预充值)': 'Platform fee (prepayment)',
161
+ '预充值与账户': 'Prepayment & account',
162
+ '充值 / 调整 / 退款 / 余额 / 应收': 'Top-up / adjust / refund / balance / accrued',
163
+ '上线控制': 'Launch controls',
164
+ '直付参数': 'Direct-pay params',
165
+ '开关 / 地区 / 单笔上限': 'Toggle / region / per-tx cap',
166
+ '就绪报告(CLI):': 'Readiness report (CLI):',
167
+ '直付:合规录入 / 缓交 / 商品·店铺验证 / 平台服务费预充值 / 上线控制(仅 root)': 'Direct Pay: compliance / deferral / product·shop verification / platform-fee prepayment / launch controls (root only)',
168
+ '平台服务费预充值与账户': 'Platform-fee prepayment & account',
169
+ '返回 Direct Pay 商户运营': 'Back to Direct Pay merchant ops',
170
+ '预充值 = 商家平台服务费预付款(非买家货款 / 非 escrow / 非保证金)。链下实际收款/退款由你核实后在此登记;均需真人 Passkey。': 'Prepayment = merchant platform-service-fee prepayment (NOT buyer funds / NOT escrow / NOT collateral). Record off-protocol receipts/refunds here after you verify them; all require live-human Passkey.',
171
+ '加载账户': 'Load account',
172
+ '记录预充值(收款)': 'Record prepayment (received)',
173
+ '金额 USDC': 'Amount USDC',
174
+ '法币 fiat': 'Fiat',
175
+ '收款凭证号 evidence_ref(选填)': 'Receipt ref / evidence_ref (optional)',
176
+ '备注(选填)': 'Note (optional)',
177
+ '记录预充值(真人 Passkey)': 'Record prepayment (live Passkey)',
178
+ '账务更正(可正可负,非退款)': 'Bookkeeping correction (signed; not a refund)',
179
+ '更正额 USDC(负数=调减)': 'Correction USDC (negative = decrease)',
180
+ '原因(必填)': 'Reason (required)',
181
+ '记录更正(真人 Passkey)': 'Record correction (live Passkey)',
182
+ '退款(真实退还未消耗预付款)': 'Refund (return unconsumed prepayment)',
183
+ '退款额 USDC': 'Refund amount USDC',
184
+ '退款凭证号 evidence_ref(选填)': 'Refund ref / evidence_ref (optional)',
185
+ '原因(选填)': 'Reason (optional)',
186
+ '退款(真人 Passkey)': 'Refund (live Passkey)',
187
+ '可用预充值余额': 'Available prepayment balance',
188
+ '累计预充值': 'Total prepayments',
189
+ '已计提平台费': 'Accrued platform fee',
190
+ '账务更正合计': 'Total corrections',
191
+ '已退款合计': 'Total refunds',
192
+ '在途单预估费': 'In-flight orders est. fee',
193
+ '可退款余额': 'Refundable balance',
194
+ // PR-C seller fee center
195
+ '平台服务费账户(仅你可见)': 'Platform-fee account (only you can see)',
196
+ '直付平台服务费的预充值余额与已计提明细;预充值由平台核实收款后登记,如需充值请联系平台。': 'Your Direct Pay platform-service-fee prepayment balance and accrued detail; prepayments are recorded by the platform after it verifies receipt — contact the platform to top up.',
197
+ '待补平台服务费': 'Platform fee owed',
198
+ '余额不足时新直付订单会被暂停,请联系平台补充平台服务费预充值。': 'When the balance is insufficient, new direct-pay orders are suspended; contact the platform to top up the platform-service-fee prepayment.',
199
+ '首单宽限可用:你的第一笔直付无需预充值。': 'First-order grace available: your first direct-pay order needs no prepayment.',
200
+ '首单宽限': 'First-order grace',
201
+ '是(尚未成交)': 'Yes (no completed sale yet)',
202
+ '否(已用/有在途)': 'No (used / has in-flight)',
203
+ '预充值已记录': 'Prepayment recorded',
204
+ '请填写卖家 ID 和正数金额': 'Enter seller ID and a positive amount',
205
+ '账务更正已记录': 'Correction recorded',
206
+ '请填写卖家 ID、非零更正额、原因': 'Enter seller ID, a non-zero correction, and a reason',
207
+ '请填写卖家 ID 和正数退款额': 'Enter seller ID and a positive refund amount',
208
+ '退款已记录': 'Refund recorded',
209
+ '录入卖家的 KYB / 制裁筛查结论(直付入场硬门)。仅记录你【已实际完成】的尽调结论,不代替真实筛查;均需真人 Passkey。': 'Record a seller’s KYB / sanctions-screening result (Direct Pay entry hard gate). Only record the diligence conclusion you have actually completed — this does not perform the screening; both require a live Passkey.',
210
+ '卖家用户 ID': 'Seller user ID',
211
+ '卖家用户 ID(seller user id)': 'Seller user ID',
212
+ 'KYB 复核结论': 'KYB review result',
213
+ '通过 approved': 'Pass (approved)',
214
+ '待定 pending': 'Pending',
215
+ '拒绝 rejected': 'Reject (rejected)',
216
+ '外部审核编号 / vendor case id(选填)': 'External review id / vendor case id (optional)',
217
+ '撤销 revoked': 'Revoke (revoked)',
218
+ '阻断 blocked': 'Block (blocked)',
219
+ '⚠️ 外部审核编号只填外部审核系统的 case id;切勿填写身份证/护照/住址/证件文件链接 —— 该字段会【明文入库】。': '⚠️ The external review id is for your screening system’s case id only — never enter ID/passport numbers, addresses, or document links: this field is stored in plaintext.',
220
+ '有效期 expires_at(选填,如 2027-01-01)': 'Expiry expires_at (optional, e.g. 2027-01-01)',
221
+ '记录 KYB(真人 Passkey)': 'Record KYB (live Passkey)',
222
+ '制裁筛查结论': 'Sanctions-screening result',
223
+ '通过 clear': 'Pass (clear)',
224
+ '命中 flagged': 'Hit (flagged)',
225
+ '有效期 expires_at(选填)': 'Expiry expires_at (optional)',
226
+ '记录制裁筛查(真人 Passkey)': 'Record sanctions screening (live Passkey)',
227
+ '录入后用就绪报告核对:': 'After recording, verify with the readiness report:',
228
+ 'KYB 结论已记录': 'KYB result recorded',
229
+ '制裁筛查结论已记录': 'Sanctions-screening result recorded',
230
+ '请填写卖家用户 ID': 'Please enter the seller user ID',
231
+ '店铺链接': 'Store link',
232
+ '请手动打开链接,确认店铺主页展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the store homepage shows the code above, then approve/reject.',
233
+ '免逐品验证(通过后该卖家所有商品可直付)': 'Exempt from per-product verification (on approval, all this seller’s products can use Direct Pay)',
234
+ '暂无待核验店铺': 'No stores awaiting review',
235
+ '打开卖家提交的店铺链接,确认店铺页展示了验证码再通过。勾选“免逐品验证”=该卖家所有商品免逐个验证即可直付(请仅对可信商户勾选)。通过/拒绝均需真人 Passkey。': 'Open the seller-submitted store link, confirm the page shows the code, then approve. Checking “exempt from per-product verification” = all this seller’s products can use Direct Pay without individual checks (only check this for trusted merchants). Both require a live Passkey.',
236
+ '店铺已通过,已豁免逐品验证': 'Store verified — per-product verification waived',
237
+ '店铺已通过': 'Store verified',
238
+ '店铺申请已拒绝': 'Store application rejected',
239
+ '核验店铺外链;可勾选免逐品验证 + 真人 Passkey(仅 root)': 'Verify store links; optionally grant per-product exemption + live Passkey (root only)',
240
+ '以上为你的直付开通进度;直付按轨道分阶段开放,完成可行动项不代表立即可用。': 'This is your Direct Pay onboarding progress. Direct Pay opens by rail in phases — completing the action items does not mean it is immediately available.',
241
+ '平台侧直付已开放': 'Direct Pay is open on the platform side',
242
+ '直付平台侧暂未开放(无需你操作)': 'Direct Pay is not yet open on the platform side (no action needed from you)',
243
+ '已设置收款说明': 'Payment instruction is set',
244
+ '未设置收款说明': 'Payment instruction not set',
245
+ '去设置收款说明': 'Set payment instruction',
246
+ '已注册 Passkey': 'Passkey registered',
247
+ '未注册 Passkey': 'Passkey not registered',
248
+ '去注册 Passkey': 'Register a Passkey',
249
+ '履约保证金已完成': 'Performance security deposit completed',
250
+ '履约保证金未完成': 'Performance security deposit not completed',
251
+ '商户审核已通过': 'Merchant review passed',
252
+ '商户审核进行中或未通过': 'Merchant review pending or not passed',
253
+ '直付资格正常': 'Direct Pay eligibility is normal',
254
+ '直付资格已被暂停': 'Direct Pay eligibility is suspended',
255
+ '这是你自填的收款展示文本(场外结算用);WebAZ 不验证付款方式或币种,不路由支付,不托管资金。': 'This is your own display text for off-platform settlement. WebAZ does not verify the payment method or currency, does not route payments, and does not custody funds.',
256
+ '当前生效': 'Currently active',
257
+ '尚未设置收款说明': 'No payment instruction set yet',
258
+ '收款说明': 'Payment instruction',
259
+ '(展示给买家,如 PayNow / 银行转账 等)': '(shown to buyers, e.g. PayNow / bank transfer)',
260
+ '例:PayNow +65 9xxx(场外结算)': 'e.g. PayNow +65 9xxx (off-platform settlement)',
261
+ '标签(可选)': 'Label (optional)',
262
+ '如 PayNow': 'e.g. PayNow',
263
+ '收款说明不能为空': 'Payment instruction cannot be empty',
264
+ '已停用': 'Deactivated',
265
+ '停用': 'Deactivate',
266
+ '停用后买家将无法对你发起直付订单,确定停用?': 'After deactivation, buyers cannot start Direct Pay orders with you. Deactivate?',
267
+ '卖家尚未设置收款说明,暂不可直付': 'The seller has not set a payment instruction; Direct Pay is unavailable',
268
+ '该卖家暂不支持直付': 'This seller does not support Direct Pay yet',
269
+ '直付需要先注册 Passkey': 'Direct Pay requires registering a Passkey first',
270
+ '需先完成两次风险披露确认(D1 + D2)': 'You must complete both risk disclosures first (D1 + D2)',
271
+ '需现场真人 Passkey 确认': 'A live, in-person Passkey confirmation is required',
272
+ '订单尚未送达,暂不可确认收货': 'The order has not been delivered yet; cannot confirm receipt',
273
+ '直付当前仅支持简单商品(无规格)': 'Direct Pay currently supports simple products only (no variants)',
274
+ '直付当前不支持该下单选项': 'Direct Pay currently does not support that order option',
275
+ // ── Leaderboard agent activity bucket (coarse, replaces raw call count) ──
276
+ '较少': 'Light',
277
+ '休眠': 'Dormant',
7
278
  // ── RFC-020 Connected agents (app-agents.js) ─────────────────
8
279
  '🔌 已连接的 Agent': '🔌 Connected agents',
9
280
  '尚无已连接的 Agent': 'No connected agents yet',
@@ -11,7 +282,6 @@ const _EN = {
11
282
  '这些是你授权给 AI agent 的委托凭证(作用域受限、短期、可随时撤销)。它们不是你的账号或密钥,永远无法动用资金、投票或改密钥。': 'These are scoped, short-lived, revocable delegation grants you authorized for AI agents. They are not your account or keys, and can never move funds, vote, or change keys.',
12
283
  '有效': 'Active',
13
284
  '最近使用': 'Last used',
14
- '次调用': 'calls',
15
285
  '从未使用': 'Never used',
16
286
  '有效期至': 'Expires',
17
287
  '未命名 Agent': 'Unnamed agent',
@@ -134,7 +404,6 @@ const _EN = {
134
404
  '解除暂停': 'Unsuspend',
135
405
  '授角色': 'Grant role',
136
406
  '搜索名称 / 邮箱': 'Search name / email',
137
- '条结果': ' results',
138
407
  '暂停账户': 'Suspend account',
139
408
  '原因(可选)': 'Reason (optional)',
140
409
  '该用户已拥有全部角色': 'User already has all roles',
@@ -166,16 +435,13 @@ const _EN = {
166
435
  '请先完成上述未达标指标': 'Complete the missing indicators first',
167
436
  '返回审核任务': 'Back to tasks',
168
437
  '确认撤回申请?': 'Confirm withdrawing application?',
169
- '提交申诉': 'Submit appeal',
170
438
  '暂停期内可申诉一次。请详细说明你提交的内容、判错原因,并附证据': 'You may appeal once during the suspension. Detail what you submitted, why it was wrong, and attach evidence',
171
439
  '涉及任务 ID(可选)': 'Task ID (optional)',
172
440
  '申诉理由': 'Reason',
173
- '字': 'chars',
174
441
  '我提交的是真实验证码,但被判错的原因可能是...': 'I submitted the actual code, but was marked wrong because...',
175
442
  '证据 URL(每行一个,最多 3 条)': 'Evidence URLs (one per line, max 3)',
176
443
  '申诉已提交,等待管理员审理': 'Appeal submitted, awaiting admin review',
177
444
  '审核员管理': 'Verifier management',
178
- '待审申请': 'Pending apps',
179
445
  '待审申诉': 'Pending appeals',
180
446
  '活跃审核员': 'Active verifiers',
181
447
  '活跃审核员不足 5 人,请尽快批准更多申请': 'Active verifiers < 5, approve more applications soon',
@@ -197,10 +463,8 @@ const _EN = {
197
463
  '返回用户列表': 'Back to user list',
198
464
  '注册': 'Registered',
199
465
  '天前': 'days ago',
200
- '邮箱': 'Email',
201
466
  '手机': 'Phone',
202
467
  '密码': 'Password',
203
- '已设置': 'Set',
204
468
  '未设置': 'Not set',
205
469
  '登录失败': 'Failed logins',
206
470
  '锁定至': 'locked until',
@@ -247,6 +511,9 @@ const _EN = {
247
511
  '账户控制': 'Account control',
248
512
  '状态': 'Status',
249
513
  '确认暂停': 'Confirm suspend',
514
+ '确认恢复': 'Confirm resume',
515
+ '确认驳回?': 'Confirm reject?',
516
+ '确认下架?': 'Confirm delist?',
250
517
  '暂停后用户所有 API 请求被拒绝': 'After suspension, all API requests are denied',
251
518
  '持有角色(勾选所有该用户应有的角色)': 'Held roles (check all that should apply)',
252
519
  '危险': 'Danger',
@@ -280,7 +547,6 @@ const _EN = {
280
547
  '请填写撤销原因': 'Please enter revoke reason',
281
548
  '确认撤销': 'Confirm revoke',
282
549
  '需通过申请获得': 'Apply to obtain',
283
- '申请': 'Apply',
284
550
  '联系管理员': 'Contact admin',
285
551
  '请联系管理员申请此角色': 'Contact admin to apply for this role',
286
552
  '🛡 管理员角色只能由现有管理员授予': '🛡 Admin role can only be granted by existing admins',
@@ -314,20 +580,14 @@ const _EN = {
314
580
  '我的推广': 'My promotions',
315
581
  '已绑定邀请人': 'Sponsor bound',
316
582
  '了解协议设计 · 多种角色 · 元规则': 'Protocol design · multiple roles · meta-rules',
317
- '信誉': 'Reputation',
318
583
  '信誉分': 'Rep. score',
319
584
  '完成购买': 'Purchases',
320
585
  '累计售出': 'Sales',
321
586
  '入驻天数': 'Days joined',
322
- '验证员': 'Verifier',
323
- '卖家回复': 'Seller reply',
324
587
  '当前价': 'Current',
325
- '次出价': 'bids',
326
588
  '已预订': 'Reserved',
327
- '几乎全新': 'Like new',
328
589
  '轻度使用': 'Lightly used',
329
590
  '使用明显': 'Well used',
330
- '重度使用': 'Heavily used',
331
591
  'TA 还没写过测评': 'No reviews written yet',
332
592
  'TA 没有在售的二手': 'No secondhand listings',
333
593
  'TA 没有进行中的拍卖': 'No active auctions',
@@ -338,6 +598,7 @@ const _EN = {
338
598
  '活跃买家': 'Active buyers',
339
599
  '成交订单': 'Orders',
340
600
  '热门类目': 'Top categories',
601
+ '随机': 'Random',
341
602
  '放大到': 'Zoom out to ',
342
603
  '扫描结果': 'Scan result',
343
604
  '人气不足': 'low activity',
@@ -349,7 +610,6 @@ const _EN = {
349
610
  '活跃 < 3 人 — 隐私保护(k≥3)下不显示聚合': ' had < 3 active buyers — hidden under k≥3 privacy',
350
611
  '该范围内还没有 ≥ 3 人买过同一商品': 'No product bought by ≥ 3 people in this range yet',
351
612
  '当前关键词无匹配': 'No match for current keyword',
352
- '单': '',
353
613
  '积分树挂靠': 'team tree placement',
354
614
  '积分树挂靠为系统内部记录,不代表收益权或兑付承诺。': 'Placement in the points tree is an internal record only — it does not confer any earning right or payout promise.',
355
615
  '我的邀请链接(第一触点锁定 30 天)': 'My referral link (first-touch, 30-day cookie)',
@@ -363,6 +623,8 @@ const _EN = {
363
623
  'PV 是参与 / 贡献的记录,不是收益、不可兑付、不构成任何奖励权益。匹配奖励当前未启用。': 'PV is a record of participation / contribution — not income, not redeemable, and confers no reward entitlement. Matching rewards are currently not enabled.',
364
624
  '二级': 'L2',
365
625
  '累计佣金': 'Total earnings',
626
+ '清算中': 'Clearing',
627
+ '清算中:退货期满后到账': 'Clearing — paid after the return window closes',
366
628
  '最近佣金流水': 'Recent commissions',
367
629
  '暂无佣金记录': 'No commissions yet',
368
630
  '已复制邀请链接': 'Referral link copied',
@@ -520,15 +782,17 @@ const _EN = {
520
782
  '运输中': 'In transit',
521
783
 
522
784
  // ── Order actions ────────────────────────────────────────────
523
- '✅ 确认揽收': '✅ Confirm pickup',
524
- '🚛 开始运输': '🚛 Start transit',
525
- '📬 确认投递': '📬 Confirm delivery',
526
785
  '确认收货': 'Confirm receipt',
786
+ '✅ 我已付款': '✅ Paid',
787
+ '包装状态描述 / 货物说明(可选)': 'Packaging / goods description (optional)',
788
+ '提交证据': 'Submit evidence',
789
+ '👤 需要你提供': '👤 Your input needed',
790
+ '请求': 'Request',
791
+ '对方': 'the other party',
792
+ '类型:': 'Type: ',
793
+ '截止:': 'Deadline: ',
527
794
  '我的操作': 'Actions',
528
795
  '暂无已注册的物流公司,请先让物流方注册账号': 'No registered logistics providers. Please register a logistics account first.',
529
- '证据说明': 'Evidence description',
530
- '如:SF1234567890': 'E.g.: 1Z999AA10123456784',
531
- '门牌照片描述 / 收件人姓名 / 签收时间': 'Door photo desc / Recipient name / Signature time',
532
796
  '争议理由': 'Dispute reason',
533
797
  '描述问题(货不对版/货损/未收到等)': 'Describe issue (wrong item / damaged / not received, etc.)',
534
798
  '请选择物流公司': 'Please select a logistics company',
@@ -570,7 +834,6 @@ const _EN = {
570
834
  '提交所需证据': 'Submit required evidence',
571
835
  '— 选择证据类型 —': '— Select type —',
572
836
  '(可选)文件哈希 / IPFS CID / 链上 TX ID': '(Optional) File hash / IPFS CID / TX ID',
573
- '详细描述内容(如图片描述、文字陈述、链上 TX hash 等)': 'Detailed description (image, statement, TX hash, etc.)',
574
837
  '已发送证据请求!': 'Evidence request sent!',
575
838
 
576
839
  // ── Arbitrator ruling ────────────────────────────────────────
@@ -579,14 +842,11 @@ const _EN = {
579
842
  '🟢 资金释放给卖家(卖家胜诉)': '🟢 Release to seller (seller wins)',
580
843
  '🟡 部分退款(折中,需填金额)': '🟡 Partial refund (enter amount)',
581
844
  '⚖️ 责任分配(指定各方赔付额)': '⚖️ Liability split (specify amounts)',
582
- '填写退款金额': 'Enter refund amount',
583
845
  '责任方赔付分配': 'Liability allocation',
584
846
  '订单总额:': 'Order total:',
585
- '赔付金额': 'Amount',
586
847
  '保险兜底': 'Insurance cap',
587
848
  '合计退款:': 'Total refund:',
588
849
  '裁定理由 *': 'Ruling reason *',
589
- '请详细说明裁定依据(将记录在案)': 'Explain the basis for your ruling (will be recorded)',
590
850
  '确认裁定': 'Issue ruling',
591
851
  '裁定中...': 'Processing...',
592
852
  '请选择裁定方式': 'Please select ruling type',
@@ -599,7 +859,6 @@ const _EN = {
599
859
  '的赔付金额': "'s compensation amount",
600
860
 
601
861
  // ── Defendant response ───────────────────────────────────────
602
- '请描述你的反驳理由、证据(如物流记录、商品照片说明等)': 'Describe your defense (logistics records, product photos, etc.)',
603
862
  '提交反驳证据': 'Submit defense',
604
863
 
605
864
  // ── Evidence requests (arbitrator) ───────────────────────────
@@ -609,7 +868,6 @@ const _EN = {
609
868
  '— 选择当事方 —': '— Select party —',
610
869
  '所需证据类型(可多选)': 'Evidence types needed',
611
870
  '说明(告诉对方需要提供什么)': 'Description (what to provide)',
612
- '例:请提供商品发出时的快递单照片': 'E.g.: Please provide tracking receipt photo when item was sent',
613
871
  '截止时间': 'Deadline',
614
872
  '24 小时': '24 hours',
615
873
  '48 小时': '48 hours',
@@ -626,7 +884,6 @@ const _EN = {
626
884
  '揽收后即自动认领为你的配送任务': 'Automatically claimed as your delivery after pickup',
627
885
  '暂无进行中订单': 'No active deliveries',
628
886
  '暂无待揽收订单': 'No pending pickups',
629
- '快递单号 *': 'Tracking number *',
630
887
  '投递凭证 *': 'Delivery proof *',
631
888
  '请填写投递凭证': 'Please enter delivery proof',
632
889
 
@@ -639,11 +896,9 @@ const _EN = {
639
896
  '+ 上架': '+ List',
640
897
  '还没有商品': 'No products yet',
641
898
  '上架新商品': 'List new product',
642
- '商品名称': 'Product name',
643
899
  '例:手工竹编收纳篮': 'E.g.: Handwoven bamboo basket',
644
- '商品描述': 'Description',
645
900
  '材质、尺寸、特点...': 'Material, size, features...',
646
- '价格(WAZ)': 'Price (WAZ)',
901
+ '价格(USDC)': 'Price (USDC)',
647
902
  '库存数量': 'Stock',
648
903
  '分类(可选)': 'Category (optional)',
649
904
  '不分类': 'No category',
@@ -664,8 +919,6 @@ const _EN = {
664
919
  '🛡️ 质量承诺 — 额外质押保证': '🛡️ Quality guarantee — Extra stake as assurance',
665
920
  '🚀 极速发货 — 承诺 24h 发货': '🚀 Instant shipping — Promise 24h dispatch',
666
921
  'Skill 名称': 'Skill name',
667
- '例:竹韵手工坊自动接单': 'E.g.: My Store auto-accept',
668
- '简要说明这个 Skill 能给买家带来什么好处': 'Briefly describe the benefit to buyers',
669
922
  '请填写名称和描述': 'Please fill in name and description',
670
923
  '✅ Skill 已发布!买家可以在 Skill 市场订阅': '✅ Skill published! Buyers can subscribe in the Skill Market',
671
924
  '+ 订阅': '+ Subscribe',
@@ -686,15 +939,12 @@ const _EN = {
686
939
  '暂无(升到可信即可享受 -5%)': 'None (reach Trusted for -5% off)',
687
940
  '最近记录': 'Recent history',
688
941
  '完成第一笔交易后开始积累声誉': 'Reputation starts after first transaction',
689
- '充值': 'Deposit',
690
942
  '测试网': 'Testnet',
691
943
  '向以下地址转入 USDC,系统确认后自动到账。': 'Send USDC to the address below. Balance updates automatically after confirmation.',
692
944
  '您的充值地址': 'Your deposit address',
693
945
  '复制地址': 'Copy address',
694
946
  '区块链浏览器': 'Block Explorer',
695
947
  'Base Sepolia 测试网 USDC 可在 Circle Faucet 免费获取。主网上线后同一地址直接使用。': 'Base Sepolia test USDC is available from Circle Faucet. The same address works on mainnet when launched.',
696
- '加载中...': 'Loading...',
697
- '提现': 'Withdraw',
698
948
  '提现金额(WAZ)': 'Amount (WAZ)',
699
949
  '最低 10 WAZ': 'Min 10 WAZ',
700
950
  '申请提现': 'Request Withdrawal',
@@ -704,6 +954,11 @@ const _EN = {
704
954
  '💰 充值测试 WAZ': '💰 Top up test WAZ',
705
955
  'Phase 0 测试专用,单次最多 1000 WAZ,余额上限 5000 WAZ。': 'Phase 0 testing only. Max 1000 WAZ per top-up, balance cap 5000 WAZ.',
706
956
  'WAZ 为协议内模拟货币。Phase 2 将接入真实链上资产。': 'WAZ is simulated protocol currency. Phase 2 will integrate real on-chain assets.',
957
+ '测试模式:WAZ 为模拟货币,不代表真实价值。此为预发布演示,你"托管"的并非真实资金,确认收货后释放的也是测试币。': 'Test mode: WAZ is a simulated currency with NO real value. This is a pre-launch demo — what you "escrow" is not real funds, and what is released on confirmation is test currency.',
958
+ '测试托管订单': 'Test escrow order',
959
+ '本单为预发布演示:WAZ 是模拟货币,不代表真实价值,本协议尚未进行真实资金结算。请勿据此向任何人支付真实款项。': 'This is a pre-launch demo order: WAZ is a simulated currency with no real value, and the protocol does not settle real funds yet. Do not pay anyone real money based on this order.',
960
+ '请选择支付方式': 'Please choose a payment method',
961
+ '直付暂未就绪或不可用,请稍候重试或改选支付方式': 'Direct Pay is not ready or unavailable — please retry shortly or choose another payment method',
707
962
  '充值中...': 'Topping up...',
708
963
  '已充入': 'Topped up',
709
964
  '当前余额': 'Balance',
@@ -738,7 +993,6 @@ const _EN = {
738
993
  // ── Role labels ──────────────────────────────────────────────
739
994
  '买家': 'Buyer',
740
995
  '物流': 'Logistics',
741
- '仲裁员': 'Arbitrator',
742
996
 
743
997
  // ── Smart Import ─────────────────────────────────────────────
744
998
  '导入': 'Import',
@@ -748,7 +1002,6 @@ const _EN = {
748
1002
  '解析': 'Analyze',
749
1003
  '解析中...': 'Analyzing...',
750
1004
  '解析完成,确认后上架': 'Review & publish',
751
- '确认上架': 'Confirm & List',
752
1005
  '点击切换': 'Click to switch',
753
1006
  '使用自己的 Anthropic API Key(不限次数)': 'Use your own Anthropic API Key (unlimited)',
754
1007
  'Key 仅存储在本地,不上传服务器,用完即丢': 'Key is stored locally only, never uploaded, discarded after use',
@@ -759,12 +1012,9 @@ const _EN = {
759
1012
  '提取内容为空,请尝试其他链接或改用手动上架': 'Nothing extracted. Try another link or use manual listing.',
760
1013
 
761
1014
  // ── Product structured fields ────────────────────────────────
762
- '规格参数': 'Specs',
763
1015
  '每行:材质: 陶瓷': 'One per line: Material: Ceramic',
764
1016
  '每行一个,格式:材质: 陶瓷': 'One per line, e.g. Material: Ceramic',
765
1017
  '处理时间 (小时)': 'Handling time (hrs)',
766
- '质保天数': 'Warranty (days)',
767
- '退货条件': 'Return condition',
768
1018
  '发货地区': 'Ship regions',
769
1019
  '时效 (天)': 'Transit (days)',
770
1020
  '易碎品,需特殊包装': 'Fragile — special packaging',
@@ -779,7 +1029,6 @@ const _EN = {
779
1029
  '上次自动下架': 'Last auto-delist',
780
1030
  '售罄自动下架': 'Auto-delisted (sold out)',
781
1031
  '分享一下你的体验?': 'Share your experience?',
782
- '写笔记': 'Write a note',
783
1032
  '已购买': 'Verified buyer',
784
1033
  '原图': 'Original',
785
1034
  '协议校验:作者已购买此商品并在 30 天内发笔记': 'Protocol-verified: author bought this product and wrote within 30 days',
@@ -798,21 +1047,15 @@ const _EN = {
798
1047
  '当前没有进行中的验证任务': 'No claims awaiting verification right now',
799
1048
  '当前没有待结算的任务': 'No claims awaiting settlement',
800
1049
  '暂无已结算记录': 'No resolved claims yet',
801
- '待结算': 'Sealed',
802
1050
  '已结算': 'Resolved',
803
1051
  '买家证据': 'Buyer evidence',
804
- '卖家证据': 'Seller evidence',
805
1052
  '结案于': 'Resolved at',
806
1053
  '去验证 →': 'Verify →',
807
- '协议治理': 'Protocol governance',
808
1054
  '参数公开 · 变更可追溯': 'Public params · audit trail',
809
1055
  '参数公开': 'Public params',
810
1056
  '社区提案': 'Community proposals',
811
1057
  '试点投票': 'Pilot voting',
812
1058
  '完整 DAO': 'Full DAO',
813
- '新人': 'New',
814
- '正确': 'correct',
815
- '总任务': 'total',
816
1059
  '偏离': 'outlier',
817
1060
  '命中率': 'Accuracy',
818
1061
  '正确数 / 总任务数 · 命中率 = 与多数共识一致的比例': 'correct / total · accuracy = % aligned with majority consensus',
@@ -824,13 +1067,9 @@ const _EN = {
824
1067
  '已开启新任务通知': 'New-task notifications ON',
825
1068
  '已关闭新任务通知': 'New-task notifications OFF',
826
1069
  '搜索判决书 / 双方陈述 / 商品名': 'Search ruling / arguments / product name',
827
- '搜索': 'Search',
828
- '清除': 'Clear',
829
1070
  '条结果': 'results',
830
- '最新': 'Newest',
831
1071
  '热议': 'Most discussed',
832
1072
  '好评': 'Highest fairness',
833
- '已驳回': 'Dismissed',
834
1073
  '同类已判案件': 'Similar resolved cases',
835
1074
  '仅供参考,每案独立判定': 'For reference only · each case judged independently',
836
1075
  '同类目': 'Same category',
@@ -847,9 +1086,7 @@ const _EN = {
847
1086
  'paid → shipped 平均耗时': 'paid → shipped average duration',
848
1087
  '平均备货时长': 'Avg handling time',
849
1088
  'refunded / completed': 'refunded / completed',
850
- '退货率': 'Return rate',
851
1089
  '对比上一': 'vs prev ',
852
- '新': 'NEW',
853
1090
  '跨境订单': 'Cross-border order',
854
1091
  '订单总额低于免税阈值': 'Below duty-free threshold',
855
1092
  '通常无关税': 'usually no import duty',
@@ -874,23 +1111,15 @@ const _EN = {
874
1111
  '不熟悉此领域 · 弃投不扣 outlier · 不影响判决': 'Unfamiliar with this domain · abstain without outlier penalty · no impact on consensus',
875
1112
  '弃投(不熟悉)': 'Abstain (unfamiliar)',
876
1113
  'Agent 榜': 'Agents',
877
- '传奇': 'Legend',
878
- '优质': 'Quality',
879
- '可信': 'Trusted',
880
- '新人': 'New',
881
- '次调用': 'calls',
882
1114
  '个 key': 'keys',
883
- '信任分': 'Trust',
884
1115
  '还没有 Agent 调用过协议 — 接入 MCP 即可上榜': 'No agents have called the protocol yet — integrate via MCP',
885
1116
  '批量改阈值': 'Set threshold',
886
1117
  '批量设置低库存阈值(≥0 整数,0=不预警)': 'Set low-stock threshold (≥0 integer, 0 = no alert)',
887
1118
  '批量上架': 'Re-list',
888
- '移入回收箱': 'To trash',
889
1119
  '已设置': 'Set',
890
- '已上架': 'Listed',
891
1120
  '已移入回收箱': 'Trashed',
892
1121
  '链接核验/失效会被拒绝': 'Items with pending or revoked link verification will be rejected',
893
- '确认上架': 'Confirm re-list',
1122
+ '确认上架': 'Confirm & List',
894
1123
  '确认移入回收箱': 'Confirm trash',
895
1124
  '请求上门取件': 'Request pickup',
896
1125
  '卖家会安排物流到指定地址上门收件(免自寄)': 'Seller arranges courier pickup at your address (no self-shipping)',
@@ -919,15 +1148,11 @@ const _EN = {
919
1148
  '已退款 · 退货完成': 'Refunded · return complete',
920
1149
  '退货取件': 'Return pickups',
921
1150
  '暂无退货取件任务': 'No pickup tasks',
922
- '待揽收': 'To collect',
923
1151
  '快递单号 / GPS / 揽收照片描述': 'Tracking # / GPS / pickup photo desc',
924
- '确认揽收': 'Confirm pickup',
925
1152
  '请填写揽收证据 ≥ 4 字': 'Pickup evidence ≥ 4 chars required',
926
1153
  '✓ 已揽收 · 卖家收到货后将自动退款': '✓ Picked up · refund auto-triggered when seller confirms receipt',
927
1154
  '跨境多语言(可选)': 'Cross-border i18n (optional)',
928
1155
  '为跨境买家提供其他语言版本 — 协议按 Accept-Language 自动切换;缺译回落中文': 'Provide localized versions for cross-border buyers — protocol auto-switches by Accept-Language; missing translation falls back to Chinese',
929
- '标题': 'Title',
930
- '描述': 'Description',
931
1156
  '如 Handmade Leather Wallet': 'e.g. Handmade Leather Wallet',
932
1157
  '英文描述(≤ 500 字)': 'English description (≤ 500 chars)',
933
1158
  '更多语言(日 / 韩)': 'More languages (JA / KO)',
@@ -942,19 +1167,13 @@ const _EN = {
942
1167
  '登录后点赞 / 收藏 / 评论': 'Sign in to like / save / comment',
943
1168
  '分享 / 转发': 'Share / repost',
944
1169
  '复制笔记链接': 'Copy link',
945
- '链接已复制': 'Link copied',
946
- '复制失败': 'Copy failed',
947
1170
  '转发到我自己(需买过同款)': 'Repost as myself (must have bought)',
948
1171
  '该笔记未关联商品,无法转发': 'Note has no linked product, cannot repost',
949
1172
  '分享笔记': 'Share note',
950
1173
  '管理': 'Manage',
951
1174
  '管理我的笔记': 'Manage my notes',
952
- '编辑笔记': 'Edit note',
953
- '已取消关注': 'Unfollowed',
954
- '已取消收藏': 'Removed from saved',
955
1175
  '网络错误': 'Network error',
956
1176
  '确认删除这条笔记?不可恢复': 'Delete this note? Cannot be undone',
957
- '已删除': 'Deleted',
958
1177
 
959
1178
  // ── External links ───────────────────────────────────────────
960
1179
  '买家粘贴这些链接时,智能下单会直接匹配到你的商品': 'When buyers paste these links, Smart Order will directly match your product',
@@ -1023,8 +1242,6 @@ const _EN = {
1023
1242
  '此链接已有进行中的任务': 'Existing pending task for this link',
1024
1243
  '导入来源': 'Imported from',
1025
1244
  '认领验证': 'Claim verification',
1026
- '待验证': 'Pending verification',
1027
- '已验证': 'Verified',
1028
1245
  '验证码': 'Verification code',
1029
1246
  '请将验证码放入原平台商品标题或描述 · 截止': 'Add code to the original listing\'s title or description — deadline:',
1030
1247
  '查看任务进度': 'View task progress',
@@ -1043,7 +1260,6 @@ const _EN = {
1043
1260
  '填入看到的验证码,如 [AB3KW2QP]': 'Enter the code you see, e.g. [AB3KW2QP]',
1044
1261
  '分配给我的任务': 'Tasks Assigned to Me',
1045
1262
  '帮助平台验证外部链接所有权,获得 WAZ 奖励': 'Help verify external link ownership and earn WAZ',
1046
- '提交中...': 'Submitting...',
1047
1263
  '请填入看到的验证码': 'Please enter the code you see',
1048
1264
  '✓ 已提交,等待结算': '✓ Submitted — awaiting settlement',
1049
1265
 
@@ -1120,7 +1336,6 @@ const _EN = {
1120
1336
  '团队达到 50 人': 'Team reaches 50',
1121
1337
  '去发现': 'Browse',
1122
1338
  '去填写': 'Set up',
1123
- '去设置': 'Set up',
1124
1339
  '复制邀请链': 'Copy invite link',
1125
1340
 
1126
1341
  // ── Promoter restructure ────────────────────────────────────
@@ -1129,7 +1344,6 @@ const _EN = {
1129
1344
  '下一档': 'Next tier',
1130
1345
  '已达顶': 'Top tier',
1131
1346
  '分享工具': 'Share Tools',
1132
- '二维码': 'QR Code',
1133
1347
  '我的产品分享': 'My Product Shares',
1134
1348
  '确定': 'OK',
1135
1349
  '去个人主页管理': 'Manage on profile',
@@ -1143,7 +1357,6 @@ const _EN = {
1143
1357
  '积分匹配': 'Matching',
1144
1358
  '累计': 'Total',
1145
1359
  '近 7 日': 'Last 7d',
1146
- '笔': 'records',
1147
1360
  '我累计': 'My total',
1148
1361
  '待分配': 'Pending',
1149
1362
  '动态推荐绑定': 'Dynamic L1 binding',
@@ -1153,7 +1366,6 @@ const _EN = {
1153
1366
  '动态 L1 推荐人': 'Dynamic L1 referrer',
1154
1367
  '触发商品': 'Triggered by',
1155
1368
  '接管的推荐': 'Referrals taken over',
1156
- '更多': 'more',
1157
1369
  '累计动态推荐佣金': 'Total dynamic commission',
1158
1370
 
1159
1371
  // ── Profile polish ──────────────────────────────────────────
@@ -1302,6 +1514,14 @@ const _EN = {
1302
1514
  '立即绑定 Passkey(强烈推荐)': 'Bind a Passkey now (strongly recommended)',
1303
1515
  '测评': 'Review',
1304
1516
  '全新': 'Brand new',
1517
+ '全新商品': 'New goods',
1518
+ '二手闲置': 'Secondhand',
1519
+ '请上传真实实物照,勿用网图/广告图;如经举报核实为虚假图片,商品可能被下架': 'Upload real photos of the actual item — no stock/ad images. Listings with fake photos may be removed if reported.',
1520
+ 'WebAZ 交易保障': 'WebAZ trade protection',
1521
+ '协议费 1%': '1% protocol fee',
1522
+ '资金托管·确认收货才放款': 'Funds escrowed · released only on delivery confirmation',
1523
+ '面交也可托管': 'Escrow available for in-person deals too',
1524
+ '成色声明可社区验证': 'Condition claims can be community-verified',
1305
1525
  'Cmd/Ctrl + ↵': 'Cmd/Ctrl + ↵',
1306
1526
  'k-anonymity ≥': 'k-anonymity ≥',
1307
1527
  '位邻居 24h 活跃': ' neighbors active in 24h',
@@ -1440,7 +1660,6 @@ const _EN = {
1440
1660
  '去发现好物 →': 'Go to Discover →',
1441
1661
  '已取消关注': 'Unfollowed',
1442
1662
  '操作失败,请重试': 'Action failed, please try again',
1443
- '看新品发现 →': 'See New Finds →',
1444
1663
  '只展示被真实买家购买过的商品 · 社交背书 · 非平台推荐': 'Only items real buyers have purchased · social-backed · not platform-recommended',
1445
1664
  '只展示真实成交且好评推荐的内容,用户共建非平台算法推荐': 'Only items with real sales + positive reviews — community-curated, not platform algorithm',
1446
1665
  '人已推荐': 'recommended',
@@ -1492,12 +1711,10 @@ const _EN = {
1492
1711
  '匿名用户': 'Anonymous',
1493
1712
  '匿名评论已发布': 'Anonymous comment posted',
1494
1713
  '平台角色': 'Platform staff',
1495
- '判例库': 'Case library',
1496
1714
  '全网公开仲裁记录 · 脱敏后展示 · 共建协议判例': 'All public arbitration records · anonymized · community-curated protocol precedent',
1497
1715
  '按类目': 'By category',
1498
1716
  '按结果': 'By outcome',
1499
1717
  '暂无符合条件的判例': 'No matching cases',
1500
- '看全部': 'View all',
1501
1718
  '售后': 'After-sale',
1502
1719
  '拒收': 'Rejected',
1503
1720
  '推荐多': 'Most rec.',
@@ -1514,7 +1731,6 @@ const _EN = {
1514
1731
  '去模糊搜索': 'Fuzzy search',
1515
1732
  '不做模糊匹配:': 'does not do fuzzy matching:',
1516
1733
  '关键词没有精确匹配的商品标题或完整链接,可能该商品 WebAZ 还没上架。': 'Your keyword has no exact-matched title or full link — this item may not be listed on WebAZ yet.',
1517
- '雷达': 'Radar',
1518
1734
  '拍卖二手': 'Deals',
1519
1735
  '入驻时长': 'Seller for',
1520
1736
  '年': 'y',
@@ -1554,7 +1770,6 @@ const _EN = {
1554
1770
  // 动态 sub-tab 排行榜
1555
1771
  '完整榜单': 'Full ranking',
1556
1772
  '热门商品': 'Hot products',
1557
- '人推荐': 'recommend',
1558
1773
  '赞': 'likes',
1559
1774
  '我关注的': 'Following',
1560
1775
  '你关注的人还没有动态 — 去关注一些活跃用户': 'No activity from those you follow yet — follow some active users',
@@ -1931,8 +2146,6 @@ const _EN = {
1931
2146
  '已删除': 'Deleted',
1932
2147
  '查看评论': 'View comments',
1933
2148
  '评论需 5-500 字': 'Comment must be 5–500 chars',
1934
- '提交中…': 'Submitting…',
1935
- '评论已发布': 'Comment posted',
1936
2149
  '发表': 'Post',
1937
2150
  '更多': 'More',
1938
2151
  '更多操作': 'More actions',
@@ -1950,7 +2163,6 @@ const _EN = {
1950
2163
  '修改标题 / 正文': 'Edit title / body',
1951
2164
  '查看数据': 'View stats',
1952
2165
  '点击 / 赞 / 收藏 / 评论': 'Clicks / likes / saves / comments',
1953
- '我的笔记': 'My notes',
1954
2166
  '管理所有笔记': 'Manage all notes',
1955
2167
  '不可恢复': 'Cannot be undone',
1956
2168
  'WebAZ 笔记': 'WebAZ note',
@@ -1959,8 +2171,6 @@ const _EN = {
1959
2171
  '分享失败': 'Share failed',
1960
2172
  '扫码访问笔记': 'Scan to open note',
1961
2173
  '已复制链接(QR 不可用)': 'Link copied (QR unavailable)',
1962
- '加载失败': 'Load failed',
1963
- '总点击': 'Total clicks',
1964
2174
  '点赞数': 'Likes',
1965
2175
  '收藏数': 'Saves',
1966
2176
  '评论数': 'Comments',
@@ -1973,7 +2183,6 @@ const _EN = {
1973
2183
  '正文(30-1000 字)': 'Body (30-1000 chars)',
1974
2184
  '图片不可改 — 协议层防剽窃需保留原 hash;要换图请删除后重发': 'Images cannot be changed — protocol anti-plagiarism keeps original hashes; delete & repost to change',
1975
2185
  '正文长度需 30-1000 字': 'Body must be 30-1000 chars',
1976
- '已保存': 'Saved',
1977
2186
  '极致性价比认证': 'Value-for-money certified',
1978
2187
  '协议层算法 · 同类目价格前': 'Protocol algorithm · in top',
1979
2188
  '类目第': 'Category rank #',
@@ -2057,7 +2266,6 @@ const _EN = {
2057
2266
  '争议已驳回': 'Dispute dismissed',
2058
2267
  '订单已超时': 'Order expired',
2059
2268
  '查看下方时间线了解流转详情': 'See timeline below for details',
2060
- '已超时': 'Overdue',
2061
2269
  '请尽快完成付款': 'Please complete payment',
2062
2270
  '等待买家付款': 'Waiting for buyer payment',
2063
2271
  '等待卖家接单': 'Waiting for seller to accept',
@@ -2120,7 +2328,6 @@ const _EN = {
2120
2328
  'Claude 会自动调用 webaz_search / webaz_verify_price / webaz_place_order 等 30+ 个 tool。需要 api_key 时先用 webaz_register 注册或登录现有账号。': 'Claude will auto-call webaz_search / webaz_verify_price / webaz_place_order — 30+ tools. Use webaz_register to create an api_key or log in to an existing account.',
2121
2329
  '内部 vs 外部': 'Internal vs external',
2122
2330
  '内部走浏览器接 LLM key 适合体验;外部 MCP 适合长跑 / 复杂任务 / 命令行自动化。两条路径后端、信誉、escrow 完全共享。': 'Internal browser-with-LLM-key suits casual exploration; external MCP suits long-running / complex / scripted tasks. Both share the same backend, reputation, escrow.',
2123
- '商品图片': 'Photos',
2124
2331
  '(最多 9 张 · 自动压缩到 800px · 第一张为封面 · blob 留在你的节点,平台只存哈希)': '(up to 9 · 800px auto-compressed · first one is cover · blob stays on your node, server only stores hash)',
2125
2332
  '最多 9 张图片': 'Up to 9 photos',
2126
2333
  '文件过大(>12MB)': 'file too large (>12MB)',
@@ -2209,22 +2416,16 @@ const _EN = {
2209
2416
  '待结 Score': 'Pending Score',
2210
2417
  '查看 TA 的主页': 'View their profile',
2211
2418
  '没有更多了': 'No more',
2212
- '信誉': 'Rating',
2419
+ '信誉': 'Reputation',
2213
2420
  '价格 ↑': 'Price ↑',
2214
2421
  '随机探索': 'Explore',
2215
2422
  '换一批': 'Refresh',
2216
2423
  'Agent 信誉': 'Agent Trust',
2217
- '新人': 'New',
2218
- '可信': 'Trusted',
2219
- '优质': 'Quality',
2220
- '传奇': 'Legend',
2221
2424
  '账龄': 'Age',
2222
- '分享转化': 'Share conv.',
2223
2425
  '调用多样': 'API diversity',
2224
2426
  '仲裁败诉': 'Dispute loss',
2225
2427
  '同 IP 多号': 'Same IP cluster',
2226
2428
  '同支': 'Same-branch',
2227
- '限速命中': 'Rate limit hits',
2228
2429
  '再 +': '+',
2229
2430
  '分解锁 raw mode': 'pts to unlock raw mode',
2230
2431
  '已解锁 raw mode API': 'Raw mode unlocked',
@@ -2235,7 +2436,6 @@ const _EN = {
2235
2436
  '调用 endpoint 数': 'Endpoints called',
2236
2437
  '每个 api_key 一份独立信誉;影响 raw mode 等高阶 API 访问': 'Each api_key has its own reputation; affects access to raw mode and other advanced APIs',
2237
2438
  '/ 100+ 分': '/ 100+ pts',
2238
- '天': ' days',
2239
2439
  '分': ' pts',
2240
2440
  '点击量': 'Clicks',
2241
2441
  '真实点击=去重后': 'unique = deduplicated',
@@ -2269,9 +2469,7 @@ const _EN = {
2269
2469
  '推荐理由': 'Reasons',
2270
2470
  '暂无明显推荐理由 — 协议级公平展示': 'No strong reasons — protocol-level neutral display',
2271
2471
  '更多理由': 'More reasons',
2272
- '即将上线': 'Coming soon',
2273
2472
  'M7.3 即将上线': 'Available in M7.3',
2274
- '详情': 'Details',
2275
2473
  '立即下单': 'Order now',
2276
2474
  '比外部平台省': 'Save vs external',
2277
2475
  '分享后可得 L1 佣金 ≈': 'L1 share commission ≈',
@@ -2413,7 +2611,6 @@ const _EN = {
2413
2611
  '例:请提供商品发出时的快递单照片': 'Example: please provide a photo of the shipping label at dispatch',
2414
2612
  '填写退款金额': 'Enter refund amount',
2415
2613
  '赔付金额': 'Compensation amount',
2416
- '上限': 'Cap',
2417
2614
  '请详细说明裁定依据(将记录在案)': 'Explain the ruling rationale in detail (will be recorded)',
2418
2615
  '材质: 陶瓷&#10;容量: 350ml&#10;颜色: 白色': 'Material: ceramic&#10;Capacity: 350ml&#10;Color: white',
2419
2616
  '华东: 2&#10;全国: 5': 'East China: 2&#10;Nationwide: 5',
@@ -2452,7 +2649,6 @@ const _EN = {
2452
2649
  '当前没有可接的验证任务': 'No tasks available right now',
2453
2650
  '我相关的任务': 'My tasks',
2454
2651
  '我被诉的': 'As seller',
2455
- '暂无记录': 'No records',
2456
2652
  '价格优势': 'Price advantage',
2457
2653
  '分享佣金': 'Share commission',
2458
2654
  '协议保障': 'Protocol protection',
@@ -2493,7 +2689,6 @@ const _EN = {
2493
2689
  '注意:截止时间将 +24 小时。虚假证据在结算时额外扣 20% stake。':
2494
2690
  'Note: deadline +24h. False evidence forfeits an additional 20% of stake at settlement.',
2495
2691
  '证据 URL(必填,4-500 字符)': 'Evidence URL (4-500 chars)',
2496
- '提交': 'Submit',
2497
2692
  '证据已提交。新截止时间:': 'Evidence submitted. New deadline: ',
2498
2693
  '请填写证据 URL': 'Please enter the evidence URL',
2499
2694
  '对推荐理由发起验证': 'Verify recommendation reason',
@@ -2506,7 +2701,6 @@ const _EN = {
2506
2701
  '对推荐理由有疑问?发起验证任务': 'Question a recommendation reason? Start verification',
2507
2702
  '锁 10 WAZ 启动,3 verifier 共识仲裁。不可撤销。': 'Lock 10 WAZ to start, 3-verifier consensus. Non-cancellable.',
2508
2703
  '查看任务详情': 'View task',
2509
- '发起验证': 'Start verification',
2510
2704
  '验证活动': 'Verification activity',
2511
2705
  '参与协议级仲裁': 'Participate in protocol arbitration',
2512
2706
 
@@ -2638,7 +2832,6 @@ const _EN = {
2638
2832
  '发布成功': 'Published',
2639
2833
  '至少上传 1 张图片': 'Upload at least 1 image',
2640
2834
  '单张图片不超过 4MB:': 'Each image must be ≤ 4MB: ',
2641
- '封面': 'Cover',
2642
2835
  '请填写标题': 'Please enter a title',
2643
2836
  '请填写价格': 'Please enter a price',
2644
2837
  '成交时协议收取 1% 服务费。escrow 由买家确认收货后释放给你。':
@@ -2692,8 +2885,7 @@ const _EN = {
2692
2885
  // ── M8 UX 优化 ────────────────────────────────────────────
2693
2886
  '价↑': 'Price ↑',
2694
2887
  '价↓': 'Price ↓',
2695
- '价格区间 (WAZ)': 'Price range (WAZ)',
2696
- '最高': 'Max',
2888
+ '价格区间 (USDC)': 'Price range (USDC)',
2697
2889
  '应用': 'Apply',
2698
2890
  '成色 (可多选)': 'Condition (multi)',
2699
2891
  'TA 还在卖': 'Also from this seller',
@@ -2756,7 +2948,6 @@ const _EN = {
2756
2948
  '次日达': 'Next-day',
2757
2949
  '标准快递': 'Standard',
2758
2950
  '预计到达': 'ETA',
2759
- '可选': 'optional',
2760
2951
  '如:0.5 = 半小时': 'e.g., 0.5 = half hour',
2761
2952
  '发货区域': 'Ship from',
2762
2953
  '清仓促销': 'Clearance promo',
@@ -2792,7 +2983,6 @@ const _EN = {
2792
2983
  '仅买家可发求购单': 'Only buyers can post RFQs',
2793
2984
  '我要什么': 'I need',
2794
2985
  '例:100 颗 M5×20 内六角螺丝': 'e.g., 100× M5x20 hex screws',
2795
- '预算': 'Budget',
2796
2986
  '选定模式': 'Award mode',
2797
2987
  '限时窗口期内最低价自动选': 'Auto-pick lowest within window',
2798
2988
  '手动选(看 bid 自由挑)': 'Manual pick',
@@ -2811,7 +3001,6 @@ const _EN = {
2811
3001
  '暂无求购单': 'No RFQs yet',
2812
3002
  '征集中': 'Open',
2813
3003
  '已选定': 'Awarded',
2814
- '个报价': 'bids',
2815
3004
  '最低 ': 'low ',
2816
3005
  '剩余 ': 'remaining ',
2817
3006
  '预算 ≤ ': 'Budget ≤ ',
@@ -2826,7 +3015,6 @@ const _EN = {
2826
3015
  '联系对方': 'Message',
2827
3016
  '举报': 'Report',
2828
3017
  '开始第一句问候': 'Send the first message',
2829
- '添加图片': 'Add image',
2830
3018
  '输入消息(按 Enter 发送)': 'Type a message (Enter to send)',
2831
3019
  '检测到可能引导平台外交易': 'Off-platform handles detected',
2832
3020
  '链外资金协议无法保护': 'protocol cannot protect off-platform funds',
@@ -2842,6 +3030,9 @@ const _EN = {
2842
3030
  '银行卡': 'Bank card',
2843
3031
  'Telegram': 'Telegram',
2844
3032
  '外部链接': 'External URL',
3033
+ '外部平台': 'External platform',
3034
+ '前往源平台查看详情': 'View details on the source platform',
3035
+ '同城共鸣': 'Local buzz',
2845
3036
 
2846
3037
  // ── P3c 收尾 ──────────────────────────────────────────────
2847
3038
  '提前结算(自动选最低价)': 'Settle early (auto-pick lowest)',
@@ -2934,7 +3125,6 @@ const _EN = {
2934
3125
  '当前': 'Current',
2935
3126
  '起拍': 'Start',
2936
3127
  '加价': 'Step',
2937
- '次出价': 'bids',
2938
3128
  '条出价历史': 'bid history',
2939
3129
  '暂无出价': 'No bids yet',
2940
3130
  '当前最高': 'Highest',
@@ -3171,7 +3361,6 @@ const _EN = {
3171
3361
  // ── Tab bar 重组 + #me hub ──────────────────────────────────
3172
3362
  '我的': 'Me',
3173
3363
  '发现': 'Discover',
3174
- '求购': 'Buy Requests',
3175
3364
  '抢单': 'Bid Market',
3176
3365
  '私信': 'Messages',
3177
3366
  '慈善许愿': 'Charity Wishes',
@@ -3200,7 +3389,6 @@ const _EN = {
3200
3389
  '个人资料 + 角色管理': 'Profile + Role mgmt',
3201
3390
  '求购市场': 'Buy Request Market',
3202
3391
  'P2P 商店': 'P2P Shop',
3203
- '发起拍卖': 'Start Auction',
3204
3392
  '发起跟卖': 'Start Follow-list',
3205
3393
  '部分数据加载失败': 'Some data failed to load',
3206
3394
  '重试': 'Retry',
@@ -3213,7 +3401,6 @@ const _EN = {
3213
3401
  '我买我卖': 'My trades',
3214
3402
  '已锁定': 'Locked',
3215
3403
  '钱包余额': 'Wallet Balance',
3216
- '我的求购': 'My RFQs',
3217
3404
  '看公开求购市场': 'Public RFQ market',
3218
3405
  '发新求购': 'New RFQ',
3219
3406
  'AI 自然语言': 'AI natural language',
@@ -3275,7 +3462,6 @@ const _EN = {
3275
3462
  '被告': 'Defendant',
3276
3463
  '金额': 'Amount',
3277
3464
  '仲裁截止': 'Ruling deadline',
3278
- '待处理': 'Pending',
3279
3465
  '已提交': 'Submitted',
3280
3466
  '个任务 ≤6h 截止 — 已置顶标红': 'task(s) ≤6h to deadline — pinned & red',
3281
3467
  '需要关注': 'Needs attention',
@@ -3287,7 +3473,6 @@ const _EN = {
3287
3473
  '恢复': 'Resume',
3288
3474
  '暂停原因(必填,会写入审计)': 'Reason (required, written to audit)',
3289
3475
  '需填写原因': 'Reason required',
3290
- '确认': 'Confirm',
3291
3476
  '批量暂停': 'Batch suspend',
3292
3477
  '批量恢复': 'Batch resume',
3293
3478
  '个用户?': 'users?',
@@ -3312,7 +3497,6 @@ const _EN = {
3312
3497
  '慈善 silver': 'Charity Silver',
3313
3498
  '慈善 bronze': 'Charity Bronze',
3314
3499
  '慈善 none': 'Charity None',
3315
- '审核员': 'Verifier',
3316
3500
  '我的 Agent': 'My Agent',
3317
3501
  '点击展开/收起': 'Tap to expand/collapse',
3318
3502
  'Agent trust': 'Agent trust',
@@ -3387,7 +3571,6 @@ const _EN = {
3387
3571
  '概览': 'Overview',
3388
3572
  '用户管理': 'User Mgmt',
3389
3573
  '查看 / 暂停 / 调权限': 'View / suspend / role',
3390
- '审计日志': 'Audit Log',
3391
3574
  'admin 写操作历史': 'admin write history',
3392
3575
  '订单查看': 'Orders (R/O)',
3393
3576
  '全平台只读': 'Platform-wide read-only',
@@ -3412,7 +3595,6 @@ const _EN = {
3412
3595
 
3413
3596
  // ── admin 重设 ─────────────────────────────────────────────
3414
3597
  '内容': 'Content',
3415
- '仲裁': 'Arbitration',
3416
3598
  '协议': 'Protocol',
3417
3599
  '不可个人交易': 'No personal transactions',
3418
3600
  '治理工作台': 'Governance Workbench',
@@ -3443,11 +3625,9 @@ const _EN = {
3443
3625
  '慈善举报审核': 'Charity Reports Review',
3444
3626
  '3 个不同举报人 → 自动 status=disputed 隐藏;admin 可手动驳回或下架': '3 unique reporters → auto disputed; admin may dismiss or take down',
3445
3627
  '已驳回': 'Dismissed',
3446
- '已下架': 'Actioned',
3447
3628
  '原因': 'Reason',
3448
3629
  '愿望状态': 'Wish status',
3449
3630
  '暂无举报': 'No reports',
3450
- '驳回': 'Dismiss',
3451
3631
  '强制下架愿望': 'Force Takedown',
3452
3632
  '下架原因(必填,会写入审计 + 通知)': 'Takedown reason (required, audited + notified)',
3453
3633
  '从基金池拨款给指定 user_id;用途必填,写入审计 + 推送通知给收款人': 'Disburse from pool to user_id; note required, audited + notified to recipient',
@@ -3493,7 +3673,6 @@ const _EN = {
3493
3673
  '暂无 admin': 'No admins',
3494
3674
  '创建于': 'Created at',
3495
3675
  '最近操作': 'Last action',
3496
- '撤销': 'Revoke',
3497
3676
  '当前账户': 'Current account',
3498
3677
  '请填写用户 ID': 'Please fill user_id',
3499
3678
  '确认授予 ': 'Confirm grant ',
@@ -3547,7 +3726,6 @@ const _EN = {
3547
3726
  '店铺管理': 'Shop',
3548
3727
  '商品 / 营销 / Skill': 'Products / Marketing / Skill',
3549
3728
  'Skill 配置': 'Skill setup',
3550
- '订阅中': 'subscribed',
3551
3729
  'AI 自动化技能': 'AI automation',
3552
3730
  'auto_bid 规则': 'auto_bid rules',
3553
3731
  '订单事件推送': 'Order event push',
@@ -3562,6 +3740,8 @@ const _EN = {
3562
3740
  'Agent 工具': 'Agent tools',
3563
3741
  '搜索 / 下单': 'Search / order',
3564
3742
  '待付款': 'To pay',
3743
+ '直付待付款': 'Direct pay · to pay',
3744
+ '直付超时未确认': 'Direct pay · timed out',
3565
3745
  '待收货': 'To receive',
3566
3746
  '全部完成': 'All done',
3567
3747
  '个争议待处理': 'disputes pending',
@@ -3597,7 +3777,6 @@ const _EN = {
3597
3777
  '门牌描述 / 收件人签收': 'Door note / signature',
3598
3778
  '当前状态无可执行动作': 'No action for current status',
3599
3779
  '快递单号': 'Tracking #',
3600
- '投递凭证': 'Proof',
3601
3780
 
3602
3781
  // ── 仲裁台 ──────────────────────────────────────────────────
3603
3782
  '待裁': 'Pending',
@@ -3619,7 +3798,6 @@ const _EN = {
3619
3798
  '等待被告回应': 'Awaiting response',
3620
3799
  '仲裁审查中': 'Under review',
3621
3800
  '已裁定': 'Resolved',
3622
- '已撤销': 'Dismissed',
3623
3801
  '揽收': 'Pickup',
3624
3802
  '运输': 'Ship',
3625
3803
  '投递': 'Deliver',
@@ -3781,14 +3959,12 @@ const _EN = {
3781
3959
  '误导性': 'Misleading',
3782
3960
  '伪造': 'Fake',
3783
3961
  '成色': 'Condition',
3784
- '价格': 'Price',
3785
3962
 
3786
3963
  // Sprint 3 — auction + wish claim
3787
3964
  '保留价不合理': 'Unreasonable reserve price',
3788
3965
  '自买自卖刷价': 'Shill bidding',
3789
3966
  '围标 / 串通': 'Collusion',
3790
3967
  '商品本身有问题': 'Listing has issues',
3791
- '保留价': 'Reserve price',
3792
3968
  '刷价': 'Shill',
3793
3969
  '围标': 'Collusion',
3794
3970
  '商品问题': 'Listing issue',
@@ -3926,7 +4102,6 @@ const _EN = {
3926
4102
  '保存常用地址,下单时一键选择': 'Save your favorites and pick one at checkout',
3927
4103
  '添加地址': 'Add address',
3928
4104
  '编辑地址': 'Edit address',
3929
- '默认': 'Default',
3930
4105
  '设为默认': 'Set default',
3931
4106
  '设为默认地址': 'Set as default',
3932
4107
  '删除该地址?': 'Delete this address?',
@@ -3976,7 +4151,6 @@ const _EN = {
3976
4151
  '全平台': 'Platform-wide',
3977
4152
  '截止': 'Expires',
3978
4153
  '长期有效': 'No expiry',
3979
- '剩': 'left',
3980
4154
  '无限': 'Unlimited',
3981
4155
  '满': 'Min order',
3982
4156
  '可用': 'qualifying',
@@ -4007,12 +4181,10 @@ const _EN = {
4007
4181
  '日粒度仅展示最近 30 天;汇总指标按完整窗口计算': 'Daily bars show last 30 days only; aggregate KPIs use the full window',
4008
4182
 
4009
4183
  // Wave D-1: 关注的卖家 Feed
4010
- '动态': 'Feed',
4011
4184
  '关注的卖家新品 / 补货': 'New from sellers you follow',
4012
4185
  'Feed 为空 — 关注感兴趣的卖家': 'Feed is empty — follow sellers you like',
4013
4186
  '管理关注': 'Manage follows',
4014
4187
  '关注卖家的新品 / 补货第一时间看到': 'New arrivals & restocks from your follows — first to see',
4015
- '新品': 'New',
4016
4188
  '补货': 'Restock',
4017
4189
 
4018
4190
  // Wave D-2: 订单导出 / 收据
@@ -4088,7 +4260,6 @@ const _EN = {
4088
4260
  '取消该促销?': 'Cancel this flash sale?',
4089
4261
  '暂无进行中的限时促销': 'No flash sales in progress',
4090
4262
  '暂无促销活动': 'No flash sales',
4091
- '进行中': 'Live',
4092
4263
  '已排期': 'Scheduled',
4093
4264
  '已结束': 'Ended',
4094
4265
  '省': 'Save',
@@ -4129,7 +4300,6 @@ const _EN = {
4129
4300
  '店内商品': 'Products',
4130
4301
  '最近评价': 'Recent ratings',
4131
4302
  '该卖家暂无商品': 'No products yet',
4132
- '一句话简介': 'Tagline',
4133
4303
  '最多 200 字': 'max 200 chars',
4134
4304
  '告诉买家你是谁,卖什么': 'Tell buyers who you are and what you sell',
4135
4305
  '店铺横幅图片 URL': 'Shop banner URL',
@@ -4209,7 +4379,6 @@ const _EN = {
4209
4379
  '当前关键词在 24h 热门内无匹配': 'No matches in 24h trending for current keyword',
4210
4380
  '热门卖家': 'Trending sellers',
4211
4381
  '推荐卖家': 'Recommended sellers',
4212
- '卖家信誉': 'Seller rating',
4213
4382
  '卖家累计成交量降序(新品无产品级数据,按卖家维度)': 'Seller lifetime sales DESC (new products have no per-product data — pivoted to seller)',
4214
4383
  '卖家累计被推荐买家数(新品无产品级数据,按卖家维度)': 'Seller cumulative recommend buyers (pivoted to seller, since new products have no per-product data)',
4215
4384
  '完全随机 · 探索冷门新品': 'Pure random · explore hidden new arrivals',
@@ -4232,14 +4401,11 @@ const _EN = {
4232
4401
  '待发笔记': 'Awaiting note',
4233
4402
  '待评估 reach': 'Evaluating reach',
4234
4403
  '待评估': 'Evaluating',
4235
- '已退款': 'Refunded',
4236
4404
  '已超时': 'Expired',
4237
4405
  '请发布一篇带商品 anchor 的笔记,至少': 'Publish a note with product anchor — need at least',
4238
4406
  '浏览或等效转发/转化': 'views or equivalent shares/conversions',
4239
4407
  '去发笔记 →': 'Write note →',
4240
4408
  '浏览': 'views',
4241
- '转发': 'shares',
4242
- '转化': 'conversions',
4243
4409
  '查看笔记 →': 'View note →',
4244
4410
  '已退': 'Refunded',
4245
4411
  '30 天内未达阈值,活动已超时': 'Did not reach threshold in 30 days, expired',
@@ -4260,10 +4426,8 @@ const _EN = {
4260
4426
  '每个新品的测评免单计划 + 实时 reach 进度': 'Each new product\'s review-refund plan + live reach progress',
4261
4427
  '暂无测评活动': 'No active review campaigns',
4262
4428
  '在商品发布表单底部勾选「开启测评免单」即可': 'Toggle "Enable review-trial refund" at the bottom of product publish form',
4263
- '阈值': 'Threshold',
4264
4429
  '启动': 'Started',
4265
4430
  '进行中': 'Active',
4266
- '已关闭': 'Closed',
4267
4431
  '已申请': 'Claimed',
4268
4432
  '评估中': 'Evaluating',
4269
4433
  '超时': 'Expired',
@@ -4277,7 +4441,6 @@ const _EN = {
4277
4441
  '测评免单申请 + 进度': 'Review-refund claims + progress',
4278
4442
  '测评免单活动': 'Review-refund campaigns',
4279
4443
  'reach 达阈自动退款 · 新品冷启': 'Auto refund at reach threshold · new product cold-start',
4280
- '只能为自己买过的订单发笔记': 'You can only post notes for your own purchases',
4281
4444
  '账号关联(IP/UA 与卖家重叠)': 'Account linked (IP/UA overlaps seller)',
4282
4445
  '已订阅提醒': 'Reminder on',
4283
4446
  '提醒我': 'Remind me',
@@ -4313,21 +4476,16 @@ const _EN = {
4313
4476
  'Welcome 提交': 'Welcome submissions',
4314
4477
  '#welcome 留下的邮箱订阅 + 建议': 'Emails + ideas from #welcome',
4315
4478
  '邮箱订阅': 'Email subscribers',
4316
- '建议': 'Ideas',
4317
- '待处理': 'New',
4479
+ '待处理': 'Pending',
4318
4480
  '已查看': 'Triaged',
4319
- '已处理': 'Resolved',
4320
- '新': 'New',
4321
4481
  '邮箱': 'Email',
4322
4482
  '匿名': 'Anonymous',
4323
- '联系方式': 'Contact',
4324
4483
  '标记已查看': 'Mark triaged',
4325
4484
  '标记已处理': 'Mark resolved',
4326
4485
  '标 Spam': 'Mark spam',
4327
4486
  '已更新': 'Updated',
4328
4487
  '暂无记录': 'No records',
4329
4488
  '留言/建议': 'Ideas',
4330
- '类型': 'Type',
4331
4489
  // P1 安全加固
4332
4490
  'PII 数据:查看本页将被审计记录。请勿截屏外传。': 'PII data: viewing this page is audited. Do not screenshot/forward.',
4333
4491
  '订阅中': 'Active',
@@ -4413,7 +4571,6 @@ const _EN = {
4413
4571
  '已取消订阅': 'Unsubscribed',
4414
4572
  '订阅失败': 'Subscription failed',
4415
4573
  '确认取消推送订阅?': 'Cancel push subscription?',
4416
- '暂无评价': 'No ratings yet',
4417
4574
  '当前浏览器不支持推送通知': 'Push notifications not supported in this browser',
4418
4575
 
4419
4576
  // Wave F-1: 协议指标看板
@@ -4448,10 +4605,7 @@ const _EN = {
4448
4605
  '协议参数': 'Protocol params',
4449
4606
  '费率 / 奖励 / 上限': 'Fees / rewards / limits',
4450
4607
  '修改后立即生效,请谨慎调整': 'Changes take effect immediately — adjust with care',
4451
- '费率': 'Fees',
4452
- '奖励': 'Rewards',
4453
4608
  '上限': 'Limits',
4454
- '通用': 'General',
4455
4609
  '默认值': 'Default',
4456
4610
  '修改于': 'updated',
4457
4611
  '重置': 'Reset',
@@ -4495,7 +4649,6 @@ const _EN = {
4495
4649
  // Wave F audit fixes
4496
4650
  '← 重新查询': '← Search again',
4497
4651
  '鉴权失败': 'Auth failed',
4498
- '范围': 'Range',
4499
4652
  '注意:费率按当前 protocol_params 值追溯计算,历史费率变更未单独快照': 'Note: rates use current protocol_params retroactively; historical rate changes are not snapshotted',
4500
4653
 
4501
4654
  // Wave G-1: 钱包连接
@@ -4508,7 +4661,6 @@ const _EN = {
4508
4661
  '钱包已绑定,无需 24h 冷却': 'Wallet bound; 24h cooldown waived',
4509
4662
 
4510
4663
  // Wave G-4
4511
- '最低': 'Min',
4512
4664
 
4513
4665
  // Wave B-5: 配送时间窗
4514
4666
  '偏好配送时段(可选)': 'Preferred delivery window (optional)',
@@ -4574,19 +4726,15 @@ const _EN = {
4574
4726
  '普通上架': 'Standard listing',
4575
4727
  '标准商品 · 即买即发': 'Standard item · buy & ship immediately',
4576
4728
  '销售 / 商品 / 营销 / 自动化': 'Sales / Products / Marketing / Automation',
4577
- '看板': 'Dashboard',
4578
4729
  '营销': 'Marketing',
4579
4730
  '销售分析': 'Sales insights',
4580
4731
 
4581
4732
  // ─── AddProduct 表单 ─────
4582
- '分类': 'Category',
4583
4733
  '备货时间(小时)': 'Lead time (hours)',
4584
4734
  '外部平台商品全标题': 'External platform product full title',
4585
4735
  '例:德尔玛多功能清洁机BY100S(粘贴自源平台「」标题)': 'e.g. Deerma multi-purpose cleaner BY100S (pasted from source platform title)',
4586
4736
  '材质、尺寸、颜色、适用场景...': 'Material, dimensions, color, use case...',
4587
4737
  '售后与物流(填写越完整,Agent 越优先选择你)': 'After-sales & logistics (the more complete, the more agents prioritize you)',
4588
- '配送范围': 'Delivery region',
4589
- '预计时效': 'Estimated lead time',
4590
4738
  '每行:地区: 天数': 'Per line: region: days',
4591
4739
  '选择类目': 'Select category',
4592
4740
  '面向 Agent 检索,写核心参数而非营销语言': 'Written for agent retrieval — use core parameters, not marketing speak',
@@ -4615,7 +4763,6 @@ const _EN = {
4615
4763
  '图书': 'Books',
4616
4764
  '运动': 'Sports',
4617
4765
  '慈善': 'Charity',
4618
- '许愿池': 'Wish pool',
4619
4766
  '个人': 'Personal',
4620
4767
  '🔥 热门': '🔥 Hot',
4621
4768
  '💰 价格 ↑': '💰 Price ↑',
@@ -4685,26 +4832,18 @@ const _EN = {
4685
4832
  '你已 opted-in。如需查看状态或退出,前往 ': 'You are opted in. To view status or opt out, go to ',
4686
4833
  '你可以随时退出,不影响任何已下单或未来订单。本流程是分享分润的经济关系登记(佣金 / PV / escrow 结算规则;层级按地区配置),请仔细阅读全部条款。': 'You can leave anytime without affecting any past or future orders. This registers the share-commission economic relationship (commission / PV / escrow settlement rules; levels per region config) — please read all terms carefully.',
4687
4834
  '注:本「分享分润 / rewards opt-in」仅为 commission / PV / escrow 经济关系登记,不是贡献资格,与贡献任务(#contribute/tasks)/ 我的共建 无关。RFC-002 同意书可能沿用更早措辞,以本 UI 含义为准。': 'Note: this “share-commission / rewards opt-in” is only a commission / PV / escrow economic-relationship registration — NOT contribution eligibility, and unrelated to the contribution funnel (#contribute/tasks) / My contributions. RFC-002’s consent text may retain older wording; this note governs the UI meaning.',
4688
- '门槛(全部通过才能申请)': 'Eligibility (all must pass to apply)',
4689
4835
  '已完成订单': 'Completed orders',
4690
4836
  'Passkey 已注册': 'Passkey registered',
4691
4837
  '必需': 'required',
4692
4838
  '可选': 'optional',
4693
4839
  '同意文本': 'Consent text',
4694
- '请先完成上述未达标指标,完成后再来申请': 'Please complete the missing items above first, then come back to apply',
4695
4840
  '我已阅读全部条款,理解 commission 与 PV 树结构的合规边界': 'I have read all terms and understand the compliance boundaries of commission + PV tree structure',
4696
- '我自愿申请,无人收买 / 诱导': 'I apply voluntarily — no one is bribing or inducing me',
4697
- '用 Passkey 签发提交申请': 'Submit application with Passkey signature',
4698
- '请通过 Passkey / 生物识别确认...': 'Please confirm via Passkey / biometric...',
4699
- 'Passkey 签发失败:': 'Passkey signature failed:',
4700
- '提交中...': 'Submitting...',
4701
4841
  '✅ 分享分润开通成功': '✅ Revenue sharing activated',
4702
4842
  '已从 escrow 拨回:': 'Restored from escrow:',
4703
4843
  '笔': 'entries',
4704
4844
  '分享分润已开通': 'Active',
4705
4845
  '未激活': 'Never activated',
4706
4846
  '已自动降级(consent 未确认)': 'Auto-downgraded (consent not re-confirmed)',
4707
- '已退出': 'Deactivated',
4708
4847
  'Consent version': 'Consent version',
4709
4848
  '待领 escrow': 'Pending escrow',
4710
4849
  'opt-in 后这笔钱会拨回钱包。30 天未领过期入协议公池。': 'These will be restored to your wallet on opt-in. Unclaimed escrow expires to the protocol reserve (commission_reserve) after 30 days.',
@@ -4776,7 +4915,8 @@ const _EN = {
4776
4915
 
4777
4916
  // G-2: AI 价格建议
4778
4917
  'AI 建议': 'AI tip',
4779
- '建议': 'Suggested',
4918
+ '建议': 'Suggestions',
4919
+ '建议价': 'Suggested price',
4780
4920
  '区间': 'Range',
4781
4921
 
4782
4922
  // G-1: AI 文案
@@ -4789,7 +4929,6 @@ const _EN = {
4789
4929
  '实名认证': 'Identity verification',
4790
4930
  '提升账户可信度': 'Boost account trust',
4791
4931
  '已通过认证': 'Verified',
4792
- '审核中': 'Pending review',
4793
4932
  '被拒绝': 'Rejected',
4794
4933
  '上次认证被拒绝': 'Previous submission rejected',
4795
4934
  '提交真实身份信息提升账户可信度;管理员审核后通过': 'Submit real identity to boost trust; admin reviews',
@@ -4805,7 +4944,6 @@ const _EN = {
4805
4944
  '已提交,等待审核': 'Submitted, awaiting review',
4806
4945
  '请填写完整': 'Fill all fields',
4807
4946
  '证件': 'ID',
4808
- '提交于': 'Submitted at',
4809
4947
  'KYC 审核': 'KYC review',
4810
4948
  '待审实名认证': 'Pending KYC',
4811
4949
  '暂无待审核 KYC': 'No pending KYC',
@@ -4970,7 +5108,6 @@ const _EN = {
4970
5108
  '编辑精选管理': 'Manage picks',
4971
5109
  '暂无精选记录': 'No picks',
4972
5110
  '添加精选': 'Add pick',
4973
- '类型': 'Type',
4974
5111
  '目标 ID': 'Target ID',
4975
5112
  '推荐语': 'Tagline',
4976
5113
  '排序值': 'Sort order',
@@ -5070,7 +5207,6 @@ const _EN = {
5070
5207
 
5071
5208
  // ── 钱包出金取消 ─────────────────────────────────────────────
5072
5209
  '待邮件确认': 'Awaiting email confirmation',
5073
- '取消': 'Cancel',
5074
5210
  '取消该提现申请?已扣余额会立即退回': 'Cancel this withdrawal request? Any deducted balance refunds immediately.',
5075
5211
  '取消失败:': 'Cancel failed: ',
5076
5212
  '已取消,退回 ': 'Cancelled, refunded ',
@@ -5195,7 +5331,7 @@ const _EN = {
5195
5331
  '事件时间线': 'Event Timeline',
5196
5332
  '条': 'events',
5197
5333
  '发起争议': 'Dispute Opened',
5198
- '提交证据': 'Evidence Submitted',
5334
+ '证据提交': 'Evidence Submitted',
5199
5335
  '被告反驳': 'Defendant Response',
5200
5336
  '仲裁员索证': 'Arbitrator Request',
5201
5337
  '仲裁裁决': 'Arbitration Ruling',
@@ -5235,7 +5371,6 @@ const _EN = {
5235
5371
  // W7 客服 ticket-thread
5236
5372
  '工单时间线': 'Ticket Timeline',
5237
5373
  '新建工单': 'Ticket Opened',
5238
- '消息': 'Message',
5239
5374
  '状态变更': 'Status Change',
5240
5375
  '已解决': 'Resolved',
5241
5376
  '已关闭': 'Closed',
@@ -5302,8 +5437,6 @@ const _EN = {
5302
5437
  '单号必填': 'Tracking # required',
5303
5438
  '单号已发送': 'Tracking sent',
5304
5439
  // 商品详情页 → 下单弹层重构(A 阶段)
5305
- '已收藏': 'Saved',
5306
- '收藏': 'Save',
5307
5440
  '已订阅': 'Subscribed',
5308
5441
  '到货提醒': 'Notify',
5309
5442
  '对比': 'Compare',
@@ -5323,7 +5456,6 @@ const _EN = {
5323
5456
  '退款': 'Refund',
5324
5457
  '新卖家': 'New seller',
5325
5458
  '单': 'orders',
5326
- '推荐指数': 'Recommend rate',
5327
5459
  '推荐': 'rec',
5328
5460
  '销售': 'sales',
5329
5461
  '评论区规则': 'Comment rules',
@@ -5363,7 +5495,6 @@ const _EN = {
5363
5495
  '科威特': 'Kuwait',
5364
5496
  '阿曼': 'Oman',
5365
5497
  '伊朗': 'Iran',
5366
- '发布': 'Publish',
5367
5498
  '选择内容形式': 'Choose content type',
5368
5499
  '笔记': 'Note',
5369
5500
  '创作笔记': 'Write note',
@@ -5421,7 +5552,6 @@ const _EN = {
5421
5552
  '生成短码 · 大 V 给外站观众的入口': 'Short code · entry for external viewers',
5422
5553
  '我买过的(可推荐)': 'My purchases (shareable)',
5423
5554
  '全部订单': 'All orders',
5424
- '我的主页': 'My profile',
5425
5555
  '我要分享': 'Ready to share',
5426
5556
  '订单分享': 'Order shares',
5427
5557
  '笔记广场': 'Notes plaza',
@@ -5454,7 +5584,6 @@ const _EN = {
5454
5584
  '分享你的使用体验、推荐理由、注意事项…\n\n💡 第一段写场景 / 第二段写细节 / 第三段写总结,更易被收藏': 'Share your experience, why recommend, what to watch out for…\n\n💡 Tip: scene → details → summary makes it more bookmark-friendly',
5455
5585
  '草稿自动保存': 'Auto-saved draft',
5456
5586
  '放弃这条笔记?草稿会被清空': 'Discard this note? Draft will be cleared',
5457
- '预览': 'Preview',
5458
5587
  '预览(仅你可见 · 关闭后回到编辑)': 'Preview (only you can see · close to edit)',
5459
5588
  '返回编辑': 'Back to edit',
5460
5589
  '正文为空,无法预览': 'Body is empty, cannot preview',
@@ -5466,9 +5595,81 @@ const _EN = {
5466
5595
  '编辑资料': 'Edit profile',
5467
5596
  '(原生内容)': '(Native content)',
5468
5597
  '赞过': 'Liked',
5469
- '收藏': 'Saved',
5598
+ '收藏': 'Save',
5470
5599
  '收藏功能即将上线': 'Bookmarks coming soon',
5471
5600
  '即将上线': 'Coming soon',
5601
+ // ── AI agent demo showcase (app-ai.js): example cards (steps / prompts) ──
5602
+ '搜索 500 WAZ 内的手工 / 健康类商品': 'Search handmade / wellness items under 500 WAZ',
5603
+ '叠加 trusted 卖家筛选': 'Add a trusted-seller filter',
5604
+ '从信誉 + 评价 + 故事性挑出 3 件': 'Pick 3 by reputation + reviews + story',
5605
+ '解析外链 → 提取标题 + 价格': 'Parse the external link → extract title + price',
5606
+ '在 WebAZ 上找同款 / 相似品': 'Find the same / similar item on WebAZ',
5607
+ '比对价格 + 信誉,给出"买 WebAZ"或"原平台"建议': 'Compare price + reputation, advise "buy on WebAZ" or "original platform"',
5608
+ '类目筛 "咖啡豆"': 'Filter category "coffee beans"',
5609
+ '逐个查卖家 4 维信誉指标': 'Check each seller across 4 reputation metrics',
5610
+ '保留达标的,挑出最优 3 件': 'Keep the qualifying ones, pick the best 3',
5611
+ '价格 ≤ 300 + 类目 "耳机"': 'Price ≤ 300 + category "earphones"',
5612
+ '读我的默认配送地址(上海)': 'Read my default shipping address (Shanghai)',
5613
+ '保留备货 ≤ 12h + ship_to 包含上海': 'Keep prep ≤ 12h + ship_to includes Shanghai',
5614
+ '推理': 'Reasoning',
5615
+ '过滤': 'Filter',
5616
+ '我妈妈 60 岁生日,预算 500 WAZ 以内。希望礼物实用又有心意,最好是手工或有故事的。优先选 trusted 卖家。': 'My mom turns 60. Budget within 500 WAZ. I want a gift that is practical and thoughtful — ideally handmade or with a story. Prefer trusted sellers.',
5617
+ '我看上一件商品 https://item.example.com/p/123456 帮我看看 WebAZ 上有没有同款或更便宜的替代品,比较价格和卖家信誉。': 'I saw a product https://item.example.com/p/123456 — check whether WebAZ has the same item or a cheaper alternative, comparing price and seller reputation.',
5618
+ '推荐 3 件咖啡豆,只要 trusted 或以上卖家,退款率低于 5%,最好准时发货率 > 90%。': 'Recommend 3 coffee beans, only trusted+ sellers, refund rate under 5%, ideally on-time shipping over 90%.',
5619
+ '我在上海,找耳机预算 300 WAZ 以内,希望能 24h 内收到,备货时间短的优先。': 'I am in Shanghai, looking for earphones within 300 WAZ, ideally delivered within 24h, shorter prep time preferred.',
5620
+ // ── AI agent chat UI (app-ai.js): task-state hints / quick templates / config ──
5621
+ '帮我找一个适合 [对象/年龄] 的礼物,预算 [金额] WAZ,要 [风格/品类] 类型': 'Find me a gift for [recipient/age], budget [amount] WAZ, [style/category] type',
5622
+ '帮我比较 [商品名/链接],找 WebAZ 上的最优价': 'Compare [product/link] and find the best price on WebAZ',
5623
+ '推荐 3 个 [品类] 商品,优先 trusted+ 卖家 + 高完成率': 'Recommend 3 [category] products, prioritizing trusted+ sellers with high completion rates',
5624
+ '我在 [地区],哪些 [品类] 商品能 24h 内发货?': 'I am in [region] — which [category] products can ship within 24h?',
5625
+ '帮我看下最近 7 天的订单状态,有没有需要确认收货的?': 'Check my order status for the last 7 days — anything to confirm as received?',
5626
+ '我想为 [场景] 配齐一套商品,预算 [金额] WAZ — 帮我规划': 'Assemble a set of products for [scenario], budget [amount] WAZ — help me plan',
5627
+ 'OpenAI 兼容 (chat/completions)': 'OpenAI-compatible (chat/completions)',
5628
+ 'Anthropic 兼容 (messages)': 'Anthropic-compatible (messages)',
5629
+ // ── AI provider catalog (app-ai.js): provider desc / keyHint / model labels ──
5630
+ '平台原生模型 · 注册即用 · 无需 API key': 'Platform-native model · ready on sign-up · no API key',
5631
+ '业内最强代理模型 · 工具调用一流 · 付费': 'Best-in-class agent model · top-tier tool use · paid',
5632
+ 'GPT-5 / GPT-4o 系列 · 付费': 'GPT-5 / GPT-4o series · paid',
5633
+ 'DeepSeek V3 / R1 · 开源协议 · 极高性价比': 'DeepSeek V3 / R1 · open-source license · great value',
5634
+ '阿里 · 有开源版 (Qwen2.5/3 全家) · DashScope 兼容 OpenAI': 'Alibaba · open-source builds (Qwen2.5/3 family) · DashScope OpenAI-compatible',
5635
+ '清华系 · GLM-4-Flash 完全免费 · 中文开发者首选': 'Tsinghua lineage · GLM-4-Flash fully free · top pick for Chinese developers',
5636
+ '长上下文之王 · 128k 稳定 · OpenAI 兼容': 'Long-context king · stable 128k · OpenAI-compatible',
5637
+ '字节 · 火山方舟 · 大厂背书 · OpenAI 兼容': 'ByteDance · Volcano Ark · big-vendor backing · OpenAI-compatible',
5638
+ 'Llama / Mixtral on Groq · 免费层 + 极快推理 · 开源': 'Llama / Mixtral on Groq · free tier + ultra-fast inference · open-source',
5639
+ '一个 key 用所有模型 · 聚合付费': 'One key for all models · aggregated · paid',
5640
+ '本机跑开源模型 · 完全离线 · 零费用 · 隐私最强': 'Run open models locally · fully offline · zero cost · best privacy',
5641
+ 'dashscope.console.aliyun.com → API-KEY 管理': 'dashscope.console.aliyun.com → API-KEY management',
5642
+ 'open.bigmodel.cn → 用户中心 → API Keys': 'open.bigmodel.cn → User Center → API Keys',
5643
+ 'platform.moonshot.cn → 用户中心 → API Key': 'platform.moonshot.cn → User Center → API Key',
5644
+ '火山引擎 → 方舟控制台 → API Key(注意:模型 ID 是 endpoint id 形式 ep-xxx)': 'Volcano Engine → Ark console → API Key (note: model ID is an endpoint id, ep-xxx)',
5645
+ 'console.groq.com → API Keys (有免费层)': 'console.groq.com → API Keys (free tier available)',
5646
+ '本地需先 `ollama serve`,默认端口 11434': 'Run `ollama serve` locally first; default port 11434',
5647
+ 'Claude Opus 4.7 (最强)': 'Claude Opus 4.7 (strongest)',
5648
+ 'Claude Sonnet 4.6 (均衡)': 'Claude Sonnet 4.6 (balanced)',
5649
+ 'Claude Haiku 4.5 (快/省,推荐)': 'Claude Haiku 4.5 (fast/cheap, recommended)',
5650
+ 'GPT-5 (最强)': 'GPT-5 (strongest)',
5651
+ 'GPT-5 mini (推荐)': 'GPT-5 mini (recommended)',
5652
+ 'GPT-4o mini (经济)': 'GPT-4o mini (budget)',
5653
+ 'DeepSeek V3 (聊天,推荐)': 'DeepSeek V3 (chat, recommended)',
5654
+ 'DeepSeek R1 (推理强)': 'DeepSeek R1 (strong reasoning)',
5655
+ 'Qwen-Max (旗舰)': 'Qwen-Max (flagship)',
5656
+ 'Qwen-Plus (推荐)': 'Qwen-Plus (recommended)',
5657
+ 'Qwen-Turbo (经济)': 'Qwen-Turbo (budget)',
5658
+ 'Qwen-VL-Max (视觉)': 'Qwen-VL-Max (vision)',
5659
+ 'GLM-4-Flash (完全免费,推荐)': 'GLM-4-Flash (fully free, recommended)',
5660
+ 'GLM-4-Plus (旗舰,付费)': 'GLM-4-Plus (flagship, paid)',
5661
+ 'GLM-4-Air (经济)': 'GLM-4-Air (budget)',
5662
+ 'GLM-Z1-Air (推理)': 'GLM-Z1-Air (reasoning)',
5663
+ 'Moonshot v1 8k (经济)': 'Moonshot v1 8k (budget)',
5664
+ 'Moonshot v1 32k (推荐)': 'Moonshot v1 32k (recommended)',
5665
+ 'Moonshot v1 128k (长文)': 'Moonshot v1 128k (long-context)',
5666
+ 'Doubao Pro 32k (旗舰,需替换为 ep-xxx)': 'Doubao Pro 32k (flagship, replace with ep-xxx)',
5667
+ 'Doubao Pro 128k (长文)': 'Doubao Pro 128k (long-context)',
5668
+ 'Doubao Lite 32k (经济)': 'Doubao Lite 32k (budget)',
5669
+ 'Llama 3.3 70B (推荐)': 'Llama 3.3 70B (recommended)',
5670
+ 'Llama 3.1 8B (极快)': 'Llama 3.1 8B (ultra-fast)',
5671
+ 'Llama 3.3 70B (开源)': 'Llama 3.3 70B (open-source)',
5672
+ 'Gemini 2.0 Flash (免费)': 'Gemini 2.0 Flash (free)',
5472
5673
  '还没赞过任何笔记 — 看到喜欢的就点 ❤': "Haven't liked any notes — tap ❤ on notes you enjoy",
5473
5674
  '还没收藏任何笔记 — 看到想保存的就点 ★': "Haven't bookmarked any notes — tap ★ on notes you want to keep",
5474
5675
  '已收藏': 'Bookmarked',
@@ -5539,7 +5740,6 @@ const _EN = {
5539
5740
  '还没有已完成订单': 'No completed orders yet',
5540
5741
  '完成首笔购买后可在这里一键推荐': 'After first purchase, recommend from here',
5541
5742
  '已分享': 'Shared',
5542
- '次': 'times',
5543
5743
  '带来': 'Brought',
5544
5744
  '写笔记': 'Note',
5545
5745
  '链接': 'Link',
@@ -5649,7 +5849,6 @@ const _EN = {
5649
5849
  '撤销原因(可空):': 'Revocation reason (optional):',
5650
5850
  '已撤销': 'Revoked',
5651
5851
  '已撤销于': 'Revoked at',
5652
- '未声明': 'Undeclared',
5653
5852
  '次调用': 'calls',
5654
5853
  '信任分': 'trust score',
5655
5854
  '新人': 'new',
@@ -5694,7 +5893,6 @@ const _EN = {
5694
5893
  '协议参与': 'Protocol participation',
5695
5894
  '判例库': 'Judgments',
5696
5895
  '我的 Agent 等级': 'My Agent tier',
5697
- '详情': 'Details',
5698
5896
  '争议判决公开': 'Public dispute rulings',
5699
5897
  'RFQ 自动报价': 'Auto-bid on RFQs',
5700
5898
  '未发布': 'None',
@@ -5734,7 +5932,8 @@ const _EN = {
5734
5932
  '去授权': 'Grant location',
5735
5933
  '最近发起的拍卖与二手 · 按时间倒序': 'Recent auctions & second-hand · by time',
5736
5934
  '上架了': 'listed',
5737
- '发起拍卖': 'opened auction',
5935
+ '发起拍卖': 'Start Auction',
5936
+ '发起了拍卖': 'opened an auction',
5738
5937
  '发布二手': 'posted second-hand',
5739
5938
  '次出价': 'bids',
5740
5939
  '暂无出价 · 先到先得': 'No bids yet · first-come-first-served',
@@ -5746,7 +5945,8 @@ const _EN = {
5746
5945
  '最近的买家求购单 · 商家可点击进入报价': "Recent buyer RFQs · sellers tap to bid",
5747
5946
  '我来发一条': 'Post one',
5748
5947
  '暂无求购动态': 'No RFQ activity',
5749
- '求购': 'requested',
5948
+ '求购': 'Buy request',
5949
+ '想买': 'wants to buy',
5750
5950
  '个报价': 'bids',
5751
5951
  '等待商家报价': 'Awaiting seller bids',
5752
5952
  '急': 'urgent',
@@ -5763,7 +5963,6 @@ const _EN = {
5763
5963
  '指南': 'Guide',
5764
5964
  '清单': 'Checklist',
5765
5965
  '次': 'use',
5766
- '审核中': 'Under review',
5767
5966
  '已上架': 'Listed',
5768
5967
  '已退回': 'Returned',
5769
5968
  '已下架': 'Delisted',
@@ -5879,6 +6078,7 @@ const _EN = {
5879
6078
  '商品图片(至少 1 张)': 'Product image (at least 1)',
5880
6079
  '商品图片': 'Product image',
5881
6080
  '分类': 'Category',
6081
+ '商品类型': 'Product type',
5882
6082
  '退货天数(>0)': 'Return days (>0)',
5883
6083
  '备货时效': 'Handling time',
5884
6084
  '配送范围': 'Ship regions',
@@ -5891,8 +6091,8 @@ const _EN = {
5891
6091
  '英文标题(跨境)': 'English title (cross-border)',
5892
6092
 
5893
6093
  // ── #1047 pre-launch 横幅 ────────────────────────────────────
5894
- '协议尚未公开上线 · 数据为测试 / demo · 请勿据此投资或承诺第三方':
5895
- 'Pre-launch protocol · data is test / demo only · do not use for investment or third-party commitments',
6094
+ '直付(direct pay)已上线,是你与卖家的真实场外付款;WebAZ 非托管——不代持、不担保、不退款 · 平台托管(escrow)尚未上线(模拟测试币)· 价格按 USDC 计价仅供展示 · 邀请制预发布,勿据此投资或向第三方承诺':
6095
+ 'Direct pay is live — a real off-platform payment between you and the seller; WebAZ is non-custodial: it does not hold, guarantee, or refund it · platform escrow is not yet live (simulated test tokens) · USDC prices are display units only · invite-only pre-launch — do not invest or make third-party commitments based on this',
5896
6096
  '详情': 'Details',
5897
6097
 
5898
6098
  // ── Agent 护照 Phase 4 签名导出 ──────────────────────────────
@@ -5929,7 +6129,6 @@ const _EN = {
5929
6129
  '等': 'wait',
5930
6130
  '用 Passkey 签发提交申请': 'Sign with Passkey to submit application',
5931
6131
  '请通过 Passkey / 生物识别确认...': 'Please confirm via Passkey / biometric...',
5932
- 'Passkey 签发失败:': 'Passkey signing failed:',
5933
6132
  '门槛未达标': 'Requirements not met',
5934
6133
  '申请已提交,等待 maintainer review': 'Application submitted, waiting for maintainer review',
5935
6134
 
@@ -5997,7 +6196,8 @@ const _EN = {
5997
6196
  '所有 governance application 均已 active 或未达 onboarding 完成':
5998
6197
  'All governance applications are either active or onboarding not complete',
5999
6198
  '返回 admin': 'Back to admin',
6000
- '申请': 'Application',
6199
+ '申请': 'Apply',
6200
+ '申请配额': 'Requested',
6001
6201
  'Region': 'Region',
6002
6202
  'Email': 'Email',
6003
6203
  '题目': 'Quiz',
@@ -6057,7 +6257,8 @@ const _EN = {
6057
6257
  '已 assigned 但未完成的 case 必须先完成 / 转交,否则无法卸任':
6058
6258
  'Assigned but unresolved cases must be completed / transferred before resigning',
6059
6259
  '输入': 'Type',
6060
- '确认': 'to confirm',
6260
+ '确认': 'Confirm',
6261
+ '以确认': 'to confirm',
6061
6262
  '取消': 'Cancel',
6062
6263
  'Passkey 签发卸任': 'Sign resignation with Passkey',
6063
6264
  '请求 Passkey...': 'Requesting Passkey...',