@seasonkoh/webaz 0.1.28 → 0.1.30

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 (198) hide show
  1. package/README.md +3 -2
  2. package/README.zh-CN.md +7 -6
  3. package/dist/bond-refund-blockers.js +50 -0
  4. package/dist/bond-slash.js +100 -0
  5. package/dist/bond-terms.js +31 -0
  6. package/dist/currency.js +16 -0
  7. package/dist/deposit-rails.js +52 -0
  8. package/dist/direct-pay-aml-monitor.js +67 -0
  9. package/dist/direct-pay-aml-review.js +40 -0
  10. package/dist/direct-pay-base-bond-entry.js +5 -0
  11. package/dist/direct-pay-bond-rail-clearance.js +99 -0
  12. package/dist/direct-pay-cancel-refund.js +160 -0
  13. package/dist/direct-pay-compliance-ingress.js +145 -0
  14. package/dist/direct-pay-controls.js +136 -0
  15. package/dist/direct-pay-create.js +231 -0
  16. package/dist/direct-pay-deferral-quota.js +43 -0
  17. package/dist/direct-pay-disclosures.js +50 -0
  18. package/dist/direct-pay-eligibility.js +46 -0
  19. package/dist/direct-pay-fee-ar.js +241 -0
  20. package/dist/direct-pay-fee-prepay-request.js +80 -0
  21. package/dist/direct-pay-launch-readiness.js +108 -0
  22. package/dist/direct-pay-launch-summary.js +68 -0
  23. package/dist/direct-pay-ledger.js +94 -0
  24. package/dist/direct-pay-returns.js +104 -0
  25. package/dist/direct-pay-stock.js +9 -0
  26. package/dist/direct-receive-account-qr.js +77 -0
  27. package/dist/direct-receive-accounts.js +82 -0
  28. package/dist/direct-receive-deferral.js +171 -0
  29. package/dist/direct-receive-deposits.js +365 -0
  30. package/dist/direct-receive-payment-instruction.js +26 -0
  31. package/dist/free-shipping.js +37 -0
  32. package/dist/fx-rates.js +78 -0
  33. package/dist/layer0-foundation/L0-1-database/schema.js +777 -1
  34. package/dist/layer0-foundation/L0-2-state-machine/engine.js +1 -0
  35. package/dist/layer0-foundation/L0-2-state-machine/genuine-sale.js +15 -5
  36. package/dist/layer0-foundation/L0-2-state-machine/transitions.js +114 -0
  37. package/dist/layer0-foundation/L0-5-manifest/manifest.js +1 -1
  38. package/dist/layer1-agent/L1-1-mcp-server/cli.js +64 -0
  39. package/dist/layer1-agent/L1-1-mcp-server/network-mode.js +11 -0
  40. package/dist/layer1-agent/L1-1-mcp-server/server.js +99 -32
  41. package/dist/layer2-business/L2-6-notifications/notification-engine.js +110 -41
  42. package/dist/layer3-trust/L3-1-dispute-engine/dispute-engine.js +133 -31
  43. package/dist/layer3-trust/L3-1-dispute-engine/evidence-storage.js +16 -4
  44. package/dist/layer3-trust/L3-1-dispute-engine/mutual-cancel.js +156 -0
  45. package/dist/layer4-economics/L4-4-skill-market/skill-engine.js +4 -4
  46. package/dist/ledger.js +12 -3
  47. package/dist/mcp.js +23 -4
  48. package/dist/merchant-bond-domain.js +64 -0
  49. package/dist/merchant-bond-exposure.js +78 -0
  50. package/dist/merchant-bond-watcher.js +26 -0
  51. package/dist/payment-rails.js +29 -0
  52. package/dist/platform-receive-accounts.js +94 -0
  53. package/dist/product-verification.js +93 -0
  54. package/dist/pwa/acp-feed.js +3 -2
  55. package/dist/pwa/arbitration-read-admin.js +37 -0
  56. package/dist/pwa/arbitrator-lifecycle.js +100 -0
  57. package/dist/pwa/contract-fingerprint.js +18 -0
  58. package/dist/pwa/direct-pay-guards.js +20 -0
  59. package/dist/pwa/direct-pay-order-redaction.js +42 -0
  60. package/dist/pwa/endpoint-actions.js +3 -0
  61. package/dist/pwa/human-presence.js +2 -6
  62. package/dist/pwa/public/app-account.js +9 -9
  63. package/dist/pwa/public/app-admin-disputes.js +55 -0
  64. package/dist/pwa/public/app-agent-appeal.js +90 -0
  65. package/dist/pwa/public/app-agent-approvals.js +93 -0
  66. package/dist/pwa/public/app-agent-pair.js +127 -0
  67. package/dist/pwa/public/app-ai.js +10 -10
  68. package/dist/pwa/public/app-arbitrator-admin.js +87 -0
  69. package/dist/pwa/public/app-arbitrator-entry.js +9 -0
  70. package/dist/pwa/public/app-bond-deferral-ui.js +9 -0
  71. package/dist/pwa/public/app-bond-refund-ui.js +66 -0
  72. package/dist/pwa/public/app-bond-slash-ui.js +74 -0
  73. package/dist/pwa/public/app-bond-terms-ui.js +23 -0
  74. package/dist/pwa/public/app-bond-ui.js +108 -0
  75. package/dist/pwa/public/app-chat-poll.js +29 -0
  76. package/dist/pwa/public/app-contribution-hub.js +23 -0
  77. package/dist/pwa/public/app-create-kinds.js +17 -0
  78. package/dist/pwa/public/app-direct-pay-accounts.js +141 -0
  79. package/dist/pwa/public/app-direct-pay-buyer.js +72 -0
  80. package/dist/pwa/public/app-direct-pay-cancel-refund.js +72 -0
  81. package/dist/pwa/public/app-direct-pay-compliance.js +67 -0
  82. package/dist/pwa/public/app-direct-pay-copy.js +12 -0
  83. package/dist/pwa/public/app-direct-pay-deferral-admin.js +72 -0
  84. package/dist/pwa/public/app-direct-pay-deferral.js +61 -0
  85. package/dist/pwa/public/app-direct-pay-fee-center.js +33 -0
  86. package/dist/pwa/public/app-direct-pay-fee-history.js +39 -0
  87. package/dist/pwa/public/app-direct-pay-fee-ops.js +112 -0
  88. package/dist/pwa/public/app-direct-pay-fee-request.js +81 -0
  89. package/dist/pwa/public/app-direct-pay-fee-requests-admin.js +70 -0
  90. package/dist/pwa/public/app-direct-pay-memo.js +14 -0
  91. package/dist/pwa/public/app-direct-pay-negotiation.js +35 -0
  92. package/dist/pwa/public/app-direct-pay-pay.js +15 -0
  93. package/dist/pwa/public/app-direct-pay-paymodal.js +32 -0
  94. package/dist/pwa/public/app-direct-pay-product-verify.js +103 -0
  95. package/dist/pwa/public/app-direct-pay-readiness.js +38 -0
  96. package/dist/pwa/public/app-direct-pay-reconcile.js +19 -0
  97. package/dist/pwa/public/app-direct-pay-returns.js +56 -0
  98. package/dist/pwa/public/app-direct-pay-reveal.js +82 -0
  99. package/dist/pwa/public/app-direct-pay-sales-report.js +70 -0
  100. package/dist/pwa/public/app-direct-pay-store-verify.js +100 -0
  101. package/dist/pwa/public/app-direct-pay.js +226 -0
  102. package/dist/pwa/public/app-discover.js +20 -20
  103. package/dist/pwa/public/app-dispute-close-ui.js +38 -0
  104. package/dist/pwa/public/app-external-links.js +32 -0
  105. package/dist/pwa/public/app-free-shipping-ui.js +29 -0
  106. package/dist/pwa/public/app-gmv-rail-split.js +12 -0
  107. package/dist/pwa/public/app-listing-commerce-ui.js +72 -0
  108. package/dist/pwa/public/app-listings.js +4 -4
  109. package/dist/pwa/public/app-mutual-cancel.js +54 -0
  110. package/dist/pwa/public/app-notif-templates-orders.js +43 -0
  111. package/dist/pwa/public/app-notif-templates.js +22 -0
  112. package/dist/pwa/public/app-order-accept-ui.js +158 -0
  113. package/dist/pwa/public/app-order-errors.js +50 -0
  114. package/dist/pwa/public/app-order-labels.js +19 -0
  115. package/dist/pwa/public/app-order-rail-filter.js +26 -0
  116. package/dist/pwa/public/app-platform-receive-accounts.js +140 -0
  117. package/dist/pwa/public/app-poll-governor.js +22 -0
  118. package/dist/pwa/public/app-prelaunch-waz.js +39 -0
  119. package/dist/pwa/public/app-price.js +55 -0
  120. package/dist/pwa/public/app-product-media.js +15 -0
  121. package/dist/pwa/public/app-profile.js +10 -10
  122. package/dist/pwa/public/app-purchase-terms-ui.js +68 -0
  123. package/dist/pwa/public/app-sale-regions-ui.js +38 -0
  124. package/dist/pwa/public/app-seller.js +5 -5
  125. package/dist/pwa/public/app-shop.js +19 -19
  126. package/dist/pwa/public/app-trade-tax-ui.js +33 -0
  127. package/dist/pwa/public/app.js +264 -295
  128. package/dist/pwa/public/i18n.js +1068 -197
  129. package/dist/pwa/public/index.html +58 -0
  130. package/dist/pwa/public/openapi.json +1845 -653
  131. package/dist/pwa/public/style.css +3 -0
  132. package/dist/pwa/routes/admin-analytics.js +4 -2
  133. package/dist/pwa/routes/admin-direct-receive-deposits.js +533 -0
  134. package/dist/pwa/routes/admin-protocol-params.js +16 -0
  135. package/dist/pwa/routes/admin-reports.js +31 -5
  136. package/dist/pwa/routes/agent-governance.js +1 -1
  137. package/dist/pwa/routes/agent-grants.js +253 -32
  138. package/dist/pwa/routes/analytics.js +2 -0
  139. package/dist/pwa/routes/arbitrator.js +67 -14
  140. package/dist/pwa/routes/bond-seller.js +162 -0
  141. package/dist/pwa/routes/buyer-feeds.js +2 -1
  142. package/dist/pwa/routes/chat.js +6 -1
  143. package/dist/pwa/routes/dashboards.js +2 -1
  144. package/dist/pwa/routes/direct-pay-availability.js +196 -0
  145. package/dist/pwa/routes/direct-pay-cancel-refund.js +111 -0
  146. package/dist/pwa/routes/direct-pay-disclosure-acks.js +79 -0
  147. package/dist/pwa/routes/direct-pay-pending-accept.js +222 -0
  148. package/dist/pwa/routes/direct-pay-returns.js +74 -0
  149. package/dist/pwa/routes/direct-pay-timeouts.js +248 -0
  150. package/dist/pwa/routes/direct-receive-accounts.js +155 -0
  151. package/dist/pwa/routes/direct-receive-payment-instructions.js +45 -0
  152. package/dist/pwa/routes/disputes-read.js +20 -6
  153. package/dist/pwa/routes/disputes-write.js +91 -33
  154. package/dist/pwa/routes/external-anchors.js +4 -2
  155. package/dist/pwa/routes/fee-prepay-requests.js +66 -0
  156. package/dist/pwa/routes/fx.js +12 -0
  157. package/dist/pwa/routes/governance-onboarding.js +46 -8
  158. package/dist/pwa/routes/leaderboard.js +47 -9
  159. package/dist/pwa/routes/listings.js +2 -2
  160. package/dist/pwa/routes/logistics.js +6 -2
  161. package/dist/pwa/routes/manifests.js +38 -0
  162. package/dist/pwa/routes/me-data.js +5 -2
  163. package/dist/pwa/routes/mutual-cancel.js +62 -0
  164. package/dist/pwa/routes/orders-action.js +297 -16
  165. package/dist/pwa/routes/orders-create.js +21 -6
  166. package/dist/pwa/routes/orders-read.js +106 -8
  167. package/dist/pwa/routes/p2p-products.js +2 -2
  168. package/dist/pwa/routes/platform-receive-accounts.js +111 -0
  169. package/dist/pwa/routes/products-create.js +15 -4
  170. package/dist/pwa/routes/products-links.js +34 -0
  171. package/dist/pwa/routes/products-list.js +2 -1
  172. package/dist/pwa/routes/products-update.js +37 -3
  173. package/dist/pwa/routes/profile-identity.js +4 -2
  174. package/dist/pwa/routes/promoter.js +3 -0
  175. package/dist/pwa/routes/referral.js +4 -0
  176. package/dist/pwa/routes/returns.js +60 -4
  177. package/dist/pwa/routes/rewards-apply.js +10 -5
  178. package/dist/pwa/routes/rewards-clearing-mature.js +96 -0
  179. package/dist/pwa/routes/rewards-escrow-expire.js +6 -2
  180. package/dist/pwa/routes/seller-directpay-report.js +110 -0
  181. package/dist/pwa/routes/seller-quota.js +5 -1
  182. package/dist/pwa/routes/shipping-templates.js +219 -0
  183. package/dist/pwa/routes/shops.js +2 -1
  184. package/dist/pwa/routes/snf.js +4 -1
  185. package/dist/pwa/routes/url-claim.js +2 -2
  186. package/dist/pwa/routes/users-public.js +8 -0
  187. package/dist/pwa/routes/wallet-read.js +3 -0
  188. package/dist/pwa/routes/webauthn.js +3 -3
  189. package/dist/pwa/server.js +112 -132
  190. package/dist/runtime/agent-grant-scopes.js +69 -1
  191. package/dist/runtime/webaz-schema-helpers.js +161 -3
  192. package/dist/sale-regions.js +116 -0
  193. package/dist/shipping-templates.js +119 -0
  194. package/dist/store-verification.js +77 -0
  195. package/dist/trade-tax.js +99 -0
  196. package/dist/trade-terms.js +76 -0
  197. package/dist/version.js +1 -1
  198. package/package.json +128 -2
@@ -1,9 +1,505 @@
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
+ // ── 仲裁员管理 admin UI(app-arbitrator-admin.js,PR-F)──
21
+ '仲裁员管理': 'Arbitrator management',
22
+ '授权真人仲裁员(唯一授权源=active 白名单)。目标须已注册 Passkey、非本案当事人、非 agent/系统账号。授权/暂停/撤销均需你现场 Passkey,后端留痕。': 'Grant real human arbitrators (the sole authorization source is the active whitelist). The target must have a registered Passkey, not be a party to the case, and not be an agent/system account. Grant/suspend/revoke each require your live Passkey and are audited server-side.',
23
+ '授权/暂停/撤销真人仲裁员(唯一授权源=active 白名单,需现场 Passkey)': 'Grant / suspend / revoke real human arbitrators (sole source = active whitelist; live Passkey required)',
24
+ '授权新仲裁员': 'Grant a new arbitrator',
25
+ 'user_id 或 @handle': 'user_id or @handle',
26
+ '授权(真人 Passkey)': 'Grant (live Passkey)',
27
+ '仲裁员名册': 'Arbitrator roster',
28
+ '暂无仲裁员': 'No arbitrators yet',
29
+ '内部账号(is_system)': 'Internal account (is_system)',
30
+ '暂停于': 'Suspended at',
31
+ '撤销于': 'Revoked at',
32
+ '撤销(终态)': 'Revoke (terminal)',
33
+ '已永久撤销,不可再授权': 'Permanently revoked; cannot be re-granted',
34
+ '请输入 user_id 或 @handle': 'Enter a user_id or @handle',
35
+ '已授权': 'Granted',
36
+ '撤销是终态,不可再授权该用户。确定撤销?': 'Revoke is terminal — this user can never be re-granted. Confirm revoke?',
37
+ // ── 补齐缺失的 _EN parity(test-i18n-parity.ts 守;含 admin/PV 标签)──
38
+ '协议运营': 'Protocol operations',
39
+ '参与记录(PV)流水': 'Participation ledger (PV)',
40
+ '系统将自动安排积分树位置。一旦加入永久不变。': 'The system assigns your points-tree position automatically; once joined, it is permanent.',
41
+ '参与记录用户': 'Participation-ledger users',
42
+ '协议运营 / 注册门控 / 佣金榜': 'Protocol ops / Registration gating / Commission board',
43
+ 'GitHub 关联': 'GitHub link',
44
+ // ── 平台服务费预充值申请历史(app-direct-pay-fee-history.js)──
45
+ '申请时间': 'Requested at',
46
+ '审核人': 'Reviewed by',
47
+ '审核时间': 'Reviewed at',
48
+ '审核备注': 'Review note',
49
+ '入账流水': 'Credit record',
50
+ // ── 交易流程错误码双语(app-order-errors.js orderErrorLookup;test-order-errors.ts 守 parity)──
51
+ '只能操作自己的订单': 'You can only act on your own order',
52
+ '你不是本订单的卖家': 'You are not the seller of this order',
53
+ '你不是本订单的物流方': 'You are not the logistics party for this order',
54
+ '只有买卖双方可操作': 'Only the buyer or seller can do this',
55
+ '运营角色账号不可参与订单流转': 'Operational-role accounts cannot take part in orders',
56
+ '仅可在待发货阶段进行此操作': 'Only available while the order is awaiting shipment',
57
+ '仅可在货款协商阶段进行此操作': 'Only available during payment negotiation',
58
+ '仅可在争议阶段撤回': 'Can only be withdrawn while the order is under dispute',
59
+ '该操作仅适用于直付订单': 'This action applies to Direct Pay orders only',
60
+ '该操作仅适用于直付订单的付款窗口/协商阶段': 'Only available during a Direct Pay order’s payment window or negotiation',
61
+ '风险披露仅适用于直付订单': 'Risk disclosure applies to Direct Pay orders only',
62
+ '该订单不是面交订单': 'This is not an in-person (meet-up) order',
63
+ '当前订单状态不可确认面交完成': 'This order cannot be confirmed as in-person in its current state',
64
+ '存在进行中的验证任务,暂不可确认': 'A verification task is in progress; you can’t confirm yet',
65
+ '买家响应宽限期未过,暂不可申请取消': 'The buyer-response grace period hasn’t elapsed; you can’t request cancellation yet',
66
+ '争议已裁定,不可撤回': 'The dispute has already been ruled and cannot be withdrawn',
67
+ '仅可撤回由货款协商升级的仲裁;履约类争议(货损/货不对版)须经仲裁裁定': 'Only arbitration escalated from payment negotiation can be withdrawn; fulfilment disputes (damage / not-as-described) must be ruled',
68
+ '撤回失败,请重试': 'Withdrawal failed, please try again',
69
+ '取消失败,请重试': 'Cancellation failed, please try again',
70
+ '直付完成结算失败,订单未完成,可重试': 'Direct Pay settlement failed; the order was not completed — you can retry',
71
+ '本订单不是可举证的临时判责状态': 'This order is not in a contestable provisional-fault state',
72
+ '已在仲裁中,无需重复发起': 'Already under arbitration; no need to start again',
73
+ '举证窗口已过期': 'The evidence window has closed',
74
+ '拒单理由无效': 'Invalid decline reason',
75
+ '当前状态不可拒单': 'The order cannot be declined in its current state',
76
+ '拒单结算失败,请重试': 'Decline settlement failed, please try again',
77
+ '订单不存在': 'Order not found',
78
+ '缺少订单号': 'Missing order ID',
79
+ '无效的披露阶段参数': 'Invalid disclosure stage',
80
+ // ── Direct Pay (Rail 1) — PR-5c availability/control reason copy (off-platform; WebAZ does not custody/guarantee/refund) ──
81
+ '直付当前未开放': 'Direct Pay is not open yet',
82
+ '直付暂停受理(运营维护中),请稍后再试': 'Direct Pay is paused (operational maintenance) — please try again later',
83
+ '直付在你所在地区暂未开放': 'Direct Pay is not available in your region yet',
84
+ '超出直付单笔上限(按 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)',
85
+ '该卖家直付已被暂停': "This seller's Direct Pay is currently suspended",
86
+ // ── Direct Pay (Rail 1) — PR-4f-b bilingual UI wiring (non-custodial; WebAZ does not custody/verify/route) ──
87
+ '需完成 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',
88
+ '我知道了': 'Got it',
89
+ '需先完成 D1/D2 Passkey 风险确认,确认后才显示卖家收款说明。': 'Complete the D1/D2 Passkey risk confirmations first; the seller\'s payment instruction is shown only afterwards.',
90
+ '完成风险确认': 'Complete risk confirmation',
91
+ '直付的风险确认与付款标记需要 Passkey。前往「我的 → 安全与存储」注册一个?': 'Direct Pay risk confirmation and payment marking require a Passkey. Go to My → Security & Storage to register one?',
92
+ '前往注册 Passkey': 'Go register a Passkey',
93
+ '需要 Passkey。': 'Passkey required. ',
94
+ '前往「我的 → 安全与存储」注册 →': 'Register in My → Security & Storage →',
95
+ '支付方式': 'Payment method',
96
+ '托管(Escrow,默认)': 'Escrow (default)',
97
+ '托管(Escrow,模拟测试币)': 'Escrow (simulated test currency)',
98
+ '本金由协议托管,确认收货后释放给卖家': 'Principal held by the protocol, released to the seller after you confirm receipt',
99
+ '直付(Direct Pay · 非托管)': 'Direct Pay (non-custodial)',
100
+ '你直接付款给卖家(场外),本金不经 WebAZ': 'You pay the seller directly (off-platform); the principal never passes through WebAZ',
101
+ '直付风险提醒:非担保交易 —— WebAZ 不托管本金、无退款能力、不代维权,也不验证卖家的付款方式或币种,仅对卖家有信誉处罚权。下单后需用 Passkey 完成两次风险确认,再标记付款。': 'Direct Pay risk notice — non-guaranteed transaction: WebAZ does not custody the principal, has NO refund capability, does not pursue claims on your behalf, and does not verify the seller\'s payment method or currency — it can only apply reputation penalties against the seller. After placing the order you must complete two risk confirmations with a Passkey, then mark the payment.',
102
+ '我已阅读并理解上述风险': 'I have read and understood the risks above',
103
+ '风险披露': 'Risk disclosure',
104
+ '直付订单(非托管)': 'Direct Pay order (non-custodial)',
105
+ '本金不经 WebAZ —— 你直接付款给卖家(场外)': 'Principal never passes through WebAZ — you pay the seller directly (off-platform)',
106
+ '非担保交易:WebAZ 不托管本金、无退款能力,仅对卖家有信誉处罚权': 'Non-guaranteed transaction: WebAZ does not custody the principal and has NO refund capability — it can only apply reputation penalties against the seller',
107
+ // 融合付款弹窗 + 首单 UX(本次优化)
108
+ '了解直接付款(需 Passkey)': 'I understand direct pay (Passkey required)',
109
+ '下一步': 'Next',
110
+ '请按以下信息付款': 'Pay using the details below',
111
+ '风险确认已完成。这是卖家收款信息(下单时快照,WebAZ 不验证也不经手)。请【场外】完成付款后回来标记。': 'Risk confirmation complete. These are the seller\'s payment details (snapshot at order time; WebAZ neither verifies nor handles them). Pay OFF-PLATFORM, then come back to mark it.',
112
+ '收款账号 / 说明': 'Payee account / instructions',
113
+ '应付金额': 'Amount to pay',
114
+ '付款附言(务必填写,用于卖家核对)': 'Payment memo (required — the seller reconciles by this)',
115
+ '付款时请在银行/收款App的附言/备注里填入上面的参考号;完成付款后点下方按钮(需 Passkey)。': 'Put the reference above into your bank / payment-app memo field; after paying, tap the button below (Passkey required).',
116
+ '稍后在订单页处理': 'Handle later on the order page',
117
+ '直付的风险确认与付款标记需要 Passkey。你还没有注册 Passkey,前往「我的 → 安全与存储」注册一个?': 'Direct-pay risk confirmation and payment marking need a Passkey. You have not registered one yet — go to "Me → Security & Storage" to register?',
118
+ '验证未完成,请重试': 'Verification not completed, please try again',
119
+ '卖家收款说明来自卖家自填,WebAZ 不验证付款方式或币种': 'The payment instruction is provided by the seller; WebAZ does not verify the payment method or currency',
120
+ '卖家收款说明(下单时快照)': 'Seller payment instruction (snapshot at order time)',
121
+ '自动隐藏倒计时': 'Auto-hide in',
122
+ '付款时请在附言/备注填入(便于卖家核对)': 'When paying, put this in the transfer memo/reference (helps the seller match it)',
123
+ '此参考号系统生成、不可修改;相同金额时卖家靠它区分付款方,标记"我已付款"时自动记入订单流程。': 'This reference is system-generated and cannot be edited; when amounts are identical the seller uses it to tell payers apart, and it is recorded to the order timeline when you tap "I have paid".',
124
+ '复制收款说明': 'Copy payment details',
125
+ '付款参考': 'Payment reference',
126
+ // 直付取消退款握手(付款后·发货前)
127
+ '取消订单并退款(直付)': 'Cancel order & refund (direct pay)',
128
+ '直付非托管:平台不持货款,退款由卖家在协议外完成,双方在此握手确认,订单无责取消。': 'Direct pay is non-custodial: the platform never holds the payment. The seller refunds you off-protocol; both sides confirm the handshake here and the order is cancelled with no fault to either party.',
129
+ '卖家已声明退款': 'Seller says the refund has been sent',
130
+ '请先核实退款已到账;未收到请勿确认,可发起争议。': 'Verify the refund has actually arrived first; if not received, do NOT confirm — you can open a dispute.',
131
+ '已收到退款,确认取消订单(需 Passkey)': 'Refund received — confirm & cancel order (Passkey)',
132
+ '已向卖家发出取消退款请求,等待响应(超期可重新申请或发起争议)。': 'Cancel-refund request sent to the seller; awaiting response (if it lapses you may re-request or open a dispute).',
133
+ '撤回请求': 'Withdraw request',
134
+ '卖家拒绝了上次请求(继续发货)。可再次申请或与卖家沟通。': 'The seller declined your last request (fulfilment continues). You may request again or talk to the seller.',
135
+ '上次请求卖家未在期限内响应。可重新申请,或发起争议。': 'The seller did not respond to your last request in time. You may request again, or open a dispute.',
136
+ '取消理由(可选,卖家可见)': 'Reason (optional, visible to the seller)',
137
+ '申请取消并退款': 'Request cancel & refund',
138
+ '买家申请取消订单并退款。': 'The buyer requests to cancel this order and be refunded.',
139
+ '同意:先在协议外退款,再点"我已退款";不同意:拒绝并继续发货。': 'To agree: refund the buyer off-protocol first, then tap "I have refunded". To disagree: decline and continue shipping.',
140
+ '退款参考(转账单号等,可选,买家可见)': 'Refund reference (transfer no. etc., optional, visible to the buyer)',
141
+ '我已退款': 'I have refunded',
142
+ '拒绝(继续发货)': 'Decline (continue shipping)',
143
+ '你已声明退款,等待买家确认收到后订单将无责取消。': 'You have declared the refund; once the buyer confirms receipt the order is cancelled with no fault.',
144
+ '已发出取消退款请求,等待卖家响应': 'Cancel-refund request sent; awaiting the seller',
145
+ '确认你已在协议外向买家完成退款?声明后买家确认即取消订单;虚假声明将留痕并可被追责。': 'Confirm you have refunded the buyer off-protocol? Once the buyer confirms, the order is cancelled; a false declaration is recorded and accountable.',
146
+ '已声明退款,等待买家确认': 'Refund declared; awaiting buyer confirmation',
147
+ '确认已收到卖家退款?确认后订单将无责取消,不可撤销。若尚未到账请勿确认。': 'Confirm the seller\'s refund has arrived? The order will then be cancelled (no fault) — irreversible. Do NOT confirm if it has not arrived.',
148
+ '已收到,取消订单': 'Received — cancel order',
149
+ '订单已无责取消': 'Order cancelled, no fault to either party',
150
+ '下单时参考价,以卖家收款说明为准': 'reference rate at order time; the seller\'s payment instruction is authoritative',
151
+ // 直付通知模板(N1,审计项 B)
152
+ '新直付订单,等买家付款': 'New direct-pay order, awaiting buyer payment',
153
+ '商品「{product}」× {qty},应付 {amount} USDC。买家完成场外付款并标记后你会收到发货提醒。': '"{product}" × {qty}, payable {amount} USDC. You will be reminded to ship once the buyer pays off-protocol and marks it.',
154
+ '买家已标记付款,请核对后发货': 'Buyer marked as paid — verify before shipping',
155
+ '{detail}。请核对银行/收款App流水后再发货;未收到请点"未收到货款"。': '{detail}. Verify your bank / payment-app statement before shipping; if not received, tap "Payment not received".',
156
+ '直付付款窗口已过期': 'Direct-pay payment window expired',
157
+ '若你已付款:请在 {graceHours} 小时宽限期内到订单页提交付款凭证发起争议;未付款可直接关闭订单,否则宽限期满将自动取消。': 'If you HAVE paid: submit your payment proof on the order page within the {graceHours}-hour grace period to open a dispute. If you have not paid, you can close the order now; otherwise it auto-cancels when the grace period ends.',
158
+ '直付订单已自动取消': 'Direct-pay order auto-cancelled',
159
+ '付款窗口与宽限期均已过且未收到你的付款标记/凭证,订单已关闭。若你确已付款,请通过订单页联系卖家协商。': 'The payment window and grace period both passed without your payment mark / proof, so the order was closed. If you did pay, contact the seller via the order page.',
160
+ '直付订单已自动取消(买家未付款)': 'Direct-pay order auto-cancelled (buyer did not pay)',
161
+ '买家未在付款窗口+宽限期内付款,订单已自动关闭,库存已恢复。': 'The buyer did not pay within the window + grace period; the order was closed automatically and stock restored.',
162
+ // 卖家对账卡(审计项 F)
163
+ '发货前对账(买家已标记付款)': 'Reconcile before shipping (buyer marked as paid)',
164
+ '银行/收款App流水附言应为': 'The bank / payment-app statement memo should read',
165
+ '同买家另有': 'Same buyer has',
166
+ '笔同金额直付订单在途 —— 每笔转账只能核销一个订单,请逐单核对参考号,谨防一笔款冒充多单。': 'other in-flight direct-pay order(s) of the SAME amount — one transfer settles ONE order only; check the reference per order and beware one payment claimed on multiple orders.',
167
+ '请核实款项【已到账】且附言/金额与本单一致再发货;发货即视为确认收款。未收到请点"未收到货款"。': 'Ship only after the money has ARRIVED and the memo/amount match THIS order; shipping counts as confirming receipt. Not received? Tap "Payment not received".',
168
+ '直付订单:发货前请核实货款已到账 —— 银行流水附言应为': 'Direct-pay order: verify the payment has ARRIVED before shipping — the bank transfer memo should read',
169
+ '(同买家同金额多单务必逐单核对参考号)。发货即视为你确认已收到货款;发货后不可再报告未收款,只能走争议。': ' (multiple in-flight orders of the same amount from the same buyer: check the reference PER ORDER). Shipping counts as your confirmation that the payment arrived; after shipping you can no longer report non-payment — only a dispute.',
170
+ '未收到货款': 'Payment not received',
171
+ '货款协商中': 'Payment under review',
172
+ '货款协商中(非仲裁)': 'Payment under review (negotiation, not arbitration)',
173
+ '未收到货款(告知买家核实)': 'Payment not received (notify buyer to verify)',
174
+ '确认已收到货款(恢复订单)': 'Confirm payment received (resume order)',
175
+ '申请取消订单(买家未回应时)': 'Request cancellation (if buyer unresponsive)',
176
+ '我已付款 · 提交凭证升级举证': 'I paid · submit proof & escalate',
177
+ '付款凭证 / 参考号': 'Payment proof / reference',
178
+ '链上 tx / 银行回执 / 付款参考号(与下单时附言一致)': 'On-chain tx / bank receipt / payment reference (matching the memo at checkout)',
179
+ '我未付款 · 取消订单': 'I did not pay · cancel order',
180
+ '撤回仲裁 · 回到协商': 'Withdraw arbitration · back to negotiation',
181
+ '驳回仲裁,退回协商': 'Dismiss arbitration · back to negotiation',
182
+ '仲裁裁定需现场真人 Passkey 验证': 'Arbitration rulings require live human Passkey verification',
183
+ '协商取消订单(无责)': 'Cancel by mutual agreement (no fault)',
184
+ '不走判罚:双方同意即可取消这笔争议订单,任何一方信誉都不受影响。': 'No ruling needed: if both parties agree, this disputed order is cancelled with neither side\'s reputation affected. ',
185
+ '直付非托管:关闭订单,双方零资金往来': 'Direct pay (non-custodial): the order simply closes, with no funds moving either way',
186
+ '托管:货款全额退回买家,卖家质押原样返还': 'Escrow: the payment is fully refunded to the buyer and the seller\'s stake is returned intact',
187
+ '你已提议协商取消,等待对方确认。': 'You proposed a mutual cancellation — waiting for the other party to confirm.',
188
+ '撤回提议': 'Withdraw proposal',
189
+ '对方提议协商取消这笔订单。': 'The other party proposed cancelling this order by mutual agreement.',
190
+ '接受 · 取消订单': 'Accept · cancel order',
191
+ '原因(可选)': 'Reason (optional)',
192
+ '提议协商取消': 'Propose mutual cancellation',
193
+ '已提议协商取消,等待对方确认': 'Mutual-cancel proposed — waiting for the other party to confirm',
194
+ '确认接受协商取消?订单将被取消,双方无责。': 'Accept the mutual cancellation? The order will be cancelled with no fault to either party.',
195
+ '订单已协商取消': 'Order cancelled by mutual agreement',
196
+ '买家已撤诉并确认收货': 'Buyer withdrew the dispute and confirmed receipt',
197
+ '订单不在争议中,不可撤诉确认收货': 'The order is not in dispute — nothing to withdraw',
198
+ '仅争议发起人可撤诉': 'Only the dispute initiator can withdraw it',
199
+ '仅"投递后未收到货/货有问题"类争议可撤诉确认收货;货款争议请用"撤回仲裁·回到协商"': 'Only post-delivery fulfilment disputes (not received / problem with goods) can be withdrawn with receipt confirmation; for payment disputes use "withdraw arbitration · back to negotiation"',
200
+ '撤诉确认收货失败,订单未变更(仍在争议中),请重试': 'Withdraw-and-confirm failed; the order is unchanged (still in dispute) — please retry',
201
+ '买家撤回争议并确认收货,订单已完成结算,双方信誉不受影响。': 'The buyer withdrew the dispute and confirmed receipt. The order has settled; neither party\'s reputation is affected.',
202
+ '确认后订单完成:货款你已线下支付,平台服务费照常计提。需 Passkey 确认。': 'On confirmation the order completes: you already paid off-platform, and the platform service fee accrues as usual. Requires Passkey confirmation.',
203
+ '确认后订单完成:托管货款将释放给卖家。': 'On confirmation the order completes: the escrowed payment is released to the seller.',
204
+ '后来收到货了?': 'Received the goods after all?',
205
+ '包裹晚到/在代收点找到了?你可以撤回这条争议并确认收货,订单正常完成,双方信誉都不受影响。': 'Parcel arrived late or turned up at a pickup point? You can withdraw this dispute and confirm receipt — the order completes normally and neither party\'s reputation is affected. ',
206
+ '我已收到货 · 撤诉并确认收货': 'I received the goods · withdraw dispute & confirm receipt',
207
+ '确认撤回争议并确认收货?争议将关闭(不可恢复),订单立即完成结算。': 'Withdraw the dispute and confirm receipt? The dispute closes (irreversibly) and the order settles immediately.',
208
+ '撤诉并确认收货': 'Withdraw & confirm receipt',
209
+ '已撤诉并确认收货,订单完成': 'Dispute withdrawn and receipt confirmed — order completed',
210
+ '卖家报告未收到货款。这是买卖双方【协商】阶段,不是仲裁:若你确已付款,请提交付款凭证升级举证;若未付款,可取消订单。谈不拢再进举证仲裁。直付非托管,WebAZ 不代收/不退款。': 'The seller reports not receiving the payment. This is a buyer↔seller NEGOTIATION stage, not arbitration: if you did pay, submit your payment proof to escalate; if you did not, cancel the order. Only if you cannot agree does it go to evidence arbitration. Direct pay is non-custodial — WebAZ neither collects nor refunds.',
211
+ '未收到货款说明': 'Explain: payment not received',
212
+ '说明未在收款账户看到该笔款项 / 金额或附言不符等(协议不持货款,证据制信誉裁决,不涉资金赔付)': 'Explain: no matching payment in your receiving account / amount or memo mismatch, etc. (protocol holds no funds; evidence-based reputation ruling, no monetary compensation)',
213
+ '为保护你的收款信息,已隐藏。': 'Hidden to protect your payment info.',
214
+ '订单已不在待支付阶段,收款信息默认隐藏。': 'This order is no longer awaiting payment; payment info is hidden by default.',
215
+ '重新显示': 'Show again',
216
+ '查看收款信息(需 Passkey 验证)': 'View payment info (Passkey required)',
217
+ '⚠️ 此订单已取消/终止,请【勿再付款】。收款信息仅供对账/存证查看。': '⚠️ This order is cancelled/void — do NOT pay. Payment info is for reconciliation/records only.',
218
+ '⚠️ 你已完成付款。收款信息仅供对账/维权查看,请勿重复付款。': '⚠️ You have already paid. Payment info is for reconciliation/dispute only — do not pay again.',
219
+ '继续查看需现场 Passkey 验证。': 'Viewing requires a live Passkey check.',
220
+ '继续(需 Passkey)': 'Continue (Passkey required)',
221
+ '我已付款': 'I have paid',
222
+ '取消订单': 'Cancel order',
223
+ '操作成功': 'Done',
224
+ '操作失败,请重试': 'Action failed, please try again',
225
+ '直付收款说明': 'Direct Pay payment instruction',
226
+ '直付收款账号': 'Direct Pay receive accounts',
227
+ '平台收款方式': 'Platform receive methods',
228
+ '已入账': 'Credited',
229
+ '申请 id': 'Request id',
230
+ '平台服务费预充值申请': 'Platform-service-fee prepay requests',
231
+ '卖家发起的平台服务费预充值申请。请【核对凭证号对应的真实到账】后再确认入账;确认即为该商家记一笔预充值(真人 Passkey,唯一动钱步)。': 'Seller-initiated platform-service-fee prepay requests. Verify the actual receipt for the given reference BEFORE crediting; confirming records a prepay for that merchant (live Passkey — the only money-moving step).',
232
+ '暂无待审核申请': 'No pending requests',
233
+ '付给平台账户': 'Paid to platform account',
234
+ '付款凭证号': 'Payment reference',
235
+ '确认到账并入账(真人 Passkey)': 'Confirm receipt & credit (Passkey)',
236
+ '驳回(真人 Passkey)': 'Reject (Passkey)',
237
+ '该申请已不在待审核队列': 'This request is no longer pending',
238
+ '入账失败': 'Crediting failed',
239
+ '已确认入账': 'Credited',
240
+ '确定驳回这条申请?(将通知卖家未通过)': 'Reject this request? (the seller will see it was not approved)',
241
+ '驳回失败': 'Reject failed',
242
+ '核对到账 → 确认入账 / 驳回(卖家发起)': 'Verify receipt → credit / reject (seller-initiated)',
243
+ '申请平台服务费预充值': 'Request platform-service-fee prepay',
244
+ '按下列平台收款方式线下付款后,填金额和付款凭证号提交申请;平台核实真实到账后为你入账。申请本身不划扣任何款项。': 'After paying off-platform via one of the receive methods below, submit a request with the amount and payment reference; the platform credits you after verifying actual receipt. The request itself moves no funds.',
245
+ '平台暂未配置收款方式,请联系平台': 'The platform has no receive methods configured yet — please contact the platform',
246
+ '暂无申请记录': 'No requests yet',
247
+ '凭证': 'Ref',
248
+ '平台收款方式(据此付款)': 'Platform receive methods (pay via one of these)',
249
+ '充值金额 USDC': 'Top-up amount USDC',
250
+ '如 50': 'e.g. 50',
251
+ '付给哪个平台收款方式': 'Which platform receive method you paid',
252
+ '请选择平台收款方式': 'Please select a platform receive method',
253
+ '付款凭证号 evidence_ref': 'Payment reference (evidence_ref)',
254
+ '(转账流水号 / 交易 ID,必填)': '(transfer reference / transaction ID, required)',
255
+ '如银行流水号 / 链上 txid': 'e.g. bank reference / on-chain txid',
256
+ '备注(可选)': 'Note (optional)',
257
+ '我的申请': 'My requests',
258
+ '请填写正数充值金额': 'Enter a positive top-up amount',
259
+ '付款凭证号必填(不能无据)': 'Payment reference is required (no evidence, no request)',
260
+ '提交失败,请重试': 'Submission failed, please retry',
261
+ '申请已提交,等待平台核实入账': 'Request submitted — awaiting platform verification and crediting',
262
+ '确定撤销这条预充值申请?': 'Cancel this prepay request?',
263
+ '收款方式信息不合法': 'Invalid receive-method details',
264
+ '平台收款方式不存在': 'Platform receive method not found',
265
+ '这些是 WebAZ 收取【平台服务费预充值】的收款方式。卖家申请充值时会看到 active 的方式并据此线下付款;可维护多个。改动 = 改平台收款流向,需真人 Passkey。': 'These are the methods WebAZ uses to collect platform-service-fee prepay. Sellers see the active ones when requesting a top-up and pay off-platform accordingly; you can keep several. Changing them changes where the platform receives funds — a live Passkey is required.',
266
+ '尚未添加平台收款方式': 'No platform receive methods yet',
267
+ '新增平台收款方式': 'Add platform receive method',
268
+ '平台收款明细': 'Platform receive details',
269
+ '(展示给卖家,如 PayNow 账号 / 银行账户 / USDC 地址)': '(shown to sellers, e.g. PayNow account / bank account / USDC address)',
270
+ '例:PayNow UEN 202xxxxx(备注填你的卖家 ID)': 'e.g. PayNow UEN 202xxxxx (put your seller ID in the memo)',
271
+ '如 PayNow-主': 'e.g. PayNow-main',
272
+ '收款二维码(可选,PNG/WebP ≤64KB)': 'Receive QR (optional, PNG/WebP ≤64KB)',
273
+ '移除现有二维码': 'Remove existing QR',
274
+ '平台收款明细不能为空': 'Platform receive details cannot be empty',
275
+ '停用后卖家将不再看到此平台收款方式,确定停用?': 'Once deactivated, sellers no longer see this platform receive method. Deactivate?',
276
+ 'WebAZ 收款账号(卖家充值平台服务费用),可多个': 'WebAZ receive accounts (sellers pay platform-service-fee here), multiple supported',
277
+ '选择卖家收款方式': 'Choose the seller\'s receive method',
278
+ '卖家按此收款': 'Seller receives',
279
+ '收款明细与二维码将在完成风险确认后显示': 'Payment details and QR appear after you complete the risk confirmation',
280
+ '你可维护多个收款账号(各自币种、可选二维码),买家直付时自选其一。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.',
281
+ '尚未添加收款账号': 'No receive accounts yet',
282
+ '新增收款账号': 'Add receive account',
283
+ '收款账号': 'Receive account',
284
+ '无二维码': 'No QR',
285
+ '更换二维码': 'Replace QR',
286
+ '上传二维码': 'Upload QR',
287
+ '收款方式': 'Payment method',
288
+ '币种': 'Currency',
289
+ '如 SGD / USDC': 'e.g. SGD / USDC',
290
+ '停用后买家将无法选择该收款账号,确定停用?': 'Once deactivated, buyers can no longer choose this receive account. Deactivate?',
291
+ '二维码仅支持 PNG 或 WebP 图片': 'QR must be a PNG or WebP image',
292
+ '二维码图片过大(需 ≤ 64KB)': 'QR image is too large (must be ≤ 64KB)',
293
+ '二维码图片不合法(仅支持 PNG/WebP,解码后 ≤ 64KB)': 'Invalid QR image (PNG/WebP only, ≤ 64KB decoded)',
294
+ '二维码已上传': 'QR uploaded',
295
+ '二维码读取失败': 'Failed to read QR image',
296
+ '收款二维码': 'Receive QR',
297
+ '仅卖家可管理收款账号': 'Only sellers can manage receive accounts',
298
+ '账号不存在': 'Account not found',
299
+ '账号信息不合法': 'Invalid account details',
300
+ '需先注册 Passkey': 'Passkey registration required',
301
+ '直付开通进度(仅你可见)': 'Direct Pay onboarding progress (visible only to you)',
302
+ '履约保证金缓交(仅你可见)': 'Performance-bond deferral (visible only to you)',
303
+ '缓交 = 先入场、履约保证金延后交,由管理员人工审批。批准后直付仍需满足全部合规条件(身份与商户合规审核、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.',
304
+ '缓交申请审核中,等待管理员人工审批': 'Deferral application under review — awaiting manual admin approval',
305
+ '缓交已批准': 'Deferral approved',
306
+ '缓交申请未通过': 'Deferral application not approved',
307
+ '缓交已到期': 'Deferral has expired',
308
+ '可重新申请': 'You may apply again',
309
+ '申请原因(选填)': 'Reason (optional)',
310
+ '缓交天数(选填,默认 30)': 'Deferral days (optional, default 30)',
311
+ '提交缓交申请': 'Submit deferral application',
312
+ '缓交期额度系数': 'Deferral-period quota factor',
313
+ '保证金到期日': 'Bond due date',
314
+ '宽限至': 'Grace until',
315
+ '已进入宽限期,请尽快补交履约保证金,否则直付资格将被暂停': 'You are in the grace period — please post the performance bond soon, or your Direct Pay eligibility will be suspended',
316
+ '缓交申请已提交,等待管理员审批': 'Deferral application submitted — awaiting admin approval',
317
+ '履约保证金缓交审批': 'Performance-bond deferral approvals',
318
+ '商户缓交申请;批准设压低额度 + 真人 Passkey(仅 root)': 'Merchant deferral applications; approval sets a reduced quota + live Passkey (root only)',
319
+ '批准后该卖家可先入场直付、保证金延后交;直付仍需满足全部合规条件,且缓交期内额度被压低。批准/拒绝均需真人 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.',
320
+ '缓交期(天)': 'Deferral period (days)',
321
+ '批准缓交(需真人 Passkey)': 'Approve deferral (live Passkey required)',
322
+ '缓交期额度系数(0–1,留空用默认;缓交期内必压低,有下限)': 'Deferral-period quota factor (0–1; blank = default; always reduced during deferral, with a floor)',
323
+ '额度系数(如 0.5)': 'Quota factor (e.g. 0.5)',
324
+ '宽限天数(留空用默认)': 'Grace days (blank = default)',
325
+ '真人确认批准': 'Confirm approval (Passkey)',
326
+ '拒绝缓交(需真人 Passkey)': 'Reject deferral (live Passkey required)',
327
+ '真人确认拒绝': 'Confirm rejection (Passkey)',
328
+ '暂无待审缓交申请': 'No pending deferral applications',
329
+ '需要真人 Passkey 确认': 'A live Passkey confirmation is required',
330
+ '缓交申请已拒绝': 'Deferral application rejected',
331
+ '逐产品直付验证(仅你可见)': 'Per-product Direct Pay verification (visible only to you)',
332
+ '每个走直付收款的商品都需【单独】通过平台人工验证(防作弊):申领验证码 → 贴到该商品的外部平台页面 → 回来提交该商品链接 → 管理员手动核对。未验证的商品只能用托管交易。': '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.',
333
+ '已签发验证码,请贴到该商品的外部页面后提交链接': 'Code issued — display it on the product’s external page, then submit the link',
334
+ '已提交,等待管理员核验': 'Submitted — awaiting admin review',
335
+ '已通过验证,可直付': 'Verified — Direct Pay enabled',
336
+ '未通过,请修正后重新申请': 'Not approved — fix and re-apply',
337
+ '你还没有商品': 'You have no products yet',
338
+ '申请验证': 'Request verification',
339
+ '把它展示在该商品的外部页面': 'display it on the product’s external page',
340
+ '该商品的外部链接(http/https)': 'The product’s external link (http/https)',
341
+ '提交链接': 'Submit link',
342
+ '验证码已签发': 'Verification code issued',
343
+ '请填写该商品的外部链接': 'Please enter the product’s external link',
344
+ '已提交,等待管理员核验。': 'Submitted — awaiting admin review.',
345
+ '逐产品直付验证审核': 'Per-product Direct Pay verification review',
346
+ '逐个核验商品外部链接验证码;通过=该商品可直付 + 真人 Passkey(仅 root)': 'Review each product’s external-link code; approve = that product becomes Direct-Pay-eligible + live Passkey (root only)',
347
+ '请手动打开链接,确认该商品页面上展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the product page shows the code above, then approve/reject.',
348
+ '通过(真人 Passkey)': 'Approve (live Passkey)',
349
+ '拒绝(真人 Passkey)': 'Reject (live Passkey)',
350
+ '暂无待核验商品': 'No products awaiting review',
351
+ '每个商品需单独核验:打开卖家提交的外部链接,确认页面展示了验证码再通过。通过=该商品可直付(逐品,绝不放行全部)。通过/拒绝均需真人 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.',
352
+ '该商品已通过验证': 'Product verified',
353
+ '该商品已拒绝': 'Product rejected',
354
+ '店铺认证(可申请免逐品验证)': 'Store verification (apply to skip per-product checks)',
355
+ '默认每个商品需单独验证才能直付。你也可以申请【店铺认证】:申领验证码 → 贴到你的外部店铺主页 → 提交店铺链接 → 管理员手动核对;通过且管理员勾选豁免后,你【所有商品】免逐品验证即可直付。': '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.',
356
+ '已签发验证码,请贴到你的外部店铺页后提交店铺链接': 'Code issued — display it on your external store page, then submit the store link',
357
+ '店铺已通过验证': 'Store verified',
358
+ '申请店铺认证': 'Apply for store verification',
359
+ '把它展示在你的外部店铺主页': 'display it on your external store homepage',
360
+ '你的外部店铺链接(http/https)': 'Your external store link (http/https)',
361
+ '提交店铺链接': 'Submit store link',
362
+ '已豁免逐品验证:你的所有商品可直付': 'Exempt from per-product verification — all your products can use Direct Pay',
363
+ '已通过,但未获逐品豁免:商品仍需逐个验证': 'Verified, but no per-product exemption — products still need individual verification',
364
+ '请填写你的外部店铺链接': 'Please enter your external store link',
365
+ '店铺认证审核': 'Store verification review',
366
+ '商户合规录入': 'Merchant compliance entry',
367
+ '录入卖家 KYB / 制裁筛查结论 + 真人 Passkey(仅 root)': 'Record a seller’s KYB / sanctions-screening result + live Passkey (root only)',
368
+ // PR-B Direct Pay 商户运营 hub + 平台服务费(预充值)账户
369
+ '仅限根管理员': 'Root admin only',
370
+ 'Direct Pay 商户运营': 'Direct Pay merchant ops',
371
+ '返回协议管理': 'Back to protocol admin',
372
+ '共建运营': 'Co-build ops',
373
+ '共建任务建议 / Welcome 提交 / 建任务额度 / 贡献账号关联': 'Task proposals / Welcome submissions / task quota / contribution-account linking',
374
+ '共建(社区建设)集中入口:外部建议收件箱、建任务治理、贡献账号归属。': 'One place for co-building (community building) ops: external suggestion inboxes, task-creation governance, and contribution-account attribution.',
375
+ '共建建议(收件箱)': 'Co-build suggestions (inbox)',
376
+ '建任务治理': 'Task-creation governance',
377
+ '贡献账号归属': 'Contribution-account attribution',
378
+ '直付(Rail 1)商户运营集中入口:资格合规、平台服务费预充值、上线控制。': 'Central entry for Direct Pay (Rail 1) merchant ops: eligibility & compliance, platform-fee prepayment, launch controls.',
379
+ '资格与合规': 'Eligibility & compliance',
380
+ 'KYB / 制裁筛查结论': 'KYB / sanctions results',
381
+ '缓交申请 + 压低额度': 'Deferral requests + reduced quota',
382
+ '逐产品直付验证': 'Per-product direct-pay verification',
383
+ '核验商品外链验证码': 'Verify product external-link code',
384
+ '核验店铺外链 + 免逐品': 'Verify shop link + per-product exemption',
385
+ '平台服务费(预充值)': 'Platform fee (prepayment)',
386
+ '预充值与账户': 'Prepayment & account',
387
+ '充值 / 调整 / 退款 / 余额 / 应收': 'Top-up / adjust / refund / balance / accrued',
388
+ '上线控制': 'Launch controls',
389
+ '直付参数': 'Direct-pay params',
390
+ '开关 / 地区 / 单笔上限': 'Toggle / region / per-tx cap',
391
+ '就绪报告(CLI):': 'Readiness report (CLI):',
392
+ '直付:合规录入 / 缓交 / 商品·店铺验证 / 平台服务费预充值 / 上线控制(仅 root)': 'Direct Pay: compliance / deferral / product·shop verification / platform-fee prepayment / launch controls (root only)',
393
+ '平台服务费预充值与账户': 'Platform-fee prepayment & account',
394
+ '返回 Direct Pay 商户运营': 'Back to Direct Pay merchant ops',
395
+ '预充值 = 商家平台服务费预付款(非买家货款 / 非 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.',
396
+ '加载账户': 'Load account',
397
+ '记录预充值(收款)': 'Record prepayment (received)',
398
+ '金额 USDC': 'Amount USDC',
399
+ '法币 fiat': 'Fiat',
400
+ '收款凭证号 evidence_ref(选填)': 'Receipt ref / evidence_ref (optional)',
401
+ '备注(选填)': 'Note (optional)',
402
+ '记录预充值(真人 Passkey)': 'Record prepayment (live Passkey)',
403
+ '账务更正(可正可负,非退款)': 'Bookkeeping correction (signed; not a refund)',
404
+ '更正额 USDC(负数=调减)': 'Correction USDC (negative = decrease)',
405
+ '原因(必填)': 'Reason (required)',
406
+ '记录更正(真人 Passkey)': 'Record correction (live Passkey)',
407
+ '退款(真实退还未消耗预付款)': 'Refund (return unconsumed prepayment)',
408
+ '退款额 USDC': 'Refund amount USDC',
409
+ '退款凭证号 evidence_ref(选填)': 'Refund ref / evidence_ref (optional)',
410
+ '原因(选填)': 'Reason (optional)',
411
+ '退款(真人 Passkey)': 'Refund (live Passkey)',
412
+ '可用预充值余额': 'Available prepayment balance',
413
+ '累计预充值': 'Total prepayments',
414
+ '已计提平台费': 'Accrued platform fee',
415
+ '账务更正合计': 'Total corrections',
416
+ '已退款合计': 'Total refunds',
417
+ '在途单预估费': 'In-flight orders est. fee',
418
+ '可退款余额': 'Refundable balance',
419
+ // PR-C seller fee center
420
+ '平台服务费账户(仅你可见)': 'Platform-fee account (only you can see)',
421
+ '直付平台服务费的预充值余额与已计提明细;预充值由平台核实收款后登记,如需充值请联系平台。': '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.',
422
+ '待补平台服务费': 'Platform fee owed',
423
+ '余额不足时新直付订单会被暂停,请联系平台补充平台服务费预充值。': 'When the balance is insufficient, new direct-pay orders are suspended; contact the platform to top up the platform-service-fee prepayment.',
424
+ '首单宽限可用:你的第一笔直付无需预充值。': 'First-order grace available: your first direct-pay order needs no prepayment.',
425
+ '首单宽限': 'First-order grace',
426
+ '是(尚未成交)': 'Yes (no completed sale yet)',
427
+ '否(已用/有在途)': 'No (used / has in-flight)',
428
+ '预充值已记录': 'Prepayment recorded',
429
+ '请填写卖家 ID 和正数金额': 'Enter seller ID and a positive amount',
430
+ '账务更正已记录': 'Correction recorded',
431
+ '请填写卖家 ID、非零更正额、原因': 'Enter seller ID, a non-zero correction, and a reason',
432
+ '请填写卖家 ID 和正数退款额': 'Enter seller ID and a positive refund amount',
433
+ '退款已记录': 'Refund recorded',
434
+ '录入卖家的 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.',
435
+ '卖家用户 ID': 'Seller user ID',
436
+ '卖家用户 ID(seller user id)': 'Seller user ID',
437
+ 'KYB 复核结论': 'KYB review result',
438
+ '通过 approved': 'Pass (approved)',
439
+ '待定 pending': 'Pending',
440
+ '拒绝 rejected': 'Reject (rejected)',
441
+ '外部审核编号 / vendor case id(选填)': 'External review id / vendor case id (optional)',
442
+ '撤销 revoked': 'Revoke (revoked)',
443
+ '阻断 blocked': 'Block (blocked)',
444
+ '⚠️ 外部审核编号只填外部审核系统的 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.',
445
+ '有效期 expires_at(选填,如 2027-01-01)': 'Expiry expires_at (optional, e.g. 2027-01-01)',
446
+ '记录 KYB(真人 Passkey)': 'Record KYB (live Passkey)',
447
+ '制裁筛查结论': 'Sanctions-screening result',
448
+ '通过 clear': 'Pass (clear)',
449
+ '命中 flagged': 'Hit (flagged)',
450
+ '有效期 expires_at(选填)': 'Expiry expires_at (optional)',
451
+ '记录制裁筛查(真人 Passkey)': 'Record sanctions screening (live Passkey)',
452
+ '录入后用就绪报告核对:': 'After recording, verify with the readiness report:',
453
+ 'KYB 结论已记录': 'KYB result recorded',
454
+ '制裁筛查结论已记录': 'Sanctions-screening result recorded',
455
+ '请填写卖家用户 ID': 'Please enter the seller user ID',
456
+ '店铺链接': 'Store link',
457
+ '请手动打开链接,确认店铺主页展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the store homepage shows the code above, then approve/reject.',
458
+ '免逐品验证(通过后该卖家所有商品可直付)': 'Exempt from per-product verification (on approval, all this seller’s products can use Direct Pay)',
459
+ '暂无待核验店铺': 'No stores awaiting review',
460
+ '打开卖家提交的店铺链接,确认店铺页展示了验证码再通过。勾选“免逐品验证”=该卖家所有商品免逐个验证即可直付(请仅对可信商户勾选)。通过/拒绝均需真人 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.',
461
+ '店铺已通过,已豁免逐品验证': 'Store verified — per-product verification waived',
462
+ '店铺已通过': 'Store verified',
463
+ '店铺申请已拒绝': 'Store application rejected',
464
+ '核验店铺外链;可勾选免逐品验证 + 真人 Passkey(仅 root)': 'Verify store links; optionally grant per-product exemption + live Passkey (root only)',
465
+ '以上为你的直付开通进度;直付按轨道分阶段开放,完成可行动项不代表立即可用。': '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.',
466
+ '平台侧直付已开放': 'Direct Pay is open on the platform side',
467
+ '直付平台侧暂未开放(无需你操作)': 'Direct Pay is not yet open on the platform side (no action needed from you)',
468
+ '已设置收款说明': 'Payment instruction is set',
469
+ '未设置收款说明': 'Payment instruction not set',
470
+ '去设置收款说明': 'Set payment instruction',
471
+ '已注册 Passkey': 'Passkey registered',
472
+ '未注册 Passkey': 'Passkey not registered',
473
+ '去注册 Passkey': 'Register a Passkey',
474
+ '履约保证金已完成': 'Performance security deposit completed',
475
+ '履约保证金未完成': 'Performance security deposit not completed',
476
+ '商户审核已通过': 'Merchant review passed',
477
+ '商户审核进行中或未通过': 'Merchant review pending or not passed',
478
+ '直付资格正常': 'Direct Pay eligibility is normal',
479
+ '直付资格已被暂停': 'Direct Pay eligibility is suspended',
480
+ '这是你自填的收款展示文本(场外结算用);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.',
481
+ '当前生效': 'Currently active',
482
+ '尚未设置收款说明': 'No payment instruction set yet',
483
+ '收款说明': 'Payment instruction',
484
+ '(展示给买家,如 PayNow / 银行转账 等)': '(shown to buyers, e.g. PayNow / bank transfer)',
485
+ '例:PayNow +65 9xxx(场外结算)': 'e.g. PayNow +65 9xxx (off-platform settlement)',
486
+ '标签(可选)': 'Label (optional)',
487
+ '如 PayNow': 'e.g. PayNow',
488
+ '收款说明不能为空': 'Payment instruction cannot be empty',
489
+ '已停用': 'Deactivated',
490
+ '停用': 'Deactivate',
491
+ '停用后买家将无法对你发起直付订单,确定停用?': 'After deactivation, buyers cannot start Direct Pay orders with you. Deactivate?',
492
+ '卖家尚未设置收款说明,暂不可直付': 'The seller has not set a payment instruction; Direct Pay is unavailable',
493
+ '该卖家暂不支持直付': 'This seller does not support Direct Pay yet',
494
+ '直付需要先注册 Passkey': 'Direct Pay requires registering a Passkey first',
495
+ '需先完成两次风险披露确认(D1 + D2)': 'You must complete both risk disclosures first (D1 + D2)',
496
+ '需现场真人 Passkey 确认': 'A live, in-person Passkey confirmation is required',
497
+ '订单尚未送达,暂不可确认收货': 'The order has not been delivered yet; cannot confirm receipt',
498
+ '直付当前仅支持简单商品(无规格)': 'Direct Pay currently supports simple products only (no variants)',
499
+ '直付当前不支持该下单选项': 'Direct Pay currently does not support that order option',
500
+ // ── Leaderboard agent activity bucket (coarse, replaces raw call count) ──
501
+ '较少': 'Light',
502
+ '休眠': 'Dormant',
7
503
  // ── RFC-020 Connected agents (app-agents.js) ─────────────────
8
504
  '🔌 已连接的 Agent': '🔌 Connected agents',
9
505
  '尚无已连接的 Agent': 'No connected agents yet',
@@ -11,15 +507,65 @@ const _EN = {
11
507
  '这些是你授权给 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
508
  '有效': 'Active',
13
509
  '最近使用': 'Last used',
14
- '次调用': 'calls',
15
510
  '从未使用': 'Never used',
16
511
  '有效期至': 'Expires',
17
512
  '未命名 Agent': 'Unnamed agent',
18
513
  '仅安全只读权限': 'Safe read-only scopes',
19
514
  '撤销访问': 'Revoke access',
515
+ '请先登录以审核 agent 授权请求': 'Please log in to review the agent authorization request',
516
+ '🔗 授权 AI Agent': '🔗 Authorize an AI Agent',
517
+ '一个 AI agent 请求代表你执行【安全只读/草稿】操作。它拿到的是作用域受限、短期、可随时撤销的委托凭证 —— 不是你的账号或密钥,永远动不了资金、投票、仲裁或改密钥。': 'An AI agent is requesting to act on your behalf for SAFE (read/draft) operations only. It receives a scoped, short-lived, revocable delegation credential — not your account or keys — and can never move funds, vote, arbitrate, or change keys.',
518
+ '请输入你的 agent 屏幕上显示的配对口令:': 'Enter the pairing code shown on your agent\'s screen:',
519
+ '配对口令': 'Pairing code',
520
+ '查看授权请求': 'View request',
521
+ '只输入你自己的 agent 显示给你的口令。不要输入别人发来的口令。': 'Only enter the code your own agent showed you. Never enter a code someone else sent you.',
522
+ '请输入有效口令': 'Please enter a valid code',
523
+ '配对口令无效或不存在。请核对你的 agent 显示的口令。': 'Pairing code is invalid or does not exist. Double-check the code your agent displays.',
524
+ '该配对请求已过期、已被处理或已失效。请让你的 agent 重新发起配对。': 'This pairing request has expired, was already handled, or is no longer valid. Have your agent start a new pairing.',
525
+ '该配对请求已被处理或已失效。': 'This pairing request was already handled or is no longer valid.',
526
+ '无法读取该配对请求,请重试。': 'Could not read this pairing request. Please try again.',
527
+ '无法授权': 'Cannot authorize',
528
+ '手动输入口令': 'Enter code manually',
529
+ '(无 —— 仅基础只读)': '(none — basic read-only)',
530
+ '配对口令 —— 请核对与你的 agent 屏幕一致': 'Pairing code — verify it matches your agent\'s screen',
531
+ '只在这个口令与你的 agent 屏幕显示的一致、且是你主动发起时才批准。': 'Only approve if this code matches what your agent displays AND you initiated it.',
532
+ '如果这是别人发给你的链接,或你并没有在配对 agent —— 请拒绝。': 'If someone sent you this link, or you are not pairing an agent — reject it.',
533
+ 'Agent 自称': 'Agent claims to be',
534
+ '未命名': 'Unnamed',
535
+ '未验证': 'unverified',
536
+ '用途(agent 自述)': 'Purpose (agent-stated)',
537
+ '请求的权限': 'Requested permissions',
538
+ '我确认这个口令与我的 agent 显示一致,且这是我本人主动发起的配对。': 'I confirm this code matches what my agent displays, and that I personally initiated this pairing.',
539
+ '用 Passkey 批准': 'Approve with Passkey',
540
+ 'Passkey 验证已取消': 'Passkey verification cancelled',
541
+ '批准失败,请重试': 'Approval failed, please try again',
542
+ '确认拒绝这个 agent 配对请求?': 'Reject this agent pairing request?',
543
+ '该 agent 现在可用你批准的作用域了(短期、可随时撤销)。回到你的 agent 完成配对即可。': 'The agent now has the scopes you approved (short-lived, revocable anytime). Return to your agent to finish pairing.',
544
+ '基础只读': 'Basic read-only',
545
+ '查看 / 撤销已连接的 Agent': 'View / revoke connected agents',
546
+ '该配对请求已被拒绝,不会签发任何凭证。': 'This pairing request was rejected; no credential will be issued.',
20
547
  '确认撤销此 Agent 的访问权限?该凭证将立即失效。': "Revoke this agent's access? The credential is invalidated immediately.",
21
548
  '已撤销该 Agent 的访问': 'Agent access revoked',
22
549
  '已连接的 Agent': 'Connected agents',
550
+ // ── RFC-020 agent permission approvals (#agent-approvals) ─────
551
+ 'Agent 授权请求': 'Agent permission requests',
552
+ '🔔 Agent 授权请求': '🔔 Agent permission requests',
553
+ '一个已连接的 AI agent 请求更多【安全只读/草稿】权限。批准只会扩展它已有的委托凭证 —— 仍然作用域受限、可随时撤销,永远动不了资金、投票、仲裁或改密钥。': 'A connected AI agent is requesting more read-only / draft permissions. Approving only extends its existing delegation grant — still scope-limited and revocable anytime; it can never move funds, vote, arbitrate, or change keys.',
554
+ '无法读取授权请求,请重试。': 'Could not load permission requests. Please try again.',
555
+ '暂无待处理的授权请求': 'No pending permission requests',
556
+ '当你的 agent 请求更多权限时,会出现在这里等你批准。': 'When your agent requests more permissions, they appear here for your approval.',
557
+ '它想做什么': 'What it wants to do',
558
+ '授权时长': 'Grant duration',
559
+ '请求于': 'Requested',
560
+ '低风险': 'Low risk',
561
+ '中风险': 'Medium risk',
562
+ '高风险': 'High risk',
563
+ '一次性': 'One-time',
564
+ '1 小时': '1 hour',
565
+ '7 天': '7 days',
566
+ '确认拒绝这个授权请求?': 'Reject this permission request?',
567
+ '已批准 —— 该 agent 的权限已扩展': 'Approved — the agent\'s permissions have been extended',
568
+ '已拒绝该授权请求': 'Permission request rejected',
23
569
  // ── General ──────────────────────────────────────────────────
24
570
  '← 返回': '← Back',
25
571
  '登录': 'Login',
@@ -134,7 +680,6 @@ const _EN = {
134
680
  '解除暂停': 'Unsuspend',
135
681
  '授角色': 'Grant role',
136
682
  '搜索名称 / 邮箱': 'Search name / email',
137
- '条结果': ' results',
138
683
  '暂停账户': 'Suspend account',
139
684
  '原因(可选)': 'Reason (optional)',
140
685
  '该用户已拥有全部角色': 'User already has all roles',
@@ -166,16 +711,13 @@ const _EN = {
166
711
  '请先完成上述未达标指标': 'Complete the missing indicators first',
167
712
  '返回审核任务': 'Back to tasks',
168
713
  '确认撤回申请?': 'Confirm withdrawing application?',
169
- '提交申诉': 'Submit appeal',
170
714
  '暂停期内可申诉一次。请详细说明你提交的内容、判错原因,并附证据': 'You may appeal once during the suspension. Detail what you submitted, why it was wrong, and attach evidence',
171
715
  '涉及任务 ID(可选)': 'Task ID (optional)',
172
716
  '申诉理由': 'Reason',
173
- '字': 'chars',
174
717
  '我提交的是真实验证码,但被判错的原因可能是...': 'I submitted the actual code, but was marked wrong because...',
175
718
  '证据 URL(每行一个,最多 3 条)': 'Evidence URLs (one per line, max 3)',
176
719
  '申诉已提交,等待管理员审理': 'Appeal submitted, awaiting admin review',
177
720
  '审核员管理': 'Verifier management',
178
- '待审申请': 'Pending apps',
179
721
  '待审申诉': 'Pending appeals',
180
722
  '活跃审核员': 'Active verifiers',
181
723
  '活跃审核员不足 5 人,请尽快批准更多申请': 'Active verifiers < 5, approve more applications soon',
@@ -197,16 +739,35 @@ const _EN = {
197
739
  '返回用户列表': 'Back to user list',
198
740
  '注册': 'Registered',
199
741
  '天前': 'days ago',
200
- '邮箱': 'Email',
201
742
  '手机': 'Phone',
202
743
  '密码': 'Password',
203
- '已设置': 'Set',
204
744
  '未设置': 'Not set',
205
745
  '登录失败': 'Failed logins',
206
746
  '锁定至': 'locked until',
207
747
  '钱包': 'Wallet',
208
748
  '质押': 'Staked',
209
749
  '托管': 'Escrow',
750
+ '托管=平台托管收入;直接收款=场外收款,平台不经手': 'Escrow = platform-custodied revenue; Direct pay = off-platform receipts the platform never touches',
751
+ '全部类型': 'All types',
752
+ '直接收款': 'Direct pay',
753
+ '直接收款销售统计 + 对账(仅你可见)': 'Direct-pay sales & reconciliation (private to you)',
754
+ '直付为非托管:货款由买家直接付给你,平台不经手。此处按你的订单聚合销售额与逐单平台服务费,便于对账。': 'Direct Pay is non-custodial: the buyer pays you directly and the platform never touches the funds. This aggregates your sales and per-order platform fees for reconciliation.',
755
+ '导出对账 CSV': 'Export reconciliation CSV',
756
+ '该区间暂无直接收款订单': 'No direct-pay orders in this range',
757
+ '总销售额': 'Total sales',
758
+ '已完成销售额': 'Completed sales',
759
+ '含在途/已关闭': 'incl. in-progress/closed',
760
+ '按月(已完成 / 订单总额)': 'By month (completed / gross)',
761
+ '在途 / 已关闭': 'In progress / closed',
762
+ '按月': 'By month',
763
+ '销售额': 'Sales',
764
+ '平台费': 'Platform fee',
765
+ '仅显示最近 500 单,请用日期区间缩小范围': 'Showing the latest 500 orders only; narrow the date range',
766
+ '暂无数据可导出': 'No data to export',
767
+ '直付': 'Direct pay',
768
+ '已指派': 'Assigned',
769
+ '未指派': 'Unassigned',
770
+ '点卡片查看争议详情(只读监督;裁定须仲裁员)': 'Tap a card to view the dispute (read-only oversight; ruling requires an arbitrator)',
210
771
  '累计赚': 'Earned',
211
772
  '操作者': 'By',
212
773
  '角色 & 权限': 'Roles & permissions',
@@ -247,6 +808,9 @@ const _EN = {
247
808
  '账户控制': 'Account control',
248
809
  '状态': 'Status',
249
810
  '确认暂停': 'Confirm suspend',
811
+ '确认恢复': 'Confirm resume',
812
+ '确认驳回?': 'Confirm reject?',
813
+ '确认下架?': 'Confirm delist?',
250
814
  '暂停后用户所有 API 请求被拒绝': 'After suspension, all API requests are denied',
251
815
  '持有角色(勾选所有该用户应有的角色)': 'Held roles (check all that should apply)',
252
816
  '危险': 'Danger',
@@ -280,7 +844,6 @@ const _EN = {
280
844
  '请填写撤销原因': 'Please enter revoke reason',
281
845
  '确认撤销': 'Confirm revoke',
282
846
  '需通过申请获得': 'Apply to obtain',
283
- '申请': 'Apply',
284
847
  '联系管理员': 'Contact admin',
285
848
  '请联系管理员申请此角色': 'Contact admin to apply for this role',
286
849
  '🛡 管理员角色只能由现有管理员授予': '🛡 Admin role can only be granted by existing admins',
@@ -305,6 +868,17 @@ const _EN = {
305
868
  '拒绝原因(必填)': 'Rejection reason (required)',
306
869
  '卖家胜诉': 'Seller won',
307
870
  '全额退款': 'Full refund',
871
+ '买家胜诉(信誉裁决)': 'Buyer wins (reputation ruling)',
872
+ '卖家胜诉(信誉裁决)': 'Seller wins (reputation ruling)',
873
+ '部分责任(信誉裁决)': 'Partial fault (reputation ruling)',
874
+ '责任分配(信誉裁决)': 'Liability split (reputation ruling)',
875
+ '卖家信誉扣分;直付非托管,WebAZ 不退款/不放款': 'Seller reputation penalized; direct pay is non-custodial — WebAZ issues no refund/release.',
876
+ '物流/履约信誉扣分;直付非托管,WebAZ 不退款': 'Logistics/fulfillment reputation penalized; direct pay is non-custodial — WebAZ issues no refund.',
877
+ '系统自动确认直付订单完成;不涉及平台放款': 'System auto-confirms the direct-pay order as complete; no platform fund release.',
878
+ '非托管(直付)争议:仅信誉裁决,不发生退款 / 资金释放 / 仲裁费。': 'Non-custodial (direct-pay) dispute: reputation ruling only — no refund / fund release / arbitration fee.',
879
+ '判买家胜诉(信誉裁决)': 'Rule: buyer wins (reputation)',
880
+ '判卖家胜诉(信誉裁决)': 'Rule: seller wins (reputation)',
881
+ '判部分责任(信誉裁决)': 'Rule: partial fault (reputation)',
308
882
  '争议驳回': 'Dispute dismissed',
309
883
  '批准申请': 'Approve application',
310
884
  '拒绝申请': 'Reject application',
@@ -314,20 +888,14 @@ const _EN = {
314
888
  '我的推广': 'My promotions',
315
889
  '已绑定邀请人': 'Sponsor bound',
316
890
  '了解协议设计 · 多种角色 · 元规则': 'Protocol design · multiple roles · meta-rules',
317
- '信誉': 'Reputation',
318
891
  '信誉分': 'Rep. score',
319
892
  '完成购买': 'Purchases',
320
893
  '累计售出': 'Sales',
321
894
  '入驻天数': 'Days joined',
322
- '验证员': 'Verifier',
323
- '卖家回复': 'Seller reply',
324
895
  '当前价': 'Current',
325
- '次出价': 'bids',
326
896
  '已预订': 'Reserved',
327
- '几乎全新': 'Like new',
328
897
  '轻度使用': 'Lightly used',
329
898
  '使用明显': 'Well used',
330
- '重度使用': 'Heavily used',
331
899
  'TA 还没写过测评': 'No reviews written yet',
332
900
  'TA 没有在售的二手': 'No secondhand listings',
333
901
  'TA 没有进行中的拍卖': 'No active auctions',
@@ -338,6 +906,7 @@ const _EN = {
338
906
  '活跃买家': 'Active buyers',
339
907
  '成交订单': 'Orders',
340
908
  '热门类目': 'Top categories',
909
+ '随机': 'Random',
341
910
  '放大到': 'Zoom out to ',
342
911
  '扫描结果': 'Scan result',
343
912
  '人气不足': 'low activity',
@@ -349,7 +918,6 @@ const _EN = {
349
918
  '活跃 < 3 人 — 隐私保护(k≥3)下不显示聚合': ' had < 3 active buyers — hidden under k≥3 privacy',
350
919
  '该范围内还没有 ≥ 3 人买过同一商品': 'No product bought by ≥ 3 people in this range yet',
351
920
  '当前关键词无匹配': 'No match for current keyword',
352
- '单': '',
353
921
  '积分树挂靠': 'team tree placement',
354
922
  '积分树挂靠为系统内部记录,不代表收益权或兑付承诺。': 'Placement in the points tree is an internal record only — it does not confer any earning right or payout promise.',
355
923
  '我的邀请链接(第一触点锁定 30 天)': 'My referral link (first-touch, 30-day cookie)',
@@ -363,6 +931,8 @@ const _EN = {
363
931
  'PV 是参与 / 贡献的记录,不是收益、不可兑付、不构成任何奖励权益。匹配奖励当前未启用。': 'PV is a record of participation / contribution — not income, not redeemable, and confers no reward entitlement. Matching rewards are currently not enabled.',
364
932
  '二级': 'L2',
365
933
  '累计佣金': 'Total earnings',
934
+ '清算中': 'Clearing',
935
+ '清算中:退货期满后到账': 'Clearing — paid after the return window closes',
366
936
  '最近佣金流水': 'Recent commissions',
367
937
  '暂无佣金记录': 'No commissions yet',
368
938
  '已复制邀请链接': 'Referral link copied',
@@ -520,15 +1090,17 @@ const _EN = {
520
1090
  '运输中': 'In transit',
521
1091
 
522
1092
  // ── Order actions ────────────────────────────────────────────
523
- '✅ 确认揽收': '✅ Confirm pickup',
524
- '🚛 开始运输': '🚛 Start transit',
525
- '📬 确认投递': '📬 Confirm delivery',
526
1093
  '确认收货': 'Confirm receipt',
1094
+ '✅ 我已付款': '✅ Paid',
1095
+ '包装状态描述 / 货物说明(可选)': 'Packaging / goods description (optional)',
1096
+ '提交证据': 'Submit evidence',
1097
+ '👤 需要你提供': '👤 Your input needed',
1098
+ '请求': 'Request',
1099
+ '对方': 'the other party',
1100
+ '类型:': 'Type: ',
1101
+ '截止:': 'Deadline: ',
527
1102
  '我的操作': 'Actions',
528
1103
  '暂无已注册的物流公司,请先让物流方注册账号': '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
1104
  '争议理由': 'Dispute reason',
533
1105
  '描述问题(货不对版/货损/未收到等)': 'Describe issue (wrong item / damaged / not received, etc.)',
534
1106
  '请选择物流公司': 'Please select a logistics company',
@@ -570,7 +1142,6 @@ const _EN = {
570
1142
  '提交所需证据': 'Submit required evidence',
571
1143
  '— 选择证据类型 —': '— Select type —',
572
1144
  '(可选)文件哈希 / IPFS CID / 链上 TX ID': '(Optional) File hash / IPFS CID / TX ID',
573
- '详细描述内容(如图片描述、文字陈述、链上 TX hash 等)': 'Detailed description (image, statement, TX hash, etc.)',
574
1145
  '已发送证据请求!': 'Evidence request sent!',
575
1146
 
576
1147
  // ── Arbitrator ruling ────────────────────────────────────────
@@ -579,14 +1150,11 @@ const _EN = {
579
1150
  '🟢 资金释放给卖家(卖家胜诉)': '🟢 Release to seller (seller wins)',
580
1151
  '🟡 部分退款(折中,需填金额)': '🟡 Partial refund (enter amount)',
581
1152
  '⚖️ 责任分配(指定各方赔付额)': '⚖️ Liability split (specify amounts)',
582
- '填写退款金额': 'Enter refund amount',
583
1153
  '责任方赔付分配': 'Liability allocation',
584
1154
  '订单总额:': 'Order total:',
585
- '赔付金额': 'Amount',
586
1155
  '保险兜底': 'Insurance cap',
587
1156
  '合计退款:': 'Total refund:',
588
1157
  '裁定理由 *': 'Ruling reason *',
589
- '请详细说明裁定依据(将记录在案)': 'Explain the basis for your ruling (will be recorded)',
590
1158
  '确认裁定': 'Issue ruling',
591
1159
  '裁定中...': 'Processing...',
592
1160
  '请选择裁定方式': 'Please select ruling type',
@@ -599,7 +1167,6 @@ const _EN = {
599
1167
  '的赔付金额': "'s compensation amount",
600
1168
 
601
1169
  // ── Defendant response ───────────────────────────────────────
602
- '请描述你的反驳理由、证据(如物流记录、商品照片说明等)': 'Describe your defense (logistics records, product photos, etc.)',
603
1170
  '提交反驳证据': 'Submit defense',
604
1171
 
605
1172
  // ── Evidence requests (arbitrator) ───────────────────────────
@@ -609,7 +1176,6 @@ const _EN = {
609
1176
  '— 选择当事方 —': '— Select party —',
610
1177
  '所需证据类型(可多选)': 'Evidence types needed',
611
1178
  '说明(告诉对方需要提供什么)': 'Description (what to provide)',
612
- '例:请提供商品发出时的快递单照片': 'E.g.: Please provide tracking receipt photo when item was sent',
613
1179
  '截止时间': 'Deadline',
614
1180
  '24 小时': '24 hours',
615
1181
  '48 小时': '48 hours',
@@ -626,7 +1192,6 @@ const _EN = {
626
1192
  '揽收后即自动认领为你的配送任务': 'Automatically claimed as your delivery after pickup',
627
1193
  '暂无进行中订单': 'No active deliveries',
628
1194
  '暂无待揽收订单': 'No pending pickups',
629
- '快递单号 *': 'Tracking number *',
630
1195
  '投递凭证 *': 'Delivery proof *',
631
1196
  '请填写投递凭证': 'Please enter delivery proof',
632
1197
 
@@ -639,11 +1204,9 @@ const _EN = {
639
1204
  '+ 上架': '+ List',
640
1205
  '还没有商品': 'No products yet',
641
1206
  '上架新商品': 'List new product',
642
- '商品名称': 'Product name',
643
1207
  '例:手工竹编收纳篮': 'E.g.: Handwoven bamboo basket',
644
- '商品描述': 'Description',
645
1208
  '材质、尺寸、特点...': 'Material, size, features...',
646
- '价格(WAZ)': 'Price (WAZ)',
1209
+ '价格(USDC)': 'Price (USDC)',
647
1210
  '库存数量': 'Stock',
648
1211
  '分类(可选)': 'Category (optional)',
649
1212
  '不分类': 'No category',
@@ -664,8 +1227,6 @@ const _EN = {
664
1227
  '🛡️ 质量承诺 — 额外质押保证': '🛡️ Quality guarantee — Extra stake as assurance',
665
1228
  '🚀 极速发货 — 承诺 24h 发货': '🚀 Instant shipping — Promise 24h dispatch',
666
1229
  'Skill 名称': 'Skill name',
667
- '例:竹韵手工坊自动接单': 'E.g.: My Store auto-accept',
668
- '简要说明这个 Skill 能给买家带来什么好处': 'Briefly describe the benefit to buyers',
669
1230
  '请填写名称和描述': 'Please fill in name and description',
670
1231
  '✅ Skill 已发布!买家可以在 Skill 市场订阅': '✅ Skill published! Buyers can subscribe in the Skill Market',
671
1232
  '+ 订阅': '+ Subscribe',
@@ -686,15 +1247,12 @@ const _EN = {
686
1247
  '暂无(升到可信即可享受 -5%)': 'None (reach Trusted for -5% off)',
687
1248
  '最近记录': 'Recent history',
688
1249
  '完成第一笔交易后开始积累声誉': 'Reputation starts after first transaction',
689
- '充值': 'Deposit',
690
1250
  '测试网': 'Testnet',
691
1251
  '向以下地址转入 USDC,系统确认后自动到账。': 'Send USDC to the address below. Balance updates automatically after confirmation.',
692
1252
  '您的充值地址': 'Your deposit address',
693
1253
  '复制地址': 'Copy address',
694
1254
  '区块链浏览器': 'Block Explorer',
695
1255
  '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
1256
  '提现金额(WAZ)': 'Amount (WAZ)',
699
1257
  '最低 10 WAZ': 'Min 10 WAZ',
700
1258
  '申请提现': 'Request Withdrawal',
@@ -704,6 +1262,11 @@ const _EN = {
704
1262
  '💰 充值测试 WAZ': '💰 Top up test WAZ',
705
1263
  'Phase 0 测试专用,单次最多 1000 WAZ,余额上限 5000 WAZ。': 'Phase 0 testing only. Max 1000 WAZ per top-up, balance cap 5000 WAZ.',
706
1264
  'WAZ 为协议内模拟货币。Phase 2 将接入真实链上资产。': 'WAZ is simulated protocol currency. Phase 2 will integrate real on-chain assets.',
1265
+ '测试模式: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.',
1266
+ '测试托管订单': 'Test escrow order',
1267
+ '本单为预发布演示: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.',
1268
+ '请选择支付方式': 'Please choose a payment method',
1269
+ '直付暂未就绪或不可用,请稍候重试或改选支付方式': 'Direct Pay is not ready or unavailable — please retry shortly or choose another payment method',
707
1270
  '充值中...': 'Topping up...',
708
1271
  '已充入': 'Topped up',
709
1272
  '当前余额': 'Balance',
@@ -738,7 +1301,6 @@ const _EN = {
738
1301
  // ── Role labels ──────────────────────────────────────────────
739
1302
  '买家': 'Buyer',
740
1303
  '物流': 'Logistics',
741
- '仲裁员': 'Arbitrator',
742
1304
 
743
1305
  // ── Smart Import ─────────────────────────────────────────────
744
1306
  '导入': 'Import',
@@ -748,7 +1310,6 @@ const _EN = {
748
1310
  '解析': 'Analyze',
749
1311
  '解析中...': 'Analyzing...',
750
1312
  '解析完成,确认后上架': 'Review & publish',
751
- '确认上架': 'Confirm & List',
752
1313
  '点击切换': 'Click to switch',
753
1314
  '使用自己的 Anthropic API Key(不限次数)': 'Use your own Anthropic API Key (unlimited)',
754
1315
  'Key 仅存储在本地,不上传服务器,用完即丢': 'Key is stored locally only, never uploaded, discarded after use',
@@ -759,12 +1320,9 @@ const _EN = {
759
1320
  '提取内容为空,请尝试其他链接或改用手动上架': 'Nothing extracted. Try another link or use manual listing.',
760
1321
 
761
1322
  // ── Product structured fields ────────────────────────────────
762
- '规格参数': 'Specs',
763
1323
  '每行:材质: 陶瓷': 'One per line: Material: Ceramic',
764
1324
  '每行一个,格式:材质: 陶瓷': 'One per line, e.g. Material: Ceramic',
765
1325
  '处理时间 (小时)': 'Handling time (hrs)',
766
- '质保天数': 'Warranty (days)',
767
- '退货条件': 'Return condition',
768
1326
  '发货地区': 'Ship regions',
769
1327
  '时效 (天)': 'Transit (days)',
770
1328
  '易碎品,需特殊包装': 'Fragile — special packaging',
@@ -779,7 +1337,6 @@ const _EN = {
779
1337
  '上次自动下架': 'Last auto-delist',
780
1338
  '售罄自动下架': 'Auto-delisted (sold out)',
781
1339
  '分享一下你的体验?': 'Share your experience?',
782
- '写笔记': 'Write a note',
783
1340
  '已购买': 'Verified buyer',
784
1341
  '原图': 'Original',
785
1342
  '协议校验:作者已购买此商品并在 30 天内发笔记': 'Protocol-verified: author bought this product and wrote within 30 days',
@@ -798,21 +1355,15 @@ const _EN = {
798
1355
  '当前没有进行中的验证任务': 'No claims awaiting verification right now',
799
1356
  '当前没有待结算的任务': 'No claims awaiting settlement',
800
1357
  '暂无已结算记录': 'No resolved claims yet',
801
- '待结算': 'Sealed',
802
1358
  '已结算': 'Resolved',
803
1359
  '买家证据': 'Buyer evidence',
804
- '卖家证据': 'Seller evidence',
805
1360
  '结案于': 'Resolved at',
806
1361
  '去验证 →': 'Verify →',
807
- '协议治理': 'Protocol governance',
808
1362
  '参数公开 · 变更可追溯': 'Public params · audit trail',
809
1363
  '参数公开': 'Public params',
810
1364
  '社区提案': 'Community proposals',
811
1365
  '试点投票': 'Pilot voting',
812
1366
  '完整 DAO': 'Full DAO',
813
- '新人': 'New',
814
- '正确': 'correct',
815
- '总任务': 'total',
816
1367
  '偏离': 'outlier',
817
1368
  '命中率': 'Accuracy',
818
1369
  '正确数 / 总任务数 · 命中率 = 与多数共识一致的比例': 'correct / total · accuracy = % aligned with majority consensus',
@@ -824,13 +1375,9 @@ const _EN = {
824
1375
  '已开启新任务通知': 'New-task notifications ON',
825
1376
  '已关闭新任务通知': 'New-task notifications OFF',
826
1377
  '搜索判决书 / 双方陈述 / 商品名': 'Search ruling / arguments / product name',
827
- '搜索': 'Search',
828
- '清除': 'Clear',
829
1378
  '条结果': 'results',
830
- '最新': 'Newest',
831
1379
  '热议': 'Most discussed',
832
1380
  '好评': 'Highest fairness',
833
- '已驳回': 'Dismissed',
834
1381
  '同类已判案件': 'Similar resolved cases',
835
1382
  '仅供参考,每案独立判定': 'For reference only · each case judged independently',
836
1383
  '同类目': 'Same category',
@@ -847,9 +1394,7 @@ const _EN = {
847
1394
  'paid → shipped 平均耗时': 'paid → shipped average duration',
848
1395
  '平均备货时长': 'Avg handling time',
849
1396
  'refunded / completed': 'refunded / completed',
850
- '退货率': 'Return rate',
851
1397
  '对比上一': 'vs prev ',
852
- '新': 'NEW',
853
1398
  '跨境订单': 'Cross-border order',
854
1399
  '订单总额低于免税阈值': 'Below duty-free threshold',
855
1400
  '通常无关税': 'usually no import duty',
@@ -874,23 +1419,15 @@ const _EN = {
874
1419
  '不熟悉此领域 · 弃投不扣 outlier · 不影响判决': 'Unfamiliar with this domain · abstain without outlier penalty · no impact on consensus',
875
1420
  '弃投(不熟悉)': 'Abstain (unfamiliar)',
876
1421
  'Agent 榜': 'Agents',
877
- '传奇': 'Legend',
878
- '优质': 'Quality',
879
- '可信': 'Trusted',
880
- '新人': 'New',
881
- '次调用': 'calls',
882
1422
  '个 key': 'keys',
883
- '信任分': 'Trust',
884
1423
  '还没有 Agent 调用过协议 — 接入 MCP 即可上榜': 'No agents have called the protocol yet — integrate via MCP',
885
1424
  '批量改阈值': 'Set threshold',
886
1425
  '批量设置低库存阈值(≥0 整数,0=不预警)': 'Set low-stock threshold (≥0 integer, 0 = no alert)',
887
1426
  '批量上架': 'Re-list',
888
- '移入回收箱': 'To trash',
889
1427
  '已设置': 'Set',
890
- '已上架': 'Listed',
891
1428
  '已移入回收箱': 'Trashed',
892
1429
  '链接核验/失效会被拒绝': 'Items with pending or revoked link verification will be rejected',
893
- '确认上架': 'Confirm re-list',
1430
+ '确认上架': 'Confirm & List',
894
1431
  '确认移入回收箱': 'Confirm trash',
895
1432
  '请求上门取件': 'Request pickup',
896
1433
  '卖家会安排物流到指定地址上门收件(免自寄)': 'Seller arranges courier pickup at your address (no self-shipping)',
@@ -919,15 +1456,11 @@ const _EN = {
919
1456
  '已退款 · 退货完成': 'Refunded · return complete',
920
1457
  '退货取件': 'Return pickups',
921
1458
  '暂无退货取件任务': 'No pickup tasks',
922
- '待揽收': 'To collect',
923
1459
  '快递单号 / GPS / 揽收照片描述': 'Tracking # / GPS / pickup photo desc',
924
- '确认揽收': 'Confirm pickup',
925
1460
  '请填写揽收证据 ≥ 4 字': 'Pickup evidence ≥ 4 chars required',
926
1461
  '✓ 已揽收 · 卖家收到货后将自动退款': '✓ Picked up · refund auto-triggered when seller confirms receipt',
927
1462
  '跨境多语言(可选)': 'Cross-border i18n (optional)',
928
1463
  '为跨境买家提供其他语言版本 — 协议按 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
1464
  '如 Handmade Leather Wallet': 'e.g. Handmade Leather Wallet',
932
1465
  '英文描述(≤ 500 字)': 'English description (≤ 500 chars)',
933
1466
  '更多语言(日 / 韩)': 'More languages (JA / KO)',
@@ -942,19 +1475,13 @@ const _EN = {
942
1475
  '登录后点赞 / 收藏 / 评论': 'Sign in to like / save / comment',
943
1476
  '分享 / 转发': 'Share / repost',
944
1477
  '复制笔记链接': 'Copy link',
945
- '链接已复制': 'Link copied',
946
- '复制失败': 'Copy failed',
947
1478
  '转发到我自己(需买过同款)': 'Repost as myself (must have bought)',
948
1479
  '该笔记未关联商品,无法转发': 'Note has no linked product, cannot repost',
949
1480
  '分享笔记': 'Share note',
950
1481
  '管理': 'Manage',
951
1482
  '管理我的笔记': 'Manage my notes',
952
- '编辑笔记': 'Edit note',
953
- '已取消关注': 'Unfollowed',
954
- '已取消收藏': 'Removed from saved',
955
1483
  '网络错误': 'Network error',
956
1484
  '确认删除这条笔记?不可恢复': 'Delete this note? Cannot be undone',
957
- '已删除': 'Deleted',
958
1485
 
959
1486
  // ── External links ───────────────────────────────────────────
960
1487
  '买家粘贴这些链接时,智能下单会直接匹配到你的商品': 'When buyers paste these links, Smart Order will directly match your product',
@@ -1023,8 +1550,6 @@ const _EN = {
1023
1550
  '此链接已有进行中的任务': 'Existing pending task for this link',
1024
1551
  '导入来源': 'Imported from',
1025
1552
  '认领验证': 'Claim verification',
1026
- '待验证': 'Pending verification',
1027
- '已验证': 'Verified',
1028
1553
  '验证码': 'Verification code',
1029
1554
  '请将验证码放入原平台商品标题或描述 · 截止': 'Add code to the original listing\'s title or description — deadline:',
1030
1555
  '查看任务进度': 'View task progress',
@@ -1043,7 +1568,6 @@ const _EN = {
1043
1568
  '填入看到的验证码,如 [AB3KW2QP]': 'Enter the code you see, e.g. [AB3KW2QP]',
1044
1569
  '分配给我的任务': 'Tasks Assigned to Me',
1045
1570
  '帮助平台验证外部链接所有权,获得 WAZ 奖励': 'Help verify external link ownership and earn WAZ',
1046
- '提交中...': 'Submitting...',
1047
1571
  '请填入看到的验证码': 'Please enter the code you see',
1048
1572
  '✓ 已提交,等待结算': '✓ Submitted — awaiting settlement',
1049
1573
 
@@ -1120,7 +1644,6 @@ const _EN = {
1120
1644
  '团队达到 50 人': 'Team reaches 50',
1121
1645
  '去发现': 'Browse',
1122
1646
  '去填写': 'Set up',
1123
- '去设置': 'Set up',
1124
1647
  '复制邀请链': 'Copy invite link',
1125
1648
 
1126
1649
  // ── Promoter restructure ────────────────────────────────────
@@ -1129,7 +1652,6 @@ const _EN = {
1129
1652
  '下一档': 'Next tier',
1130
1653
  '已达顶': 'Top tier',
1131
1654
  '分享工具': 'Share Tools',
1132
- '二维码': 'QR Code',
1133
1655
  '我的产品分享': 'My Product Shares',
1134
1656
  '确定': 'OK',
1135
1657
  '去个人主页管理': 'Manage on profile',
@@ -1143,7 +1665,6 @@ const _EN = {
1143
1665
  '积分匹配': 'Matching',
1144
1666
  '累计': 'Total',
1145
1667
  '近 7 日': 'Last 7d',
1146
- '笔': 'records',
1147
1668
  '我累计': 'My total',
1148
1669
  '待分配': 'Pending',
1149
1670
  '动态推荐绑定': 'Dynamic L1 binding',
@@ -1153,7 +1674,6 @@ const _EN = {
1153
1674
  '动态 L1 推荐人': 'Dynamic L1 referrer',
1154
1675
  '触发商品': 'Triggered by',
1155
1676
  '接管的推荐': 'Referrals taken over',
1156
- '更多': 'more',
1157
1677
  '累计动态推荐佣金': 'Total dynamic commission',
1158
1678
 
1159
1679
  // ── Profile polish ──────────────────────────────────────────
@@ -1302,6 +1822,14 @@ const _EN = {
1302
1822
  '立即绑定 Passkey(强烈推荐)': 'Bind a Passkey now (strongly recommended)',
1303
1823
  '测评': 'Review',
1304
1824
  '全新': 'Brand new',
1825
+ '全新商品': 'New goods',
1826
+ '二手闲置': 'Secondhand',
1827
+ '请上传真实实物照,勿用网图/广告图;如经举报核实为虚假图片,商品可能被下架': 'Upload real photos of the actual item — no stock/ad images. Listings with fake photos may be removed if reported.',
1828
+ 'WebAZ 交易保障': 'WebAZ trade protection',
1829
+ '协议费 1%': '1% protocol fee',
1830
+ '资金托管·确认收货才放款': 'Funds escrowed · released only on delivery confirmation',
1831
+ '面交也可托管': 'Escrow available for in-person deals too',
1832
+ '成色声明可社区验证': 'Condition claims can be community-verified',
1305
1833
  'Cmd/Ctrl + ↵': 'Cmd/Ctrl + ↵',
1306
1834
  'k-anonymity ≥': 'k-anonymity ≥',
1307
1835
  '位邻居 24h 活跃': ' neighbors active in 24h',
@@ -1440,7 +1968,6 @@ const _EN = {
1440
1968
  '去发现好物 →': 'Go to Discover →',
1441
1969
  '已取消关注': 'Unfollowed',
1442
1970
  '操作失败,请重试': 'Action failed, please try again',
1443
- '看新品发现 →': 'See New Finds →',
1444
1971
  '只展示被真实买家购买过的商品 · 社交背书 · 非平台推荐': 'Only items real buyers have purchased · social-backed · not platform-recommended',
1445
1972
  '只展示真实成交且好评推荐的内容,用户共建非平台算法推荐': 'Only items with real sales + positive reviews — community-curated, not platform algorithm',
1446
1973
  '人已推荐': 'recommended',
@@ -1492,12 +2019,10 @@ const _EN = {
1492
2019
  '匿名用户': 'Anonymous',
1493
2020
  '匿名评论已发布': 'Anonymous comment posted',
1494
2021
  '平台角色': 'Platform staff',
1495
- '判例库': 'Case library',
1496
2022
  '全网公开仲裁记录 · 脱敏后展示 · 共建协议判例': 'All public arbitration records · anonymized · community-curated protocol precedent',
1497
2023
  '按类目': 'By category',
1498
2024
  '按结果': 'By outcome',
1499
2025
  '暂无符合条件的判例': 'No matching cases',
1500
- '看全部': 'View all',
1501
2026
  '售后': 'After-sale',
1502
2027
  '拒收': 'Rejected',
1503
2028
  '推荐多': 'Most rec.',
@@ -1514,7 +2039,6 @@ const _EN = {
1514
2039
  '去模糊搜索': 'Fuzzy search',
1515
2040
  '不做模糊匹配:': 'does not do fuzzy matching:',
1516
2041
  '关键词没有精确匹配的商品标题或完整链接,可能该商品 WebAZ 还没上架。': 'Your keyword has no exact-matched title or full link — this item may not be listed on WebAZ yet.',
1517
- '雷达': 'Radar',
1518
2042
  '拍卖二手': 'Deals',
1519
2043
  '入驻时长': 'Seller for',
1520
2044
  '年': 'y',
@@ -1554,7 +2078,6 @@ const _EN = {
1554
2078
  // 动态 sub-tab 排行榜
1555
2079
  '完整榜单': 'Full ranking',
1556
2080
  '热门商品': 'Hot products',
1557
- '人推荐': 'recommend',
1558
2081
  '赞': 'likes',
1559
2082
  '我关注的': 'Following',
1560
2083
  '你关注的人还没有动态 — 去关注一些活跃用户': 'No activity from those you follow yet — follow some active users',
@@ -1931,8 +2454,6 @@ const _EN = {
1931
2454
  '已删除': 'Deleted',
1932
2455
  '查看评论': 'View comments',
1933
2456
  '评论需 5-500 字': 'Comment must be 5–500 chars',
1934
- '提交中…': 'Submitting…',
1935
- '评论已发布': 'Comment posted',
1936
2457
  '发表': 'Post',
1937
2458
  '更多': 'More',
1938
2459
  '更多操作': 'More actions',
@@ -1950,7 +2471,6 @@ const _EN = {
1950
2471
  '修改标题 / 正文': 'Edit title / body',
1951
2472
  '查看数据': 'View stats',
1952
2473
  '点击 / 赞 / 收藏 / 评论': 'Clicks / likes / saves / comments',
1953
- '我的笔记': 'My notes',
1954
2474
  '管理所有笔记': 'Manage all notes',
1955
2475
  '不可恢复': 'Cannot be undone',
1956
2476
  'WebAZ 笔记': 'WebAZ note',
@@ -1959,8 +2479,6 @@ const _EN = {
1959
2479
  '分享失败': 'Share failed',
1960
2480
  '扫码访问笔记': 'Scan to open note',
1961
2481
  '已复制链接(QR 不可用)': 'Link copied (QR unavailable)',
1962
- '加载失败': 'Load failed',
1963
- '总点击': 'Total clicks',
1964
2482
  '点赞数': 'Likes',
1965
2483
  '收藏数': 'Saves',
1966
2484
  '评论数': 'Comments',
@@ -1973,7 +2491,6 @@ const _EN = {
1973
2491
  '正文(30-1000 字)': 'Body (30-1000 chars)',
1974
2492
  '图片不可改 — 协议层防剽窃需保留原 hash;要换图请删除后重发': 'Images cannot be changed — protocol anti-plagiarism keeps original hashes; delete & repost to change',
1975
2493
  '正文长度需 30-1000 字': 'Body must be 30-1000 chars',
1976
- '已保存': 'Saved',
1977
2494
  '极致性价比认证': 'Value-for-money certified',
1978
2495
  '协议层算法 · 同类目价格前': 'Protocol algorithm · in top',
1979
2496
  '类目第': 'Category rank #',
@@ -2057,7 +2574,6 @@ const _EN = {
2057
2574
  '争议已驳回': 'Dispute dismissed',
2058
2575
  '订单已超时': 'Order expired',
2059
2576
  '查看下方时间线了解流转详情': 'See timeline below for details',
2060
- '已超时': 'Overdue',
2061
2577
  '请尽快完成付款': 'Please complete payment',
2062
2578
  '等待买家付款': 'Waiting for buyer payment',
2063
2579
  '等待卖家接单': 'Waiting for seller to accept',
@@ -2120,7 +2636,6 @@ const _EN = {
2120
2636
  '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
2637
  '内部 vs 外部': 'Internal vs external',
2122
2638
  '内部走浏览器接 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
2639
  '(最多 9 张 · 自动压缩到 800px · 第一张为封面 · blob 留在你的节点,平台只存哈希)': '(up to 9 · 800px auto-compressed · first one is cover · blob stays on your node, server only stores hash)',
2125
2640
  '最多 9 张图片': 'Up to 9 photos',
2126
2641
  '文件过大(>12MB)': 'file too large (>12MB)',
@@ -2209,22 +2724,16 @@ const _EN = {
2209
2724
  '待结 Score': 'Pending Score',
2210
2725
  '查看 TA 的主页': 'View their profile',
2211
2726
  '没有更多了': 'No more',
2212
- '信誉': 'Rating',
2727
+ '信誉': 'Reputation',
2213
2728
  '价格 ↑': 'Price ↑',
2214
2729
  '随机探索': 'Explore',
2215
2730
  '换一批': 'Refresh',
2216
2731
  'Agent 信誉': 'Agent Trust',
2217
- '新人': 'New',
2218
- '可信': 'Trusted',
2219
- '优质': 'Quality',
2220
- '传奇': 'Legend',
2221
2732
  '账龄': 'Age',
2222
- '分享转化': 'Share conv.',
2223
2733
  '调用多样': 'API diversity',
2224
2734
  '仲裁败诉': 'Dispute loss',
2225
2735
  '同 IP 多号': 'Same IP cluster',
2226
2736
  '同支': 'Same-branch',
2227
- '限速命中': 'Rate limit hits',
2228
2737
  '再 +': '+',
2229
2738
  '分解锁 raw mode': 'pts to unlock raw mode',
2230
2739
  '已解锁 raw mode API': 'Raw mode unlocked',
@@ -2235,7 +2744,6 @@ const _EN = {
2235
2744
  '调用 endpoint 数': 'Endpoints called',
2236
2745
  '每个 api_key 一份独立信誉;影响 raw mode 等高阶 API 访问': 'Each api_key has its own reputation; affects access to raw mode and other advanced APIs',
2237
2746
  '/ 100+ 分': '/ 100+ pts',
2238
- '天': ' days',
2239
2747
  '分': ' pts',
2240
2748
  '点击量': 'Clicks',
2241
2749
  '真实点击=去重后': 'unique = deduplicated',
@@ -2269,9 +2777,7 @@ const _EN = {
2269
2777
  '推荐理由': 'Reasons',
2270
2778
  '暂无明显推荐理由 — 协议级公平展示': 'No strong reasons — protocol-level neutral display',
2271
2779
  '更多理由': 'More reasons',
2272
- '即将上线': 'Coming soon',
2273
2780
  'M7.3 即将上线': 'Available in M7.3',
2274
- '详情': 'Details',
2275
2781
  '立即下单': 'Order now',
2276
2782
  '比外部平台省': 'Save vs external',
2277
2783
  '分享后可得 L1 佣金 ≈': 'L1 share commission ≈',
@@ -2413,7 +2919,6 @@ const _EN = {
2413
2919
  '例:请提供商品发出时的快递单照片': 'Example: please provide a photo of the shipping label at dispatch',
2414
2920
  '填写退款金额': 'Enter refund amount',
2415
2921
  '赔付金额': 'Compensation amount',
2416
- '上限': 'Cap',
2417
2922
  '请详细说明裁定依据(将记录在案)': 'Explain the ruling rationale in detail (will be recorded)',
2418
2923
  '材质: 陶瓷&#10;容量: 350ml&#10;颜色: 白色': 'Material: ceramic&#10;Capacity: 350ml&#10;Color: white',
2419
2924
  '华东: 2&#10;全国: 5': 'East China: 2&#10;Nationwide: 5',
@@ -2452,7 +2957,6 @@ const _EN = {
2452
2957
  '当前没有可接的验证任务': 'No tasks available right now',
2453
2958
  '我相关的任务': 'My tasks',
2454
2959
  '我被诉的': 'As seller',
2455
- '暂无记录': 'No records',
2456
2960
  '价格优势': 'Price advantage',
2457
2961
  '分享佣金': 'Share commission',
2458
2962
  '协议保障': 'Protocol protection',
@@ -2493,7 +2997,6 @@ const _EN = {
2493
2997
  '注意:截止时间将 +24 小时。虚假证据在结算时额外扣 20% stake。':
2494
2998
  'Note: deadline +24h. False evidence forfeits an additional 20% of stake at settlement.',
2495
2999
  '证据 URL(必填,4-500 字符)': 'Evidence URL (4-500 chars)',
2496
- '提交': 'Submit',
2497
3000
  '证据已提交。新截止时间:': 'Evidence submitted. New deadline: ',
2498
3001
  '请填写证据 URL': 'Please enter the evidence URL',
2499
3002
  '对推荐理由发起验证': 'Verify recommendation reason',
@@ -2506,7 +3009,6 @@ const _EN = {
2506
3009
  '对推荐理由有疑问?发起验证任务': 'Question a recommendation reason? Start verification',
2507
3010
  '锁 10 WAZ 启动,3 verifier 共识仲裁。不可撤销。': 'Lock 10 WAZ to start, 3-verifier consensus. Non-cancellable.',
2508
3011
  '查看任务详情': 'View task',
2509
- '发起验证': 'Start verification',
2510
3012
  '验证活动': 'Verification activity',
2511
3013
  '参与协议级仲裁': 'Participate in protocol arbitration',
2512
3014
 
@@ -2638,7 +3140,6 @@ const _EN = {
2638
3140
  '发布成功': 'Published',
2639
3141
  '至少上传 1 张图片': 'Upload at least 1 image',
2640
3142
  '单张图片不超过 4MB:': 'Each image must be ≤ 4MB: ',
2641
- '封面': 'Cover',
2642
3143
  '请填写标题': 'Please enter a title',
2643
3144
  '请填写价格': 'Please enter a price',
2644
3145
  '成交时协议收取 1% 服务费。escrow 由买家确认收货后释放给你。':
@@ -2692,8 +3193,7 @@ const _EN = {
2692
3193
  // ── M8 UX 优化 ────────────────────────────────────────────
2693
3194
  '价↑': 'Price ↑',
2694
3195
  '价↓': 'Price ↓',
2695
- '价格区间 (WAZ)': 'Price range (WAZ)',
2696
- '最高': 'Max',
3196
+ '价格区间 (USDC)': 'Price range (USDC)',
2697
3197
  '应用': 'Apply',
2698
3198
  '成色 (可多选)': 'Condition (multi)',
2699
3199
  'TA 还在卖': 'Also from this seller',
@@ -2756,7 +3256,6 @@ const _EN = {
2756
3256
  '次日达': 'Next-day',
2757
3257
  '标准快递': 'Standard',
2758
3258
  '预计到达': 'ETA',
2759
- '可选': 'optional',
2760
3259
  '如:0.5 = 半小时': 'e.g., 0.5 = half hour',
2761
3260
  '发货区域': 'Ship from',
2762
3261
  '清仓促销': 'Clearance promo',
@@ -2792,7 +3291,6 @@ const _EN = {
2792
3291
  '仅买家可发求购单': 'Only buyers can post RFQs',
2793
3292
  '我要什么': 'I need',
2794
3293
  '例:100 颗 M5×20 内六角螺丝': 'e.g., 100× M5x20 hex screws',
2795
- '预算': 'Budget',
2796
3294
  '选定模式': 'Award mode',
2797
3295
  '限时窗口期内最低价自动选': 'Auto-pick lowest within window',
2798
3296
  '手动选(看 bid 自由挑)': 'Manual pick',
@@ -2811,7 +3309,6 @@ const _EN = {
2811
3309
  '暂无求购单': 'No RFQs yet',
2812
3310
  '征集中': 'Open',
2813
3311
  '已选定': 'Awarded',
2814
- '个报价': 'bids',
2815
3312
  '最低 ': 'low ',
2816
3313
  '剩余 ': 'remaining ',
2817
3314
  '预算 ≤ ': 'Budget ≤ ',
@@ -2826,7 +3323,6 @@ const _EN = {
2826
3323
  '联系对方': 'Message',
2827
3324
  '举报': 'Report',
2828
3325
  '开始第一句问候': 'Send the first message',
2829
- '添加图片': 'Add image',
2830
3326
  '输入消息(按 Enter 发送)': 'Type a message (Enter to send)',
2831
3327
  '检测到可能引导平台外交易': 'Off-platform handles detected',
2832
3328
  '链外资金协议无法保护': 'protocol cannot protect off-platform funds',
@@ -2842,6 +3338,9 @@ const _EN = {
2842
3338
  '银行卡': 'Bank card',
2843
3339
  'Telegram': 'Telegram',
2844
3340
  '外部链接': 'External URL',
3341
+ '外部平台': 'External platform',
3342
+ '前往源平台查看详情': 'View details on the source platform',
3343
+ '同城共鸣': 'Local buzz',
2845
3344
 
2846
3345
  // ── P3c 收尾 ──────────────────────────────────────────────
2847
3346
  '提前结算(自动选最低价)': 'Settle early (auto-pick lowest)',
@@ -2934,7 +3433,6 @@ const _EN = {
2934
3433
  '当前': 'Current',
2935
3434
  '起拍': 'Start',
2936
3435
  '加价': 'Step',
2937
- '次出价': 'bids',
2938
3436
  '条出价历史': 'bid history',
2939
3437
  '暂无出价': 'No bids yet',
2940
3438
  '当前最高': 'Highest',
@@ -3171,7 +3669,6 @@ const _EN = {
3171
3669
  // ── Tab bar 重组 + #me hub ──────────────────────────────────
3172
3670
  '我的': 'Me',
3173
3671
  '发现': 'Discover',
3174
- '求购': 'Buy Requests',
3175
3672
  '抢单': 'Bid Market',
3176
3673
  '私信': 'Messages',
3177
3674
  '慈善许愿': 'Charity Wishes',
@@ -3200,7 +3697,6 @@ const _EN = {
3200
3697
  '个人资料 + 角色管理': 'Profile + Role mgmt',
3201
3698
  '求购市场': 'Buy Request Market',
3202
3699
  'P2P 商店': 'P2P Shop',
3203
- '发起拍卖': 'Start Auction',
3204
3700
  '发起跟卖': 'Start Follow-list',
3205
3701
  '部分数据加载失败': 'Some data failed to load',
3206
3702
  '重试': 'Retry',
@@ -3213,7 +3709,6 @@ const _EN = {
3213
3709
  '我买我卖': 'My trades',
3214
3710
  '已锁定': 'Locked',
3215
3711
  '钱包余额': 'Wallet Balance',
3216
- '我的求购': 'My RFQs',
3217
3712
  '看公开求购市场': 'Public RFQ market',
3218
3713
  '发新求购': 'New RFQ',
3219
3714
  'AI 自然语言': 'AI natural language',
@@ -3275,7 +3770,6 @@ const _EN = {
3275
3770
  '被告': 'Defendant',
3276
3771
  '金额': 'Amount',
3277
3772
  '仲裁截止': 'Ruling deadline',
3278
- '待处理': 'Pending',
3279
3773
  '已提交': 'Submitted',
3280
3774
  '个任务 ≤6h 截止 — 已置顶标红': 'task(s) ≤6h to deadline — pinned & red',
3281
3775
  '需要关注': 'Needs attention',
@@ -3287,7 +3781,6 @@ const _EN = {
3287
3781
  '恢复': 'Resume',
3288
3782
  '暂停原因(必填,会写入审计)': 'Reason (required, written to audit)',
3289
3783
  '需填写原因': 'Reason required',
3290
- '确认': 'Confirm',
3291
3784
  '批量暂停': 'Batch suspend',
3292
3785
  '批量恢复': 'Batch resume',
3293
3786
  '个用户?': 'users?',
@@ -3312,7 +3805,6 @@ const _EN = {
3312
3805
  '慈善 silver': 'Charity Silver',
3313
3806
  '慈善 bronze': 'Charity Bronze',
3314
3807
  '慈善 none': 'Charity None',
3315
- '审核员': 'Verifier',
3316
3808
  '我的 Agent': 'My Agent',
3317
3809
  '点击展开/收起': 'Tap to expand/collapse',
3318
3810
  'Agent trust': 'Agent trust',
@@ -3387,7 +3879,6 @@ const _EN = {
3387
3879
  '概览': 'Overview',
3388
3880
  '用户管理': 'User Mgmt',
3389
3881
  '查看 / 暂停 / 调权限': 'View / suspend / role',
3390
- '审计日志': 'Audit Log',
3391
3882
  'admin 写操作历史': 'admin write history',
3392
3883
  '订单查看': 'Orders (R/O)',
3393
3884
  '全平台只读': 'Platform-wide read-only',
@@ -3412,7 +3903,6 @@ const _EN = {
3412
3903
 
3413
3904
  // ── admin 重设 ─────────────────────────────────────────────
3414
3905
  '内容': 'Content',
3415
- '仲裁': 'Arbitration',
3416
3906
  '协议': 'Protocol',
3417
3907
  '不可个人交易': 'No personal transactions',
3418
3908
  '治理工作台': 'Governance Workbench',
@@ -3443,11 +3933,9 @@ const _EN = {
3443
3933
  '慈善举报审核': 'Charity Reports Review',
3444
3934
  '3 个不同举报人 → 自动 status=disputed 隐藏;admin 可手动驳回或下架': '3 unique reporters → auto disputed; admin may dismiss or take down',
3445
3935
  '已驳回': 'Dismissed',
3446
- '已下架': 'Actioned',
3447
3936
  '原因': 'Reason',
3448
3937
  '愿望状态': 'Wish status',
3449
3938
  '暂无举报': 'No reports',
3450
- '驳回': 'Dismiss',
3451
3939
  '强制下架愿望': 'Force Takedown',
3452
3940
  '下架原因(必填,会写入审计 + 通知)': 'Takedown reason (required, audited + notified)',
3453
3941
  '从基金池拨款给指定 user_id;用途必填,写入审计 + 推送通知给收款人': 'Disburse from pool to user_id; note required, audited + notified to recipient',
@@ -3493,7 +3981,6 @@ const _EN = {
3493
3981
  '暂无 admin': 'No admins',
3494
3982
  '创建于': 'Created at',
3495
3983
  '最近操作': 'Last action',
3496
- '撤销': 'Revoke',
3497
3984
  '当前账户': 'Current account',
3498
3985
  '请填写用户 ID': 'Please fill user_id',
3499
3986
  '确认授予 ': 'Confirm grant ',
@@ -3547,7 +4034,6 @@ const _EN = {
3547
4034
  '店铺管理': 'Shop',
3548
4035
  '商品 / 营销 / Skill': 'Products / Marketing / Skill',
3549
4036
  'Skill 配置': 'Skill setup',
3550
- '订阅中': 'subscribed',
3551
4037
  'AI 自动化技能': 'AI automation',
3552
4038
  'auto_bid 规则': 'auto_bid rules',
3553
4039
  '订单事件推送': 'Order event push',
@@ -3562,6 +4048,8 @@ const _EN = {
3562
4048
  'Agent 工具': 'Agent tools',
3563
4049
  '搜索 / 下单': 'Search / order',
3564
4050
  '待付款': 'To pay',
4051
+ '直付待付款': 'Direct pay · to pay',
4052
+ '直付超时未确认': 'Direct pay · timed out',
3565
4053
  '待收货': 'To receive',
3566
4054
  '全部完成': 'All done',
3567
4055
  '个争议待处理': 'disputes pending',
@@ -3597,7 +4085,6 @@ const _EN = {
3597
4085
  '门牌描述 / 收件人签收': 'Door note / signature',
3598
4086
  '当前状态无可执行动作': 'No action for current status',
3599
4087
  '快递单号': 'Tracking #',
3600
- '投递凭证': 'Proof',
3601
4088
 
3602
4089
  // ── 仲裁台 ──────────────────────────────────────────────────
3603
4090
  '待裁': 'Pending',
@@ -3619,7 +4106,6 @@ const _EN = {
3619
4106
  '等待被告回应': 'Awaiting response',
3620
4107
  '仲裁审查中': 'Under review',
3621
4108
  '已裁定': 'Resolved',
3622
- '已撤销': 'Dismissed',
3623
4109
  '揽收': 'Pickup',
3624
4110
  '运输': 'Ship',
3625
4111
  '投递': 'Deliver',
@@ -3781,14 +4267,12 @@ const _EN = {
3781
4267
  '误导性': 'Misleading',
3782
4268
  '伪造': 'Fake',
3783
4269
  '成色': 'Condition',
3784
- '价格': 'Price',
3785
4270
 
3786
4271
  // Sprint 3 — auction + wish claim
3787
4272
  '保留价不合理': 'Unreasonable reserve price',
3788
4273
  '自买自卖刷价': 'Shill bidding',
3789
4274
  '围标 / 串通': 'Collusion',
3790
4275
  '商品本身有问题': 'Listing has issues',
3791
- '保留价': 'Reserve price',
3792
4276
  '刷价': 'Shill',
3793
4277
  '围标': 'Collusion',
3794
4278
  '商品问题': 'Listing issue',
@@ -3926,7 +4410,6 @@ const _EN = {
3926
4410
  '保存常用地址,下单时一键选择': 'Save your favorites and pick one at checkout',
3927
4411
  '添加地址': 'Add address',
3928
4412
  '编辑地址': 'Edit address',
3929
- '默认': 'Default',
3930
4413
  '设为默认': 'Set default',
3931
4414
  '设为默认地址': 'Set as default',
3932
4415
  '删除该地址?': 'Delete this address?',
@@ -3976,7 +4459,6 @@ const _EN = {
3976
4459
  '全平台': 'Platform-wide',
3977
4460
  '截止': 'Expires',
3978
4461
  '长期有效': 'No expiry',
3979
- '剩': 'left',
3980
4462
  '无限': 'Unlimited',
3981
4463
  '满': 'Min order',
3982
4464
  '可用': 'qualifying',
@@ -4007,12 +4489,10 @@ const _EN = {
4007
4489
  '日粒度仅展示最近 30 天;汇总指标按完整窗口计算': 'Daily bars show last 30 days only; aggregate KPIs use the full window',
4008
4490
 
4009
4491
  // Wave D-1: 关注的卖家 Feed
4010
- '动态': 'Feed',
4011
4492
  '关注的卖家新品 / 补货': 'New from sellers you follow',
4012
4493
  'Feed 为空 — 关注感兴趣的卖家': 'Feed is empty — follow sellers you like',
4013
4494
  '管理关注': 'Manage follows',
4014
4495
  '关注卖家的新品 / 补货第一时间看到': 'New arrivals & restocks from your follows — first to see',
4015
- '新品': 'New',
4016
4496
  '补货': 'Restock',
4017
4497
 
4018
4498
  // Wave D-2: 订单导出 / 收据
@@ -4088,7 +4568,6 @@ const _EN = {
4088
4568
  '取消该促销?': 'Cancel this flash sale?',
4089
4569
  '暂无进行中的限时促销': 'No flash sales in progress',
4090
4570
  '暂无促销活动': 'No flash sales',
4091
- '进行中': 'Live',
4092
4571
  '已排期': 'Scheduled',
4093
4572
  '已结束': 'Ended',
4094
4573
  '省': 'Save',
@@ -4129,7 +4608,6 @@ const _EN = {
4129
4608
  '店内商品': 'Products',
4130
4609
  '最近评价': 'Recent ratings',
4131
4610
  '该卖家暂无商品': 'No products yet',
4132
- '一句话简介': 'Tagline',
4133
4611
  '最多 200 字': 'max 200 chars',
4134
4612
  '告诉买家你是谁,卖什么': 'Tell buyers who you are and what you sell',
4135
4613
  '店铺横幅图片 URL': 'Shop banner URL',
@@ -4209,7 +4687,6 @@ const _EN = {
4209
4687
  '当前关键词在 24h 热门内无匹配': 'No matches in 24h trending for current keyword',
4210
4688
  '热门卖家': 'Trending sellers',
4211
4689
  '推荐卖家': 'Recommended sellers',
4212
- '卖家信誉': 'Seller rating',
4213
4690
  '卖家累计成交量降序(新品无产品级数据,按卖家维度)': 'Seller lifetime sales DESC (new products have no per-product data — pivoted to seller)',
4214
4691
  '卖家累计被推荐买家数(新品无产品级数据,按卖家维度)': 'Seller cumulative recommend buyers (pivoted to seller, since new products have no per-product data)',
4215
4692
  '完全随机 · 探索冷门新品': 'Pure random · explore hidden new arrivals',
@@ -4232,14 +4709,11 @@ const _EN = {
4232
4709
  '待发笔记': 'Awaiting note',
4233
4710
  '待评估 reach': 'Evaluating reach',
4234
4711
  '待评估': 'Evaluating',
4235
- '已退款': 'Refunded',
4236
4712
  '已超时': 'Expired',
4237
4713
  '请发布一篇带商品 anchor 的笔记,至少': 'Publish a note with product anchor — need at least',
4238
4714
  '浏览或等效转发/转化': 'views or equivalent shares/conversions',
4239
4715
  '去发笔记 →': 'Write note →',
4240
4716
  '浏览': 'views',
4241
- '转发': 'shares',
4242
- '转化': 'conversions',
4243
4717
  '查看笔记 →': 'View note →',
4244
4718
  '已退': 'Refunded',
4245
4719
  '30 天内未达阈值,活动已超时': 'Did not reach threshold in 30 days, expired',
@@ -4260,10 +4734,8 @@ const _EN = {
4260
4734
  '每个新品的测评免单计划 + 实时 reach 进度': 'Each new product\'s review-refund plan + live reach progress',
4261
4735
  '暂无测评活动': 'No active review campaigns',
4262
4736
  '在商品发布表单底部勾选「开启测评免单」即可': 'Toggle "Enable review-trial refund" at the bottom of product publish form',
4263
- '阈值': 'Threshold',
4264
4737
  '启动': 'Started',
4265
4738
  '进行中': 'Active',
4266
- '已关闭': 'Closed',
4267
4739
  '已申请': 'Claimed',
4268
4740
  '评估中': 'Evaluating',
4269
4741
  '超时': 'Expired',
@@ -4277,7 +4749,6 @@ const _EN = {
4277
4749
  '测评免单申请 + 进度': 'Review-refund claims + progress',
4278
4750
  '测评免单活动': 'Review-refund campaigns',
4279
4751
  'reach 达阈自动退款 · 新品冷启': 'Auto refund at reach threshold · new product cold-start',
4280
- '只能为自己买过的订单发笔记': 'You can only post notes for your own purchases',
4281
4752
  '账号关联(IP/UA 与卖家重叠)': 'Account linked (IP/UA overlaps seller)',
4282
4753
  '已订阅提醒': 'Reminder on',
4283
4754
  '提醒我': 'Remind me',
@@ -4313,21 +4784,16 @@ const _EN = {
4313
4784
  'Welcome 提交': 'Welcome submissions',
4314
4785
  '#welcome 留下的邮箱订阅 + 建议': 'Emails + ideas from #welcome',
4315
4786
  '邮箱订阅': 'Email subscribers',
4316
- '建议': 'Ideas',
4317
- '待处理': 'New',
4787
+ '待处理': 'Pending',
4318
4788
  '已查看': 'Triaged',
4319
- '已处理': 'Resolved',
4320
- '新': 'New',
4321
4789
  '邮箱': 'Email',
4322
4790
  '匿名': 'Anonymous',
4323
- '联系方式': 'Contact',
4324
4791
  '标记已查看': 'Mark triaged',
4325
4792
  '标记已处理': 'Mark resolved',
4326
4793
  '标 Spam': 'Mark spam',
4327
4794
  '已更新': 'Updated',
4328
4795
  '暂无记录': 'No records',
4329
4796
  '留言/建议': 'Ideas',
4330
- '类型': 'Type',
4331
4797
  // P1 安全加固
4332
4798
  'PII 数据:查看本页将被审计记录。请勿截屏外传。': 'PII data: viewing this page is audited. Do not screenshot/forward.',
4333
4799
  '订阅中': 'Active',
@@ -4413,7 +4879,6 @@ const _EN = {
4413
4879
  '已取消订阅': 'Unsubscribed',
4414
4880
  '订阅失败': 'Subscription failed',
4415
4881
  '确认取消推送订阅?': 'Cancel push subscription?',
4416
- '暂无评价': 'No ratings yet',
4417
4882
  '当前浏览器不支持推送通知': 'Push notifications not supported in this browser',
4418
4883
 
4419
4884
  // Wave F-1: 协议指标看板
@@ -4448,10 +4913,7 @@ const _EN = {
4448
4913
  '协议参数': 'Protocol params',
4449
4914
  '费率 / 奖励 / 上限': 'Fees / rewards / limits',
4450
4915
  '修改后立即生效,请谨慎调整': 'Changes take effect immediately — adjust with care',
4451
- '费率': 'Fees',
4452
- '奖励': 'Rewards',
4453
4916
  '上限': 'Limits',
4454
- '通用': 'General',
4455
4917
  '默认值': 'Default',
4456
4918
  '修改于': 'updated',
4457
4919
  '重置': 'Reset',
@@ -4495,7 +4957,6 @@ const _EN = {
4495
4957
  // Wave F audit fixes
4496
4958
  '← 重新查询': '← Search again',
4497
4959
  '鉴权失败': 'Auth failed',
4498
- '范围': 'Range',
4499
4960
  '注意:费率按当前 protocol_params 值追溯计算,历史费率变更未单独快照': 'Note: rates use current protocol_params retroactively; historical rate changes are not snapshotted',
4500
4961
 
4501
4962
  // Wave G-1: 钱包连接
@@ -4508,7 +4969,6 @@ const _EN = {
4508
4969
  '钱包已绑定,无需 24h 冷却': 'Wallet bound; 24h cooldown waived',
4509
4970
 
4510
4971
  // Wave G-4
4511
- '最低': 'Min',
4512
4972
 
4513
4973
  // Wave B-5: 配送时间窗
4514
4974
  '偏好配送时段(可选)': 'Preferred delivery window (optional)',
@@ -4574,19 +5034,15 @@ const _EN = {
4574
5034
  '普通上架': 'Standard listing',
4575
5035
  '标准商品 · 即买即发': 'Standard item · buy & ship immediately',
4576
5036
  '销售 / 商品 / 营销 / 自动化': 'Sales / Products / Marketing / Automation',
4577
- '看板': 'Dashboard',
4578
5037
  '营销': 'Marketing',
4579
5038
  '销售分析': 'Sales insights',
4580
5039
 
4581
5040
  // ─── AddProduct 表单 ─────
4582
- '分类': 'Category',
4583
5041
  '备货时间(小时)': 'Lead time (hours)',
4584
5042
  '外部平台商品全标题': 'External platform product full title',
4585
5043
  '例:德尔玛多功能清洁机BY100S(粘贴自源平台「」标题)': 'e.g. Deerma multi-purpose cleaner BY100S (pasted from source platform title)',
4586
5044
  '材质、尺寸、颜色、适用场景...': 'Material, dimensions, color, use case...',
4587
5045
  '售后与物流(填写越完整,Agent 越优先选择你)': 'After-sales & logistics (the more complete, the more agents prioritize you)',
4588
- '配送范围': 'Delivery region',
4589
- '预计时效': 'Estimated lead time',
4590
5046
  '每行:地区: 天数': 'Per line: region: days',
4591
5047
  '选择类目': 'Select category',
4592
5048
  '面向 Agent 检索,写核心参数而非营销语言': 'Written for agent retrieval — use core parameters, not marketing speak',
@@ -4615,7 +5071,6 @@ const _EN = {
4615
5071
  '图书': 'Books',
4616
5072
  '运动': 'Sports',
4617
5073
  '慈善': 'Charity',
4618
- '许愿池': 'Wish pool',
4619
5074
  '个人': 'Personal',
4620
5075
  '🔥 热门': '🔥 Hot',
4621
5076
  '💰 价格 ↑': '💰 Price ↑',
@@ -4685,26 +5140,18 @@ const _EN = {
4685
5140
  '你已 opted-in。如需查看状态或退出,前往 ': 'You are opted in. To view status or opt out, go to ',
4686
5141
  '你可以随时退出,不影响任何已下单或未来订单。本流程是分享分润的经济关系登记(佣金 / 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
5142
  '注:本「分享分润 / 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
5143
  '已完成订单': 'Completed orders',
4690
5144
  'Passkey 已注册': 'Passkey registered',
4691
5145
  '必需': 'required',
4692
5146
  '可选': 'optional',
4693
5147
  '同意文本': 'Consent text',
4694
- '请先完成上述未达标指标,完成后再来申请': 'Please complete the missing items above first, then come back to apply',
4695
5148
  '我已阅读全部条款,理解 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
5149
  '✅ 分享分润开通成功': '✅ Revenue sharing activated',
4702
5150
  '已从 escrow 拨回:': 'Restored from escrow:',
4703
5151
  '笔': 'entries',
4704
5152
  '分享分润已开通': 'Active',
4705
5153
  '未激活': 'Never activated',
4706
5154
  '已自动降级(consent 未确认)': 'Auto-downgraded (consent not re-confirmed)',
4707
- '已退出': 'Deactivated',
4708
5155
  'Consent version': 'Consent version',
4709
5156
  '待领 escrow': 'Pending escrow',
4710
5157
  '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 +5223,8 @@ const _EN = {
4776
5223
 
4777
5224
  // G-2: AI 价格建议
4778
5225
  'AI 建议': 'AI tip',
4779
- '建议': 'Suggested',
5226
+ '建议': 'Suggestions',
5227
+ '建议价': 'Suggested price',
4780
5228
  '区间': 'Range',
4781
5229
 
4782
5230
  // G-1: AI 文案
@@ -4789,7 +5237,6 @@ const _EN = {
4789
5237
  '实名认证': 'Identity verification',
4790
5238
  '提升账户可信度': 'Boost account trust',
4791
5239
  '已通过认证': 'Verified',
4792
- '审核中': 'Pending review',
4793
5240
  '被拒绝': 'Rejected',
4794
5241
  '上次认证被拒绝': 'Previous submission rejected',
4795
5242
  '提交真实身份信息提升账户可信度;管理员审核后通过': 'Submit real identity to boost trust; admin reviews',
@@ -4805,7 +5252,6 @@ const _EN = {
4805
5252
  '已提交,等待审核': 'Submitted, awaiting review',
4806
5253
  '请填写完整': 'Fill all fields',
4807
5254
  '证件': 'ID',
4808
- '提交于': 'Submitted at',
4809
5255
  'KYC 审核': 'KYC review',
4810
5256
  '待审实名认证': 'Pending KYC',
4811
5257
  '暂无待审核 KYC': 'No pending KYC',
@@ -4942,6 +5388,7 @@ const _EN = {
4942
5388
  // C-3: 订单保险
4943
5389
  '买保险(+1% · 卖家无力赔付时平台先行赔付)': 'Buy insurance (+1% · platform pays if seller can\'t)',
4944
5390
  '已购保险': 'Insured',
5391
+ '应付': 'Due',
4945
5392
 
4946
5393
  // C-2: 礼物订单
4947
5394
  '设为礼物(收件人 ≠ 我)': 'Gift order (recipient ≠ me)',
@@ -4970,7 +5417,6 @@ const _EN = {
4970
5417
  '编辑精选管理': 'Manage picks',
4971
5418
  '暂无精选记录': 'No picks',
4972
5419
  '添加精选': 'Add pick',
4973
- '类型': 'Type',
4974
5420
  '目标 ID': 'Target ID',
4975
5421
  '推荐语': 'Tagline',
4976
5422
  '排序值': 'Sort order',
@@ -5070,7 +5516,6 @@ const _EN = {
5070
5516
 
5071
5517
  // ── 钱包出金取消 ─────────────────────────────────────────────
5072
5518
  '待邮件确认': 'Awaiting email confirmation',
5073
- '取消': 'Cancel',
5074
5519
  '取消该提现申请?已扣余额会立即退回': 'Cancel this withdrawal request? Any deducted balance refunds immediately.',
5075
5520
  '取消失败:': 'Cancel failed: ',
5076
5521
  '已取消,退回 ': 'Cancelled, refunded ',
@@ -5195,7 +5640,7 @@ const _EN = {
5195
5640
  '事件时间线': 'Event Timeline',
5196
5641
  '条': 'events',
5197
5642
  '发起争议': 'Dispute Opened',
5198
- '提交证据': 'Evidence Submitted',
5643
+ '证据提交': 'Evidence Submitted',
5199
5644
  '被告反驳': 'Defendant Response',
5200
5645
  '仲裁员索证': 'Arbitrator Request',
5201
5646
  '仲裁裁决': 'Arbitration Ruling',
@@ -5235,7 +5680,6 @@ const _EN = {
5235
5680
  // W7 客服 ticket-thread
5236
5681
  '工单时间线': 'Ticket Timeline',
5237
5682
  '新建工单': 'Ticket Opened',
5238
- '消息': 'Message',
5239
5683
  '状态变更': 'Status Change',
5240
5684
  '已解决': 'Resolved',
5241
5685
  '已关闭': 'Closed',
@@ -5302,8 +5746,6 @@ const _EN = {
5302
5746
  '单号必填': 'Tracking # required',
5303
5747
  '单号已发送': 'Tracking sent',
5304
5748
  // 商品详情页 → 下单弹层重构(A 阶段)
5305
- '已收藏': 'Saved',
5306
- '收藏': 'Save',
5307
5749
  '已订阅': 'Subscribed',
5308
5750
  '到货提醒': 'Notify',
5309
5751
  '对比': 'Compare',
@@ -5323,7 +5765,6 @@ const _EN = {
5323
5765
  '退款': 'Refund',
5324
5766
  '新卖家': 'New seller',
5325
5767
  '单': 'orders',
5326
- '推荐指数': 'Recommend rate',
5327
5768
  '推荐': 'rec',
5328
5769
  '销售': 'sales',
5329
5770
  '评论区规则': 'Comment rules',
@@ -5363,7 +5804,6 @@ const _EN = {
5363
5804
  '科威特': 'Kuwait',
5364
5805
  '阿曼': 'Oman',
5365
5806
  '伊朗': 'Iran',
5366
- '发布': 'Publish',
5367
5807
  '选择内容形式': 'Choose content type',
5368
5808
  '笔记': 'Note',
5369
5809
  '创作笔记': 'Write note',
@@ -5421,7 +5861,6 @@ const _EN = {
5421
5861
  '生成短码 · 大 V 给外站观众的入口': 'Short code · entry for external viewers',
5422
5862
  '我买过的(可推荐)': 'My purchases (shareable)',
5423
5863
  '全部订单': 'All orders',
5424
- '我的主页': 'My profile',
5425
5864
  '我要分享': 'Ready to share',
5426
5865
  '订单分享': 'Order shares',
5427
5866
  '笔记广场': 'Notes plaza',
@@ -5454,7 +5893,6 @@ const _EN = {
5454
5893
  '分享你的使用体验、推荐理由、注意事项…\n\n💡 第一段写场景 / 第二段写细节 / 第三段写总结,更易被收藏': 'Share your experience, why recommend, what to watch out for…\n\n💡 Tip: scene → details → summary makes it more bookmark-friendly',
5455
5894
  '草稿自动保存': 'Auto-saved draft',
5456
5895
  '放弃这条笔记?草稿会被清空': 'Discard this note? Draft will be cleared',
5457
- '预览': 'Preview',
5458
5896
  '预览(仅你可见 · 关闭后回到编辑)': 'Preview (only you can see · close to edit)',
5459
5897
  '返回编辑': 'Back to edit',
5460
5898
  '正文为空,无法预览': 'Body is empty, cannot preview',
@@ -5466,9 +5904,81 @@ const _EN = {
5466
5904
  '编辑资料': 'Edit profile',
5467
5905
  '(原生内容)': '(Native content)',
5468
5906
  '赞过': 'Liked',
5469
- '收藏': 'Saved',
5907
+ '收藏': 'Save',
5470
5908
  '收藏功能即将上线': 'Bookmarks coming soon',
5471
5909
  '即将上线': 'Coming soon',
5910
+ // ── AI agent demo showcase (app-ai.js): example cards (steps / prompts) ──
5911
+ '搜索 500 WAZ 内的手工 / 健康类商品': 'Search handmade / wellness items under 500 WAZ',
5912
+ '叠加 trusted 卖家筛选': 'Add a trusted-seller filter',
5913
+ '从信誉 + 评价 + 故事性挑出 3 件': 'Pick 3 by reputation + reviews + story',
5914
+ '解析外链 → 提取标题 + 价格': 'Parse the external link → extract title + price',
5915
+ '在 WebAZ 上找同款 / 相似品': 'Find the same / similar item on WebAZ',
5916
+ '比对价格 + 信誉,给出"买 WebAZ"或"原平台"建议': 'Compare price + reputation, advise "buy on WebAZ" or "original platform"',
5917
+ '类目筛 "咖啡豆"': 'Filter category "coffee beans"',
5918
+ '逐个查卖家 4 维信誉指标': 'Check each seller across 4 reputation metrics',
5919
+ '保留达标的,挑出最优 3 件': 'Keep the qualifying ones, pick the best 3',
5920
+ '价格 ≤ 300 + 类目 "耳机"': 'Price ≤ 300 + category "earphones"',
5921
+ '读我的默认配送地址(上海)': 'Read my default shipping address (Shanghai)',
5922
+ '保留备货 ≤ 12h + ship_to 包含上海': 'Keep prep ≤ 12h + ship_to includes Shanghai',
5923
+ '推理': 'Reasoning',
5924
+ '过滤': 'Filter',
5925
+ '我妈妈 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.',
5926
+ '我看上一件商品 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.',
5927
+ '推荐 3 件咖啡豆,只要 trusted 或以上卖家,退款率低于 5%,最好准时发货率 > 90%。': 'Recommend 3 coffee beans, only trusted+ sellers, refund rate under 5%, ideally on-time shipping over 90%.',
5928
+ '我在上海,找耳机预算 300 WAZ 以内,希望能 24h 内收到,备货时间短的优先。': 'I am in Shanghai, looking for earphones within 300 WAZ, ideally delivered within 24h, shorter prep time preferred.',
5929
+ // ── AI agent chat UI (app-ai.js): task-state hints / quick templates / config ──
5930
+ '帮我找一个适合 [对象/年龄] 的礼物,预算 [金额] WAZ,要 [风格/品类] 类型': 'Find me a gift for [recipient/age], budget [amount] WAZ, [style/category] type',
5931
+ '帮我比较 [商品名/链接],找 WebAZ 上的最优价': 'Compare [product/link] and find the best price on WebAZ',
5932
+ '推荐 3 个 [品类] 商品,优先 trusted+ 卖家 + 高完成率': 'Recommend 3 [category] products, prioritizing trusted+ sellers with high completion rates',
5933
+ '我在 [地区],哪些 [品类] 商品能 24h 内发货?': 'I am in [region] — which [category] products can ship within 24h?',
5934
+ '帮我看下最近 7 天的订单状态,有没有需要确认收货的?': 'Check my order status for the last 7 days — anything to confirm as received?',
5935
+ '我想为 [场景] 配齐一套商品,预算 [金额] WAZ — 帮我规划': 'Assemble a set of products for [scenario], budget [amount] WAZ — help me plan',
5936
+ 'OpenAI 兼容 (chat/completions)': 'OpenAI-compatible (chat/completions)',
5937
+ 'Anthropic 兼容 (messages)': 'Anthropic-compatible (messages)',
5938
+ // ── AI provider catalog (app-ai.js): provider desc / keyHint / model labels ──
5939
+ '平台原生模型 · 注册即用 · 无需 API key': 'Platform-native model · ready on sign-up · no API key',
5940
+ '业内最强代理模型 · 工具调用一流 · 付费': 'Best-in-class agent model · top-tier tool use · paid',
5941
+ 'GPT-5 / GPT-4o 系列 · 付费': 'GPT-5 / GPT-4o series · paid',
5942
+ 'DeepSeek V3 / R1 · 开源协议 · 极高性价比': 'DeepSeek V3 / R1 · open-source license · great value',
5943
+ '阿里 · 有开源版 (Qwen2.5/3 全家) · DashScope 兼容 OpenAI': 'Alibaba · open-source builds (Qwen2.5/3 family) · DashScope OpenAI-compatible',
5944
+ '清华系 · GLM-4-Flash 完全免费 · 中文开发者首选': 'Tsinghua lineage · GLM-4-Flash fully free · top pick for Chinese developers',
5945
+ '长上下文之王 · 128k 稳定 · OpenAI 兼容': 'Long-context king · stable 128k · OpenAI-compatible',
5946
+ '字节 · 火山方舟 · 大厂背书 · OpenAI 兼容': 'ByteDance · Volcano Ark · big-vendor backing · OpenAI-compatible',
5947
+ 'Llama / Mixtral on Groq · 免费层 + 极快推理 · 开源': 'Llama / Mixtral on Groq · free tier + ultra-fast inference · open-source',
5948
+ '一个 key 用所有模型 · 聚合付费': 'One key for all models · aggregated · paid',
5949
+ '本机跑开源模型 · 完全离线 · 零费用 · 隐私最强': 'Run open models locally · fully offline · zero cost · best privacy',
5950
+ 'dashscope.console.aliyun.com → API-KEY 管理': 'dashscope.console.aliyun.com → API-KEY management',
5951
+ 'open.bigmodel.cn → 用户中心 → API Keys': 'open.bigmodel.cn → User Center → API Keys',
5952
+ 'platform.moonshot.cn → 用户中心 → API Key': 'platform.moonshot.cn → User Center → API Key',
5953
+ '火山引擎 → 方舟控制台 → API Key(注意:模型 ID 是 endpoint id 形式 ep-xxx)': 'Volcano Engine → Ark console → API Key (note: model ID is an endpoint id, ep-xxx)',
5954
+ 'console.groq.com → API Keys (有免费层)': 'console.groq.com → API Keys (free tier available)',
5955
+ '本地需先 `ollama serve`,默认端口 11434': 'Run `ollama serve` locally first; default port 11434',
5956
+ 'Claude Opus 4.7 (最强)': 'Claude Opus 4.7 (strongest)',
5957
+ 'Claude Sonnet 4.6 (均衡)': 'Claude Sonnet 4.6 (balanced)',
5958
+ 'Claude Haiku 4.5 (快/省,推荐)': 'Claude Haiku 4.5 (fast/cheap, recommended)',
5959
+ 'GPT-5 (最强)': 'GPT-5 (strongest)',
5960
+ 'GPT-5 mini (推荐)': 'GPT-5 mini (recommended)',
5961
+ 'GPT-4o mini (经济)': 'GPT-4o mini (budget)',
5962
+ 'DeepSeek V3 (聊天,推荐)': 'DeepSeek V3 (chat, recommended)',
5963
+ 'DeepSeek R1 (推理强)': 'DeepSeek R1 (strong reasoning)',
5964
+ 'Qwen-Max (旗舰)': 'Qwen-Max (flagship)',
5965
+ 'Qwen-Plus (推荐)': 'Qwen-Plus (recommended)',
5966
+ 'Qwen-Turbo (经济)': 'Qwen-Turbo (budget)',
5967
+ 'Qwen-VL-Max (视觉)': 'Qwen-VL-Max (vision)',
5968
+ 'GLM-4-Flash (完全免费,推荐)': 'GLM-4-Flash (fully free, recommended)',
5969
+ 'GLM-4-Plus (旗舰,付费)': 'GLM-4-Plus (flagship, paid)',
5970
+ 'GLM-4-Air (经济)': 'GLM-4-Air (budget)',
5971
+ 'GLM-Z1-Air (推理)': 'GLM-Z1-Air (reasoning)',
5972
+ 'Moonshot v1 8k (经济)': 'Moonshot v1 8k (budget)',
5973
+ 'Moonshot v1 32k (推荐)': 'Moonshot v1 32k (recommended)',
5974
+ 'Moonshot v1 128k (长文)': 'Moonshot v1 128k (long-context)',
5975
+ 'Doubao Pro 32k (旗舰,需替换为 ep-xxx)': 'Doubao Pro 32k (flagship, replace with ep-xxx)',
5976
+ 'Doubao Pro 128k (长文)': 'Doubao Pro 128k (long-context)',
5977
+ 'Doubao Lite 32k (经济)': 'Doubao Lite 32k (budget)',
5978
+ 'Llama 3.3 70B (推荐)': 'Llama 3.3 70B (recommended)',
5979
+ 'Llama 3.1 8B (极快)': 'Llama 3.1 8B (ultra-fast)',
5980
+ 'Llama 3.3 70B (开源)': 'Llama 3.3 70B (open-source)',
5981
+ 'Gemini 2.0 Flash (免费)': 'Gemini 2.0 Flash (free)',
5472
5982
  '还没赞过任何笔记 — 看到喜欢的就点 ❤': "Haven't liked any notes — tap ❤ on notes you enjoy",
5473
5983
  '还没收藏任何笔记 — 看到想保存的就点 ★': "Haven't bookmarked any notes — tap ★ on notes you want to keep",
5474
5984
  '已收藏': 'Bookmarked',
@@ -5539,7 +6049,6 @@ const _EN = {
5539
6049
  '还没有已完成订单': 'No completed orders yet',
5540
6050
  '完成首笔购买后可在这里一键推荐': 'After first purchase, recommend from here',
5541
6051
  '已分享': 'Shared',
5542
- '次': 'times',
5543
6052
  '带来': 'Brought',
5544
6053
  '写笔记': 'Note',
5545
6054
  '链接': 'Link',
@@ -5649,7 +6158,6 @@ const _EN = {
5649
6158
  '撤销原因(可空):': 'Revocation reason (optional):',
5650
6159
  '已撤销': 'Revoked',
5651
6160
  '已撤销于': 'Revoked at',
5652
- '未声明': 'Undeclared',
5653
6161
  '次调用': 'calls',
5654
6162
  '信任分': 'trust score',
5655
6163
  '新人': 'new',
@@ -5694,7 +6202,6 @@ const _EN = {
5694
6202
  '协议参与': 'Protocol participation',
5695
6203
  '判例库': 'Judgments',
5696
6204
  '我的 Agent 等级': 'My Agent tier',
5697
- '详情': 'Details',
5698
6205
  '争议判决公开': 'Public dispute rulings',
5699
6206
  'RFQ 自动报价': 'Auto-bid on RFQs',
5700
6207
  '未发布': 'None',
@@ -5734,7 +6241,8 @@ const _EN = {
5734
6241
  '去授权': 'Grant location',
5735
6242
  '最近发起的拍卖与二手 · 按时间倒序': 'Recent auctions & second-hand · by time',
5736
6243
  '上架了': 'listed',
5737
- '发起拍卖': 'opened auction',
6244
+ '发起拍卖': 'Start Auction',
6245
+ '发起了拍卖': 'opened an auction',
5738
6246
  '发布二手': 'posted second-hand',
5739
6247
  '次出价': 'bids',
5740
6248
  '暂无出价 · 先到先得': 'No bids yet · first-come-first-served',
@@ -5746,7 +6254,8 @@ const _EN = {
5746
6254
  '最近的买家求购单 · 商家可点击进入报价': "Recent buyer RFQs · sellers tap to bid",
5747
6255
  '我来发一条': 'Post one',
5748
6256
  '暂无求购动态': 'No RFQ activity',
5749
- '求购': 'requested',
6257
+ '求购': 'Buy request',
6258
+ '想买': 'wants to buy',
5750
6259
  '个报价': 'bids',
5751
6260
  '等待商家报价': 'Awaiting seller bids',
5752
6261
  '急': 'urgent',
@@ -5763,7 +6272,6 @@ const _EN = {
5763
6272
  '指南': 'Guide',
5764
6273
  '清单': 'Checklist',
5765
6274
  '次': 'use',
5766
- '审核中': 'Under review',
5767
6275
  '已上架': 'Listed',
5768
6276
  '已退回': 'Returned',
5769
6277
  '已下架': 'Delisted',
@@ -5879,6 +6387,7 @@ const _EN = {
5879
6387
  '商品图片(至少 1 张)': 'Product image (at least 1)',
5880
6388
  '商品图片': 'Product image',
5881
6389
  '分类': 'Category',
6390
+ '商品类型': 'Product type',
5882
6391
  '退货天数(>0)': 'Return days (>0)',
5883
6392
  '备货时效': 'Handling time',
5884
6393
  '配送范围': 'Ship regions',
@@ -5891,8 +6400,8 @@ const _EN = {
5891
6400
  '英文标题(跨境)': 'English title (cross-border)',
5892
6401
 
5893
6402
  // ── #1047 pre-launch 横幅 ────────────────────────────────────
5894
- '协议尚未公开上线 · 数据为测试 / demo · 请勿据此投资或承诺第三方':
5895
- 'Pre-launch protocol · data is test / demo only · do not use for investment or third-party commitments',
6403
+ '直付(direct pay)已上线,是你与卖家的真实场外付款;WebAZ 非托管——不代持、不担保、不退款 · 平台托管(escrow)尚未上线(模拟测试币)· 价格按 USDC 计价仅供展示 · 邀请制预发布,勿据此投资或向第三方承诺':
6404
+ '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
6405
  '详情': 'Details',
5897
6406
 
5898
6407
  // ── Agent 护照 Phase 4 签名导出 ──────────────────────────────
@@ -5929,7 +6438,6 @@ const _EN = {
5929
6438
  '等': 'wait',
5930
6439
  '用 Passkey 签发提交申请': 'Sign with Passkey to submit application',
5931
6440
  '请通过 Passkey / 生物识别确认...': 'Please confirm via Passkey / biometric...',
5932
- 'Passkey 签发失败:': 'Passkey signing failed:',
5933
6441
  '门槛未达标': 'Requirements not met',
5934
6442
  '申请已提交,等待 maintainer review': 'Application submitted, waiting for maintainer review',
5935
6443
 
@@ -5997,7 +6505,8 @@ const _EN = {
5997
6505
  '所有 governance application 均已 active 或未达 onboarding 完成':
5998
6506
  'All governance applications are either active or onboarding not complete',
5999
6507
  '返回 admin': 'Back to admin',
6000
- '申请': 'Application',
6508
+ '申请': 'Apply',
6509
+ '申请配额': 'Requested',
6001
6510
  'Region': 'Region',
6002
6511
  'Email': 'Email',
6003
6512
  '题目': 'Quiz',
@@ -6057,7 +6566,8 @@ const _EN = {
6057
6566
  '已 assigned 但未完成的 case 必须先完成 / 转交,否则无法卸任':
6058
6567
  'Assigned but unresolved cases must be completed / transferred before resigning',
6059
6568
  '输入': 'Type',
6060
- '确认': 'to confirm',
6569
+ '确认': 'Confirm',
6570
+ '以确认': 'to confirm',
6061
6571
  '取消': 'Cancel',
6062
6572
  'Passkey 签发卸任': 'Sign resignation with Passkey',
6063
6573
  '请求 Passkey...': 'Requesting Passkey...',
@@ -6213,6 +6723,15 @@ const _EN = {
6213
6723
  '备份已下载': 'Backup downloaded',
6214
6724
  '下载失败,请改用复制': 'Download failed — please copy instead',
6215
6725
  '账户还没有恢复方式': 'Your account has no recovery method',
6726
+ '暂时隐藏(7 天)': 'Hide for 7 days',
6727
+ '仲裁员资格(白名单)': 'Arbitrator capability (whitelist)',
6728
+ '可售区域(店铺默认;与运费无关 —— 这里是"卖不卖",运费模板是"多少钱")': 'Sellable regions (store default; independent of shipping — this is WHETHER you sell there, the shipping template is HOW MUCH)',
6729
+ '不限(全球可下单)': 'Unrestricted (orders from anywhere)',
6730
+ '仅允许这些地区': 'Only allow these regions',
6731
+ '全球可卖,但排除这些地区': 'Sell everywhere except these regions',
6732
+ '地区代码,空格分隔,如:SG MY CN': 'Region codes, space-separated, e.g. SG MY CN',
6733
+ '不可售地区的买家下单会被直接拒绝(不走询价);设置只影响之后的新订单,单品可在接口单独覆盖。': 'Orders from non-sellable regions are rejected outright (no quote path); affects only new orders, per-product override available via API.',
6734
+ '仲裁资格是白名单能力,叠加在你的买卖身份上,不是可切换角色': 'Arbitration is a whitelist capability layered on top of your buyer/seller identity — not a switchable role',
6216
6735
  '闪退或换设备清缓存后可能永久无法登录。': 'After a crash or clearing cache on a new device, you may be permanently locked out.',
6217
6736
  '立即设置密码 / 绑定邮箱': 'Set a password / bind email now',
6218
6737
  '未设置登录密码': 'No login password set',
@@ -6314,6 +6833,358 @@ const _EN = {
6314
6833
  '无限制': 'No restrictions',
6315
6834
  '如有异议可申诉': 'Appeal if you disagree',
6316
6835
  '看板仅自己可见,不做公开排行。': 'This dashboard is private to you — no public leaderboard.',
6836
+ '待卖家场外退款': 'Awaiting seller off-protocol refund',
6837
+ '卖家已声明退款 · 待你确认': 'Seller declared refund · awaiting your confirmation',
6838
+ '直付非托管:退款由卖家在协议外完成,平台只记录握手,不经手货款。': 'Direct Pay is non-custodial: the refund happens off-protocol by the seller; the platform only records the handshake and never touches the funds.',
6839
+ '你已同意退货。请在协议外向买家退款,然后声明;买家确认后退货完成。': 'You accepted the return. Refund the buyer off-protocol, then declare it; the return completes once the buyer confirms.',
6840
+ '卖家已同意退货,等待其在协议外向你退款并声明。超期未退款可升级争议。': 'Seller accepted the return and should now refund you off-protocol and declare it. If overdue, you can escalate to a dispute.',
6841
+ '已收到退款,完成退货(需 Passkey)': 'Refund received — complete return (Passkey required)',
6842
+ '你已声明退款,等待买家确认收到。提示:退回货物须验收后手动上架,库存不会自动恢复。': 'You declared the refund; awaiting buyer confirmation. Note: returned goods must be inspected and manually restocked — stock is never restored automatically.',
6843
+ '若卖家声明退款但你并未收到,可升级至平台仲裁(直付为信誉裁决)': 'If the seller declared a refund you never received, escalate to arbitration (Direct Pay rulings are reputation-only)',
6844
+ '卖家同意退货后超期未退款 — 可升级至平台仲裁(直付为信誉裁决)': 'Seller accepted the return but the refund is overdue — escalate to arbitration (Direct Pay rulings are reputation-only)',
6845
+ '确认你已在协议外向买家完成退货退款?声明后买家确认即完成;虚假声明将留痕并可被追责。': 'Confirm you have refunded the buyer off-protocol for this return? Once the buyer confirms, the return completes; false declarations are recorded and accountable.',
6846
+ '确认已收到卖家退款?确认后退货完成,不可撤销。若尚未到账请勿确认。': 'Confirm you received the seller\'s refund? The return completes irreversibly. Do NOT confirm if the money has not arrived.',
6847
+ '已收到,完成退货': 'Received — complete return',
6848
+ '退货已完成': 'Return completed',
6849
+ '已收到退货': 'Return goods received',
6850
+ '确定升级到仲裁?直付订单为信誉裁决:仲裁不经手资金,按证据对卖家作信誉处罚。': 'Escalate to arbitration? Direct Pay rulings are reputation-only: arbitration never touches funds and penalizes the seller\'s reputation based on evidence.',
6851
+ '直付退款在协议外完成,金额为参考': 'Direct Pay refunds happen off-protocol; this amount is a reference',
6852
+ '同意退货(场外退款)': 'Accept return (off-protocol refund)',
6853
+ '直付履约保证金': 'Direct Pay performance bond',
6854
+ '未收到货 / 有问题?': 'Not received / something wrong?',
6855
+ '描述问题(未收到 / 货不对版 / 货损等)': 'Describe the issue (not received / wrong item / damaged, etc.)',
6856
+ '未收到货?可先联系卖家核实(可能晚到或放了代收点)。确认异常再提交 —— 发起争议后自动确认将暂停,不会因超时被视为已收货。': 'Not received? Check with the seller first (it may be late or at a pickup point). Submit once confirmed abnormal — opening a dispute PAUSES auto-confirmation, so you will not be deemed to have received it by timeout.',
6857
+ '待审申诉队列(批准=立即解封)/ 主动签发 strike': 'Pending appeal queue (approve = unblock now) / issue strikes manually',
6858
+ '已签发': 'Issued',
6859
+ '确认签发 strike?suspend_7d/permanent 将立即阻断该 key 的所有访问。': 'Issue this strike? suspend_7d/permanent immediately blocks all access for the key.',
6860
+ 'reason_code(如 spam / fake_shipment)': 'reason_code (e.g. spam / fake_shipment)',
6861
+ '主动签发 strike(慎用)': 'Issue a strike manually (use sparingly)',
6862
+ '已批准,60 秒内解封': 'Approved — unblocks within 60s',
6863
+ '批准(立即解封)': 'Approve (unblock now)',
6864
+ '签发详情': 'Issue detail',
6865
+ '申诉批准=立即解封(60 秒缓存内生效);驳回=按期自动解除。真人(绑 Passkey)已豁免速率封禁,此页主要处理 agent 与历史误封。': 'Approving an appeal unblocks immediately (within the 60s cache); denial lets it lapse at expiry. Passkey-bound humans are now exempt from rate strikes — this page mainly handles agents and historical false positives.',
6866
+ 'Agent 封禁与申诉': 'Agent strikes & appeals',
6867
+ '申诉已提交': 'Appeal submitted',
6868
+ '申诉理由 ≥10 字': 'Appeal reason must be ≥10 chars',
6869
+ '退出(换个账号登录)': 'Sign out (use another account)',
6870
+ '申诉被驳回;封禁将按期自动解除。': 'Appeal denied; the suspension lifts automatically at expiry.',
6871
+ '申诉已提交,等待管理员审核;审核通过后重新登录即可。': 'Appeal submitted — awaiting admin review; log in again once approved.',
6872
+ '提交申诉(等待管理员审核)': 'Submit appeal (awaits admin review)',
6873
+ '申诉理由(≥10 字;说明误触发原因,如页面挂机轮询/误操作)': 'Appeal reason (≥10 chars; explain the false trigger, e.g. idle PWA polling / misoperation)',
6874
+ '申诉状态': 'Appeal status',
6875
+ '到期自动解除': 'Auto-lifts at',
6876
+ '签发': 'Issued',
6877
+ '未发现生效中的封禁,请重新登录试试': 'No active suspension found — try logging in again',
6878
+ '加载失败,请重试(确认 key 完整)': 'Failed to load — retry (check the key is complete)',
6879
+ '账号处于暂停期': 'Account suspended',
6880
+ '申诉被驳回': 'Appeal denied',
6881
+ '申诉通过(已解封)': 'Appeal approved (unblocked)',
6882
+ '未申诉': 'Not appealed',
6883
+ '永久封禁': 'Permanently banned',
6884
+ '暂停 7 天': 'Suspended 7 days',
6885
+ '警告': 'Warning',
6886
+ '保证金条款': 'Bond terms',
6887
+ '我已阅读并同意当前版本保证金条款(缴纳前必须同意)': 'I have read and agree to the current bond terms (required before depositing)',
6888
+ '保证金缓交即将到期': 'Bond deferral expiring soon',
6889
+ '你的缓交资格将于 {expires} 到期。请在到期前缴纳履约保证金转正式(设置页-直付履约保证金),否则宽限期后直付资格将关闭。': 'Your deferral expires at {expires}. Deposit the performance bond before then to convert to formal standing (Settings → Direct Pay performance bond); otherwise Direct Pay eligibility closes after the grace period.',
6890
+ '保证金缓交已到期': 'Bond deferral expired',
6891
+ '缓交资格已到期。若未缴纳保证金,直付资格已关闭(缴纳并经运营确认后可重新开通);在途订单不受影响,请正常履约完成。': 'Your deferral has expired. If the bond was not deposited, Direct Pay eligibility is now closed (deposit and pass operator confirmation to re-enable); in-flight orders are unaffected — please fulfil them normally.',
6892
+ '保证金罚没提案(待复核)': 'Bond slash proposal (pending review)',
6893
+ '因争议 {dispute} 裁定卖家责任,平台已发起保证金罚没提案。冷静期 {days} 天内如有异议请联系平台并提供依据;冷静期满后将复核执行(全额罚没,进入处罚金专户,平台不获益)。': 'Following the seller-fault ruling in dispute {dispute}, the platform opened a bond slash proposal. If you disagree, contact the platform with evidence within the {days}-day cooling window; after it, the proposal is re-reviewed and executed (full slash into the penalty reserve — the platform does not profit).',
6894
+ '保证金罚没提案已撤销': 'Bond slash proposal cancelled',
6895
+ '此前的罚没提案经复核已撤销,你的保证金不受影响。': 'The earlier slash proposal was cancelled on review; your bond is unaffected.',
6896
+ '保证金已罚没': 'Bond slashed',
6897
+ '依据争议 {dispute} 的卖家责任裁定,你的履约保证金已全额罚没(进入处罚金专户,平台不获益),直付资格已吊销。重新缴纳保证金并通过审核后可再次申请开通。': 'Per the seller-fault ruling in dispute {dispute}, your performance bond was slashed in full (into the penalty reserve — the platform does not profit) and your Direct Pay eligibility revoked. Deposit again and pass review to re-apply.',
6898
+ '保证金罚没提案待复核': 'Bond slash proposal pending review',
6899
+ '依据争议': 'Based on dispute',
6900
+ '冷静期至': 'Cooling until',
6901
+ '如有异议请在此期间联系平台并提供依据。': 'If you disagree, contact the platform with evidence during this window.',
6902
+ '罚没提案': 'Slash proposals',
6903
+ '人工铁律:提案→冷静期→Passkey 执行,绝不自动': 'human-only iron rule: propose → cooling → Passkey execute, never automatic',
6904
+ '仅「仲裁裁定卖家责的直付争议」可提案(refund_buyer / partial_refund);v1 全额罚没,进处罚金专户(只进不出),平台不获益。对 locked 行用下方表单提案。': 'Only Direct Pay disputes RULED against the seller (refund_buyer / partial_refund) qualify; v1 slashes the full bond into the penalty reserve (inflow-only) — the platform does not profit. Use the form below against a locked deposit.',
6905
+ 'deposit_id': 'deposit_id',
6906
+ '依据 dispute_id': 'basis dispute_id',
6907
+ '说明(卖家可见,可选)': 'Note (visible to seller, optional)',
6908
+ '发起提案': 'Open proposal',
6909
+ '暂无罚没提案': 'No slash proposals',
6910
+ '待执行(冷静期)': 'Pending (cooling)',
6911
+ '已执行': 'Executed',
6912
+ '存款': 'Deposit',
6913
+ '执行罚没(Passkey;冷静期未满会被拒)': 'Execute slash (Passkey; rejected before cooling ends)',
6914
+ '撤销提案': 'Cancel proposal',
6915
+ '须提供 deposit_id 与依据 dispute_id': 'deposit_id and basis dispute_id are required',
6916
+ '提案已发起,卖家已通知(冷静期=申诉窗)': 'Proposal opened; seller notified (cooling window = appeal window)',
6917
+ '确认执行罚没?保证金将全额进入处罚金专户(不可逆),卖家直付资格吊销。': 'Execute the slash? The full bond goes to the penalty reserve (irreversible) and the seller\'s Direct Pay eligibility is revoked.',
6918
+ '执行罚没': 'Execute slash',
6919
+ '罚没已执行,卖家已通知': 'Slash executed; seller notified',
6920
+ '撤销说明(卖家可见,可空)': 'Cancellation note (visible to seller, optional)',
6921
+ '提案已撤销': 'Proposal cancelled',
6922
+ '保证金退出申请待处理': 'Bond exit request pending',
6923
+ '卖家 {seller} 申请退还履约保证金(冷静期 {days} 天,期间其直付资格已暂停)。冷静期满且复核无未了结责任后,场外退还并在 admin 后台记录执行。': 'Seller {seller} requested a performance-bond refund (cooling window {days} days; their Direct Pay privilege is suspended meanwhile). After the window and a clean liability re-check, refund off-protocol and record execution in the admin console.',
6924
+ '履约保证金已退还': 'Performance bond refunded',
6925
+ '你的保证金已在协议外退还并记录(凭据:{evidence})。直付资格随保证金退出关闭;重新缴纳后可再次开通。': 'Your bond was refunded off-protocol and recorded (evidence: {evidence}). Direct Pay eligibility closes with the bond exit; deposit again to re-enable.',
6926
+ '有在途直付订单': 'Open Direct Pay orders',
6927
+ '取消退款握手进行中': 'Cancel-refund handshake in progress',
6928
+ '退货/售后流进行中': 'Return/after-sales flow in progress',
6929
+ '平台服务费欠费未结清': 'Unpaid platform service fees',
6930
+ '申请退出并退还保证金': 'Request exit & bond refund',
6931
+ '申请后进入': 'After requesting, a',
6932
+ '天冷静期,期间直付资格暂停;可随时撤销。': '-day cooling window starts; Direct Pay eligibility is suspended meanwhile. Cancel anytime.',
6933
+ '暂不能申请退还 —— 有未了结的直付责任': 'Refund unavailable — outstanding Direct Pay liabilities',
6934
+ '退出申请处理中': 'Exit request in progress',
6935
+ '冷静期': 'Cooling window',
6936
+ '自申请时起': 'from request time',
6937
+ '期间直付资格暂停。冷静期满、复核无未了结责任后平台场外退还并记录。': 'Direct Pay eligibility is suspended meanwhile. After the window and a clean liability re-check, the platform refunds off-protocol and records it.',
6938
+ '撤销退出申请(恢复资格)': 'Cancel exit request (restore eligibility)',
6939
+ '保证金已退还': 'Bond refunded',
6940
+ '直付资格已关闭,重新缴纳后可再次开通。': 'Direct Pay eligibility is closed; deposit again to re-enable.',
6941
+ '确认申请退出并退还保证金?冷静期内你的直付资格将暂停(不可接新直付单),可随时撤销。': 'Request exit & bond refund? Your Direct Pay eligibility is suspended during the cooling window (no new Direct Pay orders); you may cancel anytime.',
6942
+ '申请退出': 'Request exit',
6943
+ '有未了结的直付责任,暂不能申请退还': 'Outstanding Direct Pay liabilities — refund unavailable for now',
6944
+ '退出申请已提交,进入冷静期': 'Exit request submitted — cooling window started',
6945
+ '已撤销,直付资格已恢复': 'Cancelled — Direct Pay eligibility restored',
6946
+ '已场外退还,记录执行(Passkey)': 'Refunded off-protocol — record execution (Passkey)',
6947
+ '冷静期未满或复核有未了结责任会被拒,属预期': 'Rejected if the cooling window is not over or liabilities re-check fails — expected',
6948
+ '场外退还凭据(转账单号/链上 tx,必填)': 'Off-protocol refund evidence (transfer no. / on-chain tx, required)',
6949
+ '退还已记录,卖家已通知': 'Refund recorded; seller notified',
6950
+ '履约保证金:核对到账 → 确认锁定 / 驳回(双锁 fail-closed)': 'Performance bond: verify arrival → confirm & lock / reject (double-locked fail-closed)',
6951
+ '要求额度': 'Required amount',
6952
+ '当前状态': 'Current status',
6953
+ '未缴纳': 'Not deposited',
6954
+ '待运营核实': 'Awaiting operator verification',
6955
+ '已核实待锁定': 'Verified, awaiting lock',
6956
+ '已锁定生效': 'Locked & effective',
6957
+ '金额不足待补缴': 'Insufficient — top-up needed',
6958
+ '已失效/被驳回': 'Expired / rejected',
6959
+ '退还中': 'Refunding',
6960
+ '已退还': 'Refunded',
6961
+ '已被罚没': 'Slashed',
6962
+ '凭据': 'Evidence',
6963
+ '驳回说明': 'Rejection note',
6964
+ '缓交生效中': 'Deferral active',
6965
+ '额度受限;缴清保证金后转正式': 'quota reduced; pay the bond in full to convert',
6966
+ '缴纳方式': 'How to pay',
6967
+ '转账后提交凭据申报': 'transfer first, then declare with evidence',
6968
+ '暂无收款方式,请联系平台': 'No payment method published — contact the platform',
6969
+ '付款凭据号(转账单号/链上 tx,必填)': 'Payment evidence ref (transfer no. / on-chain tx, required)',
6970
+ '提交缴纳申报': 'Submit deposit declaration',
6971
+ '撤回申报': 'Withdraw declaration',
6972
+ '付款凭据号必填': 'Payment evidence ref is required',
6973
+ '申报已提交,等待运营核实': 'Declaration submitted — awaiting operator verification',
6974
+ '确认撤回保证金缴纳申报?': 'Withdraw this bond deposit declaration?',
6975
+ '保证金缴纳申报': 'Bond deposit declarations',
6976
+ '卖家的履约保证金缴纳申报。请【核对凭据对应的真实到账】后确认(ROOT+Passkey,双锁:生产放行 registry 未开时确认会被拒,属预期 fail-closed);核不上则驳回(留说明)。': 'Sellers\' performance-bond deposit declarations. VERIFY the real funds arrival against the evidence before confirming (ROOT + Passkey; double-locked: while the production-clearance registry is closed, confirmation is rejected — expected fail-closed). Reject with a note if it does not reconcile.',
6977
+ '暂无申报': 'No declarations',
6978
+ '申报单': 'Declaration',
6979
+ '要求': 'Required',
6980
+ '已核实到账,确认锁定(Passkey)': 'Funds verified — confirm & lock (Passkey)',
6981
+ '核不上,驳回': 'Cannot reconcile — reject',
6982
+ '法域代码(须在放行白名单内,如 SG)': 'Jurisdiction code (must be in the cleared allowlist, e.g. SG)',
6983
+ '生产放行 registry 未开(法务清门后翻转)—— 确认被拒属预期 fail-closed': 'Production clearance registry is closed (flips after legal clearance) — rejection is the expected fail-closed behavior',
6984
+ '已确认锁定,卖家保证金门已满足': 'Confirmed & locked — the seller\'s bond gate is now satisfied',
6985
+ '驳回说明(卖家可见,可空)': 'Rejection note (visible to seller, optional)',
6986
+ '新保证金缴纳申报待核实': 'New bond deposit declaration pending verification',
6987
+ '卖家 {seller} 申报已缴纳履约保证金(T0,凭据 {evidence})。请核对真实到账后在 admin 后台确认(ROOT+Passkey)。': 'Seller {seller} declared a performance-bond deposit (T0, evidence {evidence}). Verify the real funds arrival, then confirm in the admin console (ROOT + Passkey).',
6988
+ '履约保证金已确认锁定': 'Performance bond confirmed & locked',
6989
+ '你的保证金已核实到账并正式锁定,直付入场的保证金门已满足。退出时可申请退还(须无未了结直付责任)。': 'Your bond was verified and formally locked; the Direct Pay bond entry gate is satisfied. On exit you may request a refund (requires no outstanding Direct Pay liabilities).',
6990
+ '保证金申报未通过核实': 'Bond declaration failed verification',
6991
+ '你的保证金缴纳申报未通过核实{note}。请核对付款凭据后重新提交,或联系平台。': 'Your bond deposit declaration failed verification{note}. Check your payment evidence and resubmit, or contact the platform.',
6992
+ '待卖家接单': 'Awaiting seller acceptance',
6993
+ '等待卖家确认接单': 'Awaiting seller order confirmation',
6994
+ '新直付订单,待你确认接单': 'New Direct Pay order — please confirm acceptance',
6995
+ '商品「{product}」× {qty},应付 {amount} USDC。请在 {hours} 小时内确认接单(核实可发货/物流),超时订单自动取消;接单后买家才会看到收款方式。': '"{product}" × {qty}, {amount} USDC due. Confirm acceptance within {hours} hours (verify stock/logistics); the order auto-cancels on timeout. The buyer only sees payment details after you accept.',
6996
+ '卖家已确认接单,请付款': 'Seller accepted — please pay',
6997
+ '卖家已确认可发货并接单。请在 {hours} 小时内完成风险确认后查看收款方式并付款;逾期未付订单将进入超时流程。': 'The seller confirmed they can ship and accepted the order. Complete the risk acknowledgment, view the payment details and pay within {hours} hours; overdue orders enter the timeout flow.',
6998
+ '卖家未能接单,订单已取消': 'Seller could not accept — order cancelled',
6999
+ '卖家未能确认发货{reason}。订单已无责取消 —— 你尚未付款,无需任何操作;双方信誉均不受影响。': 'The seller could not confirm shipping{reason}. The order was cancelled no-fault — you have not paid and nothing is required; neither side takes a reputation hit.',
7000
+ '买家已撤单': 'Buyer withdrew the order',
7001
+ '买家在你确认接单前撤回了订单。订单已无责取消,库存已恢复。': 'The buyer withdrew before you accepted. The order was cancelled no-fault and stock restored.',
7002
+ '卖家超时未接单,订单已取消': 'Seller acceptance timed out — order cancelled',
7003
+ '卖家未在接单窗口内确认,订单已自动取消 —— 你尚未付款,无需任何操作。可换商品或联系卖家后重新下单。': 'The seller did not confirm within the acceptance window; the order auto-cancelled — you have not paid and nothing is required. Try another product or reorder after contacting the seller.',
7004
+ '订单因超时未接单已取消': 'Order cancelled: acceptance timed out',
7005
+ '你未在接单窗口内确认接单,订单已自动取消,库存已恢复。频繁超时会影响买家体验,可考虑改用自动接单或缩短响应时间。': 'You did not confirm within the acceptance window; the order auto-cancelled and stock was restored. Frequent timeouts hurt buyer experience — consider auto-accept or faster responses.',
7006
+ '新直付订单(模板外地区),待你报价运费': 'New Direct Pay order (region outside template) — please quote shipping',
7007
+ '商品「{product}」× {qty},货款 {amount} USDC,收货地区 {region} 不在你的运费模板内。请在 {hours} 小时内核实可达并报价(运费+预计时效),买家确认后才进入付款;超时订单自动取消。': '"{product}" × {qty}, goods {amount} USDC; destination {region} is outside your shipping template. Verify deliverability and quote (fee + ETA) within {hours} hours; payment starts only after the buyer confirms. Auto-cancels on timeout.',
7008
+ '卖家已报价运费,请确认': 'Seller quoted shipping — please confirm',
7009
+ '卖家确认可发货并报价:运费 {fee} USDC{est} 天。新总额 {total} USDC。请在 {hours} 小时内确认(确认后进入付款环节)或撤单;逾期订单自动取消。': 'The seller confirmed deliverability and quoted: shipping {fee} USDC{est} days. New total {total} USDC. Confirm within {hours} hours (payment starts after confirmation) or withdraw; overdue orders auto-cancel.',
7010
+ '买家已确认运费报价': 'Buyer confirmed the shipping quote',
7011
+ '买家已确认新总额 {total} USDC(含运费 {fee}),订单进入付款窗口。买家完成场外付款并标记后你会收到发货提醒。': 'The buyer confirmed the new total {total} USDC (incl. {fee} shipping); the order entered the payment window. You will get a ship reminder once the buyer pays off-protocol and marks it.',
7012
+ '收货国家/地区': 'Ship-to country/region',
7013
+ '请选择': 'Select',
7014
+ '其他地区(通用运费)': 'Other regions (flat fee)',
7015
+ '其他地区(需卖家报价运费,直付)': 'Other region (seller quotes shipping; Direct Pay)',
7016
+ '地区代码,如 US / JP / DE': 'Region code, e.g. US / JP / DE',
7017
+ '模板内地区运费自动计入总额;其他地区由卖家先报价、你确认后再付款。': 'Template regions add shipping to the total automatically; for other regions the seller quotes first and you pay after confirming.',
7018
+ '运费按所选地区自动计入订单总额。': 'Shipping is added to the order total based on the selected region.',
7019
+ '询价接单(模板外地区)': 'Quote-on-accept (region outside template)',
7020
+ '收货地区': 'Ship-to region',
7021
+ '不在你的运费模板内。请核实物流可达性后报价;买家确认新总额后订单才进入付款。': 'is outside your shipping template. Verify deliverability then quote; the order enters payment only after the buyer confirms the new total.',
7022
+ '运费(USDC)': 'Shipping fee (USDC)',
7023
+ '预计时效,如 10-15': 'ETA in days, e.g. 10-15',
7024
+ '备注(物流方式等,可选,买家可见)': 'Note (carrier etc., optional, visible to buyer)',
7025
+ '提交报价': 'Submit quote',
7026
+ '无法配送,谢绝': 'Cannot deliver — decline',
7027
+ '你已报价': 'You quoted',
7028
+ '等待买家确认;确认前可重新报价修正。': 'Awaiting buyer confirmation; you may re-quote to correct before then.',
7029
+ '修正运费(USDC)': 'Corrected shipping fee (USDC)',
7030
+ '重新报价': 'Re-quote',
7031
+ '买家已下单(尚未付款)。请核实库存与物流后确认接单;接单后买家才会看到收款方式。': 'The buyer placed an order (not yet paid). Verify stock and logistics, then accept; the buyer only sees payment details after acceptance.',
7032
+ '谢绝理由(选填,买家可见)': 'Decline reason (optional, visible to buyer)',
7033
+ '确认接单': 'Accept order',
7034
+ '无法接单,谢绝': 'Cannot accept — decline',
7035
+ '卖家已报价': 'Seller quoted',
7036
+ '新总额': 'New total',
7037
+ '货款': 'Goods',
7038
+ '接受报价,进入付款': 'Accept quote & proceed to payment',
7039
+ '不接受,撤单': 'Reject & withdraw',
7040
+ '等待卖家核实物流并报价运费;确认报价前你无需付款。': 'Waiting for the seller to verify logistics and quote shipping; you pay nothing before confirming the quote.',
7041
+ '等待卖家确认接单;接单后你才会看到收款方式并进入付款。': 'Waiting for the seller to accept; payment details appear only after acceptance.',
7042
+ '撤回订单': 'Withdraw order',
7043
+ '响应截止': 'Respond by',
7044
+ '超时自动取消,无人担责': 'auto-cancels on timeout, no fault to anyone',
7045
+ '已接单,买家进入付款环节': 'Accepted — buyer proceeds to payment',
7046
+ '确认谢绝接单?订单将无责取消(买家尚未付款),库存自动恢复。': 'Decline this order? It will be cancelled no-fault (the buyer has not paid) and stock restored.',
7047
+ '谢绝接单': 'Decline order',
7048
+ '确认撤回订单?订单将无责取消,你尚未付款,无需任何操作。': 'Withdraw this order? It will be cancelled no-fault; you have not paid and nothing else is required.',
7049
+ '请填写合法运费': 'Enter a valid shipping fee',
7050
+ '已报价,等待买家确认': 'Quoted — awaiting buyer confirmation',
7051
+ '确认接受报价?订单总额将变为 {total} USDC(含运费),随后进入付款环节。': 'Accept the quote? The order total becomes {total} USDC (incl. shipping) and payment begins.',
7052
+ '接受报价': 'Accept quote',
7053
+ '已确认,进入付款环节': 'Confirmed — proceeding to payment',
7054
+ '接单与运费(店铺默认)': 'Acceptance & shipping (store defaults)',
7055
+ '单品可在接单/运费接口单独覆盖;设置只影响之后的新订单。': 'Per-product overrides are available via the acceptance/shipping APIs; settings affect only future orders.',
7056
+ '接单模式': 'Acceptance mode',
7057
+ '默认(自动接单)': 'Default (auto-accept)',
7058
+ '自动接单(下单/付款后直接进入下一环节)': 'Auto-accept (orders proceed immediately after placement/payment)',
7059
+ '手动接单(直付:买家付款前须你确认;担保:维持付款后确认)': 'Manual accept (Direct Pay: you confirm BEFORE the buyer pays; escrow: post-payment confirmation as today)',
7060
+ '运费模板(每行:地区代码 运费 [预计时效];* 为其余地区兜底;满额免邮在「营销」页配置)': 'Shipping template (per line: REGION fee [ETA]; * = rest of world; free-shipping threshold lives in Marketing)',
7061
+ '满额免邮': 'Free shipping over X',
7062
+ '拉客单价 · 运费你承担': 'Lift order size · you absorb shipping',
7063
+ '满额免邮(店铺默认)': 'Free shipping threshold (store default)',
7064
+ '买家券后货款(不含保险/捐赠)达到阈值时,本单运费免收、由你承担。人工询价订单不适用;单品可经接口单独覆盖;只影响之后的新订单。': "When the buyer's post-coupon goods subtotal (excl. insurance/donation) reaches the threshold, shipping is free — you absorb it. Manual-quote orders exempt; per-product override via API; affects only new orders.",
7065
+ '阈值金额(留空=关闭)': 'Threshold amount (empty = off)',
7066
+ '保存免邮设置': 'Save free-shipping setting',
7067
+ '本商品:接单 / 运费 / 可售区 / 税费(留空=用店铺默认)': 'This listing: acceptance / shipping / sellable regions / tax (blank = use store default)',
7068
+ '运费模板(每行:地区码 运费 [时效];* 兜底;留空=继承)': 'Shipping template (per line: REGION fee [ETA]; * = fallback; blank = inherit)',
7069
+ '模板外地区询价(直付)': 'Quote for regions outside template (direct pay)',
7070
+ '继承店铺默认': 'Inherit store default',
7071
+ '继承/不限': 'Inherit / unrestricted',
7072
+ '仅允许': 'Allow only',
7073
+ '全球除外': 'Worldwide except',
7074
+ '地区码(空格分隔)': 'Region codes (space-separated)',
7075
+ '进口责任': 'Import responsibility',
7076
+ '继承/不声明': 'Inherit / not declared',
7077
+ '价内已含税(每行:地区码 税名 [税率%];留空=继承)': 'Included tax (per line: REGION LABEL [rate%]; blank = inherit)',
7078
+ '跨境清关字段(证据用,可选)': 'Cross-border customs fields (evidence, optional)',
7079
+ '重量 kg': 'Weight kg',
7080
+ '尺寸 长x宽x高cm': 'Size LxWxH cm',
7081
+ '发货国码': 'Ship-from country',
7082
+ '原产国码': 'Country of origin',
7083
+ 'HS 编码': 'HS code',
7084
+ '报关英文品名': 'Customs description (EN)',
7085
+ '商品已建,单品配送/税费设置失败:': 'Product created, but per-listing shipping/tax settings failed: ',
7086
+ '单品配送/税费设置失败:': 'Per-listing shipping/tax settings failed: ',
7087
+ '商品已存为仓库(未公开),配送/税费设置失败,请到「我的商品」编辑修复后上架:': 'Product saved to warehouse (not public) — shipping/tax setup failed; fix it in "My products" then list it: ',
7088
+ '继承': 'Inherit',
7089
+ '手动接单': 'Manual acceptance',
7090
+ '开': 'On',
7091
+ '关': 'Off',
7092
+ '可售区域': 'Sellable regions',
7093
+ '满额免邮阈值': 'Free-shipping threshold',
7094
+ '阈值必须是正数': 'Threshold must be a positive number',
7095
+ '进口关税/税:到境自付(DDU)': 'Import duty/tax: paid by you on arrival (DDU)',
7096
+ '本商品价格不含目的国进口关税/税;跨境到货时可能由承运人向你收取,金额由海关核定,与卖家/平台无关。': "This price excludes destination import duty/tax; on cross-border arrival the carrier may collect it from you, set by customs — not by the seller or platform.",
7097
+ '进口关税/税:卖家已含(DDP)': 'Import duty/tax: included by seller (DDP)',
7098
+ '卖家声明价格已包含目的国进口关税/税,正常到货应无额外费用。': 'The seller states the price already includes destination import duty/tax; normal delivery should carry no extra charge.',
7099
+ '价内已含': 'Included in price',
7100
+ '购买条款': 'Purchase terms',
7101
+ '发往': 'ships to',
7102
+ '暂时无法下单': 'Ordering unavailable',
7103
+ '平台合规配置异常,该商品暂时无法下单,请稍后再试。': 'Platform compliance configuration error; this item cannot be ordered right now — please try again later.',
7104
+ '该商品设有可售地区限制,请填写收货地区以确认可否下单。': 'This item has sellable-region limits; enter your destination to confirm whether you can order.',
7105
+ '该商品按可售地区下单,运费以卖家约定为准。': 'This item ships to its sellable regions; shipping is per the seller\'s arrangement.',
7106
+ '该地区不可售': 'Not available to this region',
7107
+ '平台合规限制:该商品暂不支持销售到所选地区。': 'Platform compliance restriction: this item cannot currently be sold to the selected region.',
7108
+ '卖家未将所选地区设为可售范围,该地区暂不可下单。': 'The seller has not set the selected region as sellable; orders to this region are unavailable.',
7109
+ '该商品设有可售地区限制,请选择收货地区确认。': 'This item has sellable-region limits; select a destination to confirm.',
7110
+ '免运费': 'Free shipping',
7111
+ '约': 'approx.',
7112
+ '该地区需卖家先报运费,确认后再付款(直付)。': 'This region requires the seller to quote shipping first; pay after you confirm (Direct Pay).',
7113
+ '卖家暂不配送到该地区。': 'The seller does not ship to this region.',
7114
+ '税费与进口责任为卖家自行声明,平台不代收代缴税费(直付非托管)。': 'Tax and import responsibility are the seller\'s own declaration; the platform does not collect or remit tax (Direct Pay is non-custodial).',
7115
+ '税费与进口责任(卖家声明)': 'Tax & import responsibility (seller-declared)',
7116
+ '以上为卖家自行声明,平台不代收代缴税费。': 'The above is the seller\'s own declaration; the platform does not collect or remit tax.',
7117
+ '跨境进口责任(店铺默认;卖家声明,平台不代收税)': 'Cross-border import responsibility (store default; seller-declared, platform does not collect tax)',
7118
+ '不声明(默认)': 'Not declared (default)',
7119
+ 'DDU — 买家到境自付关税/税': 'DDU — buyer pays duty/tax on arrival',
7120
+ 'DDP — 卖家已含关税/税': 'DDP — seller includes duty/tax',
7121
+ '价内已含税声明(每行:地区码 税名 [税率%];* 为通用;如 SG GST 9)': 'Included-tax declaration (per line: REGION LABEL [rate%]; * = all; e.g. SG GST 9)',
7122
+ '仅"价内已含"披露;向买家加收的税暂不支持(平台不代收)。设置只影响之后的新订单。': 'Only "included-in-price" disclosure; tax added on top of the price is not supported yet (platform does not collect). Affects only new orders.',
7123
+ '接受模板外地区询价(直付):先报运费/时效,买家确认后再付款': 'Accept quotes for regions outside the template (Direct Pay): quote fee/ETA first, buyer pays after confirming',
7124
+ '保存接单与运费设置': 'Save acceptance & shipping settings',
7125
+ '格式错误': 'Bad format',
7126
+ '加载失败,请刷新': 'Failed to load — please refresh',
7127
+ '运费': 'Shipping',
7128
+ '新订单': 'New order',
7129
+ '{buyer} 下单了「{product}」,金额 {amount} WAZ。请在 24h 内接单,否则自动退款。': '{buyer} ordered "{product}" for {amount} WAZ. Accept within 24h or the order auto-refunds.',
7130
+ '卖家已接单': 'Seller accepted your order',
7131
+ '{seller} 已接受你的订单,预计 5 天内发货。': '{seller} accepted your order — expected to ship within 5 days.',
7132
+ '订单「{product}」已取消,{amount} WAZ 将原路退回。': 'Order "{product}" was cancelled; {amount} WAZ will be refunded to your wallet.',
7133
+ '商品已发货': 'Item shipped',
7134
+ '{seller} 已发货,物流 48h 内揽收后你可以追踪包裹。': '{seller} has shipped. Once logistics picks it up (within 48h) you can track the parcel.',
7135
+ '物流已揽收': 'Parcel picked up',
7136
+ '包裹已由 {logistics} 揽收,正在运输中。': 'Parcel picked up by {logistics} and now in transit.',
7137
+ '物流方': 'the carrier',
7138
+ '包裹运输中': 'Parcel in transit',
7139
+ '你的「{product}」正在运输途中。': 'Your "{product}" is on its way.',
7140
+ '包裹已投递': 'Parcel delivered',
7141
+ '你的包裹已送达,请确认收货。72 小时内未确认将自动完成。': 'Your parcel was delivered — please confirm receipt. It auto-completes after 72 hours.',
7142
+ '买家确认收货': 'Buyer confirmed receipt',
7143
+ '{buyer} 已确认收货,{amount} WAZ 结算中。': '{buyer} confirmed receipt; {amount} WAZ is settling.',
7144
+ '{buyer} 已确认收货,订单完成。直付为非托管:货款由你与买家场外结算,协议不代收、无平台资金入账。': '{buyer} confirmed receipt; order complete. Direct Pay is non-custodial: payment settles off-protocol between you and the buyer — the protocol collects nothing and no platform funds are credited.',
7145
+ '交易完成,资金到账': 'Trade complete — funds credited',
7146
+ '订单「{product}」交易完成,收益已入账,查看钱包确认。': 'Order "{product}" is complete and your proceeds are credited — check your wallet.',
7147
+ '交易完成': 'Trade complete',
7148
+ '订单「{product}」交易完成。直付为非托管:无平台资金结算,货款以你与买家场外结算为准。': 'Order "{product}" is complete. Direct Pay is non-custodial: no platform settlement — payment is whatever you and the buyer settled off-protocol.',
7149
+ '买家发起争议': 'Buyer opened a dispute',
7150
+ '{buyer} 对订单「{product}」发起了争议。请在 48 小时内提交反驳证据,否则协议自动裁定退款。': '{buyer} opened a dispute on order "{product}". Submit rebuttal evidence within 48 hours or the protocol auto-rules a refund.',
7151
+ '{buyer} 对订单「{product}」发起了争议,请在 48h 内回应。': '{buyer} opened a dispute on order "{product}" — please respond within 48h.',
7152
+ '发生争议': 'Dispute opened',
7153
+ '订单「{product}」出现争议,请提交相关证据。': 'A dispute was opened on order "{product}" — please submit relevant evidence.',
7154
+ '运输中发生争议': 'Dispute during transit',
7155
+ '订单「{product}」运输过程中发生争议,请及时回应。': 'A dispute arose while order "{product}" was in transit — please respond promptly.',
7156
+ '买家对收货发起争议': 'Buyer disputes the delivery',
7157
+ '{buyer} 声称货物有问题,已发起争议。请在 48h 内提交证据。': '{buyer} claims a problem with the goods and opened a dispute. Submit evidence within 48h.',
7158
+ '争议裁定:卖家胜诉': 'Dispute ruled: seller wins',
7159
+ '订单「{product}」争议已裁定,资金已释放给卖家。': 'The dispute on order "{product}" was ruled; funds released to the seller.',
7160
+ '订单「{product}」争议已裁定:卖家胜诉(直付为信誉裁决,不涉资金流转)。': 'The dispute on order "{product}" was ruled for the seller (Direct Pay rulings are reputation-only — no funds move).',
7161
+ '争议裁定:退款买家': 'Dispute ruled: buyer refunded',
7162
+ '订单「{product}」争议已裁定,{amount} WAZ 已退回买家。': 'The dispute on order "{product}" was ruled; {amount} WAZ refunded to the buyer.',
7163
+ '争议裁定:支持买家': 'Dispute ruled: buyer upheld',
7164
+ '订单「{product}」争议已裁定支持买家。直付非托管:平台无资金可退,退款由双方场外处理;卖家信誉处罚已记录。': 'The dispute on order "{product}" was ruled for the buyer. Direct Pay is non-custodial: the platform holds no funds to refund — any refund settles off-protocol; the seller reputation penalty is recorded.',
7165
+ '卖家超时违约': 'Seller timed out',
7166
+ '卖家超时未接单,订单已自动取消,{amount} WAZ 退款处理中。': 'The seller failed to accept in time; the order auto-cancelled and your {amount} WAZ refund is processing.',
7167
+ '卖家超时未发货': 'Seller failed to ship in time',
7168
+ '卖家超时未发货,订单已判违约,资金退回。': 'The seller failed to ship in time; the order was ruled a default and funds returned.',
7169
+ '卖家超时未发货,订单已判卖家违约(直付非托管:平台无资金可退,违约已记入卖家信誉;退款请与卖家场外协商,协商未果可发起争议)。': 'The seller failed to ship in time and was ruled in default. Direct Pay is non-custodial: the platform holds no funds to refund — the default is recorded on the seller reputation; negotiate the refund off-protocol, or open a dispute if that fails.',
7170
+ '物流超时': 'Logistics timed out',
7171
+ '物流方超时未完成投递,已自动记录违约。': 'The carrier failed to deliver in time; the default was recorded automatically.',
7172
+ '卖家未收到货款': 'Seller reports payment not received',
7173
+ '卖家报告尚未收到「{product}」的货款,请核实:若确已付款请提供付款参考,若未付款可取消订单。直付非托管,协议不代收/不退款。': 'The seller reports not receiving payment for "{product}". Please verify: if you paid, provide the payment reference; if not, you can cancel. Direct Pay is non-custodial — the protocol neither collects nor refunds.',
7174
+ '卖家已确认收款': 'Seller confirmed payment received',
7175
+ '卖家已确认收到「{product}」的货款,订单恢复,等待发货。': 'The seller confirmed receiving payment for "{product}"; the order resumes and awaits shipping.',
7176
+ '货款协商升级举证仲裁': 'Payment negotiation escalated to arbitration',
7177
+ '「{product}」货款协商未果,已进入举证仲裁(证据制信誉裁决,非托管:不涉退款/放款)。请提交证据。': 'Payment negotiation for "{product}" failed and entered evidence-based arbitration (reputation-only ruling; non-custodial: no refund/release involved). Please submit evidence.',
7178
+ '仲裁已撤回,回到协商': 'Arbitration withdrawn — back to negotiation',
7179
+ '「{product}」的仲裁申请已撤回,回到买卖双方协商。': 'The arbitration request for "{product}" was withdrawn; back to buyer-seller negotiation.',
7180
+ '直付订单已取消(协商)': 'Direct Pay order cancelled (negotiation)',
7181
+ '「{product}」订单已取消(货款协商未达成)。直付非托管,无平台退款。': 'Order "{product}" was cancelled (payment negotiation failed). Direct Pay is non-custodial — no platform refund.',
7182
+ '新预充值申请待审': 'New fee prepay request pending review',
7183
+ '卖家 {seller} 申请平台服务费预充值 {amount} USDC,请到 admin 后台核对到账后处理。': 'Seller {seller} requested a platform service-fee prepay of {amount} USDC. Verify the funds arrived in the admin console, then process it.',
7184
+ '预充值已确认入账': 'Prepay confirmed and credited',
7185
+ '你的平台服务费预充值 {amount} USDC 已确认入账,直付新单额度已恢复。': 'Your platform service-fee prepay of {amount} USDC is confirmed and credited; your Direct Pay order allowance is restored.',
7186
+ '预充值申请未通过': 'Prepay request declined',
7187
+ '你的平台服务费预充值申请未通过{note}。请核对付款凭据后重新提交,或联系平台。': 'Your platform service-fee prepay request was declined{note}. Please verify your payment evidence and resubmit, or contact the platform.',
6317
7188
  }
6318
7189
 
6319
7190
  window.t = (zh) => window._lang === 'en' ? (_EN[zh] || zh) : zh