@seasonkoh/webaz 0.1.27 → 0.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/README.md +4 -3
  2. package/README.zh-CN.md +7 -6
  3. package/dist/currency.js +16 -0
  4. package/dist/deposit-rails.js +52 -0
  5. package/dist/direct-pay-aml-monitor.js +67 -0
  6. package/dist/direct-pay-aml-review.js +40 -0
  7. package/dist/direct-pay-base-bond-entry.js +5 -0
  8. package/dist/direct-pay-bond-rail-clearance.js +94 -0
  9. package/dist/direct-pay-compliance-ingress.js +145 -0
  10. package/dist/direct-pay-controls.js +136 -0
  11. package/dist/direct-pay-create.js +162 -0
  12. package/dist/direct-pay-deferral-quota.js +43 -0
  13. package/dist/direct-pay-disclosures.js +44 -0
  14. package/dist/direct-pay-eligibility.js +46 -0
  15. package/dist/direct-pay-fee-ar.js +241 -0
  16. package/dist/direct-pay-launch-readiness.js +108 -0
  17. package/dist/direct-pay-launch-summary.js +68 -0
  18. package/dist/direct-pay-ledger.js +94 -0
  19. package/dist/direct-receive-account-qr.js +77 -0
  20. package/dist/direct-receive-accounts.js +82 -0
  21. package/dist/direct-receive-deferral.js +142 -0
  22. package/dist/direct-receive-deposits.js +260 -0
  23. package/dist/direct-receive-payment-instruction.js +26 -0
  24. package/dist/fx-rates.js +71 -0
  25. package/dist/layer0-foundation/L0-1-database/schema.js +531 -1
  26. package/dist/layer0-foundation/L0-2-state-machine/genuine-sale.js +15 -5
  27. package/dist/layer0-foundation/L0-2-state-machine/transitions.js +41 -0
  28. package/dist/layer0-foundation/L0-5-manifest/manifest.js +1 -1
  29. package/dist/layer1-agent/L1-1-mcp-server/cli.js +64 -0
  30. package/dist/layer1-agent/L1-1-mcp-server/network-mode.js +80 -0
  31. package/dist/layer1-agent/L1-1-mcp-server/server.js +251 -69
  32. package/dist/layer4-economics/L4-4-skill-market/skill-engine.js +4 -4
  33. package/dist/ledger.js +12 -3
  34. package/dist/mcp.js +23 -4
  35. package/dist/merchant-bond-domain.js +64 -0
  36. package/dist/merchant-bond-exposure.js +78 -0
  37. package/dist/merchant-bond-watcher.js +26 -0
  38. package/dist/payment-rails.js +29 -0
  39. package/dist/product-verification.js +93 -0
  40. package/dist/pwa/acp-feed.js +3 -2
  41. package/dist/pwa/contract-fingerprint.js +3 -0
  42. package/dist/pwa/direct-pay-guards.js +20 -0
  43. package/dist/pwa/direct-pay-order-redaction.js +24 -0
  44. package/dist/pwa/endpoint-actions.js +3 -0
  45. package/dist/pwa/public/app-account.js +977 -0
  46. package/dist/pwa/public/app-admin.js +608 -0
  47. package/dist/pwa/public/app-agents.js +63 -0
  48. package/dist/pwa/public/app-ai.js +2162 -0
  49. package/dist/pwa/public/app-chat-poll.js +29 -0
  50. package/dist/pwa/public/app-contribution.js +836 -0
  51. package/dist/pwa/public/app-create-kinds.js +17 -0
  52. package/dist/pwa/public/app-direct-pay-accounts.js +141 -0
  53. package/dist/pwa/public/app-direct-pay-buyer.js +72 -0
  54. package/dist/pwa/public/app-direct-pay-compliance.js +67 -0
  55. package/dist/pwa/public/app-direct-pay-deferral-admin.js +72 -0
  56. package/dist/pwa/public/app-direct-pay-deferral.js +61 -0
  57. package/dist/pwa/public/app-direct-pay-fee-center.js +33 -0
  58. package/dist/pwa/public/app-direct-pay-fee-ops.js +112 -0
  59. package/dist/pwa/public/app-direct-pay-product-verify.js +103 -0
  60. package/dist/pwa/public/app-direct-pay-readiness.js +38 -0
  61. package/dist/pwa/public/app-direct-pay-store-verify.js +100 -0
  62. package/dist/pwa/public/app-direct-pay.js +227 -0
  63. package/dist/pwa/public/app-discover.js +1296 -0
  64. package/dist/pwa/public/app-external-links.js +32 -0
  65. package/dist/pwa/public/app-listings.js +226 -0
  66. package/dist/pwa/public/app-prelaunch-waz.js +39 -0
  67. package/dist/pwa/public/app-price.js +55 -0
  68. package/dist/pwa/public/app-product-media.js +15 -0
  69. package/dist/pwa/public/app-profile.js +1692 -0
  70. package/dist/pwa/public/app-seller.js +199 -0
  71. package/dist/pwa/public/app-shop.js +1145 -0
  72. package/dist/pwa/public/app.js +13388 -22277
  73. package/dist/pwa/public/i18n.js +413 -196
  74. package/dist/pwa/public/index.html +27 -0
  75. package/dist/pwa/public/openapi.json +579 -1
  76. package/dist/pwa/routes/admin-analytics.js +4 -2
  77. package/dist/pwa/routes/admin-direct-receive-deposits.js +321 -0
  78. package/dist/pwa/routes/agent-grants.js +255 -0
  79. package/dist/pwa/routes/buyer-feeds.js +2 -1
  80. package/dist/pwa/routes/chat.js +6 -1
  81. package/dist/pwa/routes/dashboards.js +2 -1
  82. package/dist/pwa/routes/direct-pay-availability.js +196 -0
  83. package/dist/pwa/routes/direct-pay-disclosure-acks.js +74 -0
  84. package/dist/pwa/routes/direct-pay-timeouts.js +71 -0
  85. package/dist/pwa/routes/direct-receive-accounts.js +155 -0
  86. package/dist/pwa/routes/direct-receive-payment-instructions.js +45 -0
  87. package/dist/pwa/routes/fx.js +12 -0
  88. package/dist/pwa/routes/leaderboard.js +47 -9
  89. package/dist/pwa/routes/listings.js +2 -2
  90. package/dist/pwa/routes/logistics.js +4 -0
  91. package/dist/pwa/routes/manifests.js +38 -0
  92. package/dist/pwa/routes/me-data.js +5 -2
  93. package/dist/pwa/routes/orders-action.js +117 -9
  94. package/dist/pwa/routes/orders-create.js +4 -0
  95. package/dist/pwa/routes/orders-read.js +36 -0
  96. package/dist/pwa/routes/p2p-products.js +2 -2
  97. package/dist/pwa/routes/products-create.js +5 -3
  98. package/dist/pwa/routes/products-links.js +34 -0
  99. package/dist/pwa/routes/products-list.js +2 -1
  100. package/dist/pwa/routes/products-update.js +22 -2
  101. package/dist/pwa/routes/promoter.js +3 -0
  102. package/dist/pwa/routes/referral.js +4 -0
  103. package/dist/pwa/routes/returns.js +26 -1
  104. package/dist/pwa/routes/rewards-apply.js +10 -5
  105. package/dist/pwa/routes/rewards-clearing-mature.js +96 -0
  106. package/dist/pwa/routes/rewards-escrow-expire.js +6 -2
  107. package/dist/pwa/routes/shops.js +2 -1
  108. package/dist/pwa/routes/url-claim.js +2 -2
  109. package/dist/pwa/routes/users-public.js +8 -0
  110. package/dist/pwa/routes/wallet-read.js +3 -0
  111. package/dist/pwa/routes/webauthn.js +7 -2
  112. package/dist/pwa/server-schema.js +9 -0
  113. package/dist/pwa/server.js +261 -1706
  114. package/dist/runtime/agent-grant-scopes.js +128 -0
  115. package/dist/runtime/agent-grant-verifier.js +67 -0
  116. package/dist/runtime/agent-pairing.js +60 -0
  117. package/dist/runtime/apply-webaz-runtime-schema.js +15 -0
  118. package/dist/runtime/webaz-schema-helpers.js +1952 -0
  119. package/dist/store-verification.js +77 -0
  120. package/dist/version.js +1 -1
  121. package/package.json +80 -2
@@ -1,9 +1,295 @@
1
- // WebAZ i18n — Chinese (default) / English
1
+ // WebAZ i18n — Chinese / English
2
2
  // Usage: t('中文') → returns English when lang='en', or Chinese as-is
3
-
4
- window._lang = localStorage.getItem('webaz_lang') || 'zh'
3
+ // Default language: a saved manual choice always wins; otherwise infer from the browser/OS
4
+ // language (zh* → Chinese, everything else → English). Manual switches persist via setLang.
5
+
6
+ // 默认语言解析(纯函数,便于测试)。savedLang 只认 'zh'/'en'(异常值忽略,走浏览器检测);
7
+ // 否则按 navigator.languages(有序偏好列表)、其次 language,取【第一个受支持的语言】——
8
+ // 首个 zh*(zh/zh-CN/zh-Hant/zh-TW…)→ zh,首个 en*→ en;无受支持项(含无 navigator)→ en。
9
+ // ⚠️ 必须按顺序取首个受支持项,不能"只要含中文就中文":['en-US','zh-CN'] 是英文优先用户,应默认 en。
10
+ window.resolveInitialLang = (savedLang, navigatorLike) => {
11
+ if (savedLang === 'zh' || savedLang === 'en') return savedLang // 用户手动选择,永远优先,之后不被浏览器语言覆盖
12
+ const nav = navigatorLike || {}
13
+ const langs = (nav.languages && nav.languages.length) ? nav.languages : (nav.language ? [nav.language] : [])
14
+ for (const l of langs) { const s = String(l || '').toLowerCase(); if (s.startsWith('zh')) return 'zh'; if (s.startsWith('en')) return 'en' }
15
+ return 'en'
16
+ }
17
+ window._lang = window.resolveInitialLang(localStorage.getItem('webaz_lang'), typeof navigator !== 'undefined' ? navigator : null)
5
18
 
6
19
  const _EN = {
20
+ // ── Direct Pay (Rail 1) — PR-5c availability/control reason copy (off-platform; WebAZ does not custody/guarantee/refund) ──
21
+ '直付当前未开放': 'Direct Pay is not open yet',
22
+ '直付暂停受理(运营维护中),请稍后再试': 'Direct Pay is paused (operational maintenance) — please try again later',
23
+ '直付在你所在地区暂未开放': 'Direct Pay is not available in your region yet',
24
+ '超出直付单笔上限(按 WebAZ 记录的订单金额计;不涉及你与卖家场外实际付款金额)': 'Over the Direct Pay per-order limit (on the WebAZ-recorded order total; this does not govern the actual amount you pay the seller off-platform)',
25
+ '该卖家直付已被暂停': "This seller's Direct Pay is currently suspended",
26
+ // ── Direct Pay (Rail 1) — PR-4f-b bilingual UI wiring (non-custodial; WebAZ does not custody/verify/route) ──
27
+ '需完成 D1/D2 Passkey 风险确认后才显示收款说明 · 可在订单页继续': 'The payment instruction is shown only after you complete the D1/D2 Passkey risk confirmations · you can continue on the order page',
28
+ '风险确认完成 · 这是卖家的收款说明(下单时快照,WebAZ 不验证)': 'Risk confirmation complete · This is the seller\'s payment instruction (snapshot at order time; WebAZ does not verify it)',
29
+ '请按此付款,然后在订单页标记"我已付款"': 'Pay accordingly, then mark "I have paid" on the order page',
30
+ '我知道了': 'Got it',
31
+ '需先完成 D1/D2 Passkey 风险确认,确认后才显示卖家收款说明。': 'Complete the D1/D2 Passkey risk confirmations first; the seller\'s payment instruction is shown only afterwards.',
32
+ '完成风险确认': 'Complete risk confirmation',
33
+ '直付的风险确认与付款标记需要 Passkey。前往「我的 → 安全与存储」注册一个?': 'Direct Pay risk confirmation and payment marking require a Passkey. Go to My → Security & Storage to register one?',
34
+ '前往注册 Passkey': 'Go register a Passkey',
35
+ '需要 Passkey。': 'Passkey required. ',
36
+ '前往「我的 → 安全与存储」注册 →': 'Register in My → Security & Storage →',
37
+ '支付方式': 'Payment method',
38
+ '托管(Escrow,默认)': 'Escrow (default)',
39
+ '托管(Escrow,模拟测试币)': 'Escrow (simulated test currency)',
40
+ '本金由协议托管,确认收货后释放给卖家': 'Principal held by the protocol, released to the seller after you confirm receipt',
41
+ '直付(Direct Pay · 非托管)': 'Direct Pay (non-custodial)',
42
+ '你直接付款给卖家(场外),本金不经 WebAZ': 'You pay the seller directly (off-platform); the principal never passes through WebAZ',
43
+ '直付风险提醒:WebAZ 不托管本金、不担保、不退款、不代维权,也不验证卖家的付款方式或币种。下单后需用 Passkey 完成两次风险确认,再标记付款。': 'Direct Pay risk notice: WebAZ does not custody the principal, does not guarantee, refund, or pursue claims on your behalf, and does not verify the seller\'s payment method or currency. After placing the order you must complete two risk confirmations with a Passkey, then mark the payment.',
44
+ '我已阅读并理解上述风险': 'I have read and understood the risks above',
45
+ '确认(需 Passkey)': 'Confirm (Passkey required)',
46
+ '风险披露': 'Risk disclosure',
47
+ '直付订单(非托管)': 'Direct Pay order (non-custodial)',
48
+ '本金不经 WebAZ —— 你直接付款给卖家(场外)': 'Principal never passes through WebAZ — you pay the seller directly (off-platform)',
49
+ 'WebAZ 不托管、不担保、不退款、不代维权': 'WebAZ does not custody, guarantee, refund, or pursue claims on your behalf',
50
+ '卖家收款说明来自卖家自填,WebAZ 不验证付款方式或币种': 'The payment instruction is provided by the seller; WebAZ does not verify the payment method or currency',
51
+ '卖家收款说明(下单时快照)': 'Seller payment instruction (snapshot at order time)',
52
+ '我已付款': 'I have paid',
53
+ '取消订单': 'Cancel order',
54
+ '操作成功': 'Done',
55
+ '操作失败,请重试': 'Action failed, please try again',
56
+ '直付收款说明': 'Direct Pay payment instruction',
57
+ '直付收款账号': 'Direct Pay receive accounts',
58
+ '选择卖家收款方式': 'Choose the seller\'s receive method',
59
+ '卖家按此收款': 'Seller receives',
60
+ '收款明细与二维码将在完成风险确认后显示': 'Payment details and QR appear after you complete the risk confirmation',
61
+ '你可维护多个收款账号(各自币种、可选二维码),买家直付时自选其一。WebAZ 只存储与展示,不验证付款方式或币种,不路由/托管资金,也不解析二维码。': 'You can keep multiple receive accounts (each with its own currency and optional QR); buyers pick one at direct-pay checkout. WebAZ only stores and displays them — it does not verify payment methods or currencies, route or custody funds, or parse the QR.',
62
+ '尚未添加收款账号': 'No receive accounts yet',
63
+ '新增收款账号': 'Add receive account',
64
+ '收款账号': 'Receive account',
65
+ '无二维码': 'No QR',
66
+ '更换二维码': 'Replace QR',
67
+ '上传二维码': 'Upload QR',
68
+ '收款方式': 'Payment method',
69
+ '币种': 'Currency',
70
+ '如 SGD / USDC': 'e.g. SGD / USDC',
71
+ '停用后买家将无法选择该收款账号,确定停用?': 'Once deactivated, buyers can no longer choose this receive account. Deactivate?',
72
+ '二维码仅支持 PNG 或 WebP 图片': 'QR must be a PNG or WebP image',
73
+ '二维码图片过大(需 ≤ 64KB)': 'QR image is too large (must be ≤ 64KB)',
74
+ '二维码图片不合法(仅支持 PNG/WebP,解码后 ≤ 64KB)': 'Invalid QR image (PNG/WebP only, ≤ 64KB decoded)',
75
+ '二维码已上传': 'QR uploaded',
76
+ '二维码读取失败': 'Failed to read QR image',
77
+ '收款二维码': 'Receive QR',
78
+ '仅卖家可管理收款账号': 'Only sellers can manage receive accounts',
79
+ '账号不存在': 'Account not found',
80
+ '账号信息不合法': 'Invalid account details',
81
+ '需先注册 Passkey': 'Passkey registration required',
82
+ '直付开通进度(仅你可见)': 'Direct Pay onboarding progress (visible only to you)',
83
+ '履约保证金缓交(仅你可见)': 'Performance-bond deferral (visible only to you)',
84
+ '缓交 = 先入场、履约保证金延后交,由管理员人工审批。批准后直付仍需满足全部合规条件(身份与商户合规审核、Passkey、收款说明);缓交期内额度会被压低。': 'Deferral = enter first, post the performance bond later, subject to manual admin approval. Even once approved, Direct Pay still requires all compliance conditions (identity & merchant compliance review, Passkey, payment instruction); your quota is reduced during the deferral period.',
85
+ '缓交申请审核中,等待管理员人工审批': 'Deferral application under review — awaiting manual admin approval',
86
+ '缓交已批准': 'Deferral approved',
87
+ '缓交申请未通过': 'Deferral application not approved',
88
+ '缓交已到期': 'Deferral has expired',
89
+ '可重新申请': 'You may apply again',
90
+ '申请原因(选填)': 'Reason (optional)',
91
+ '缓交天数(选填,默认 30)': 'Deferral days (optional, default 30)',
92
+ '提交缓交申请': 'Submit deferral application',
93
+ '缓交期额度系数': 'Deferral-period quota factor',
94
+ '保证金到期日': 'Bond due date',
95
+ '宽限至': 'Grace until',
96
+ '已进入宽限期,请尽快补交履约保证金,否则直付资格将被暂停': 'You are in the grace period — please post the performance bond soon, or your Direct Pay eligibility will be suspended',
97
+ '缓交申请已提交,等待管理员审批': 'Deferral application submitted — awaiting admin approval',
98
+ '履约保证金缓交审批': 'Performance-bond deferral approvals',
99
+ '商户缓交申请;批准设压低额度 + 真人 Passkey(仅 root)': 'Merchant deferral applications; approval sets a reduced quota + live Passkey (root only)',
100
+ '批准后该卖家可先入场直付、保证金延后交;直付仍需满足全部合规条件,且缓交期内额度被压低。批准/拒绝均需真人 Passkey。': 'Once approved, the seller may use Direct Pay first and post the bond later; Direct Pay still requires all compliance conditions, and the quota is reduced during the deferral period. Both approve and reject require a live Passkey.',
101
+ '缓交期(天)': 'Deferral period (days)',
102
+ '批准缓交(需真人 Passkey)': 'Approve deferral (live Passkey required)',
103
+ '缓交期额度系数(0–1,留空用默认;缓交期内必压低,有下限)': 'Deferral-period quota factor (0–1; blank = default; always reduced during deferral, with a floor)',
104
+ '额度系数(如 0.5)': 'Quota factor (e.g. 0.5)',
105
+ '宽限天数(留空用默认)': 'Grace days (blank = default)',
106
+ '真人确认批准': 'Confirm approval (Passkey)',
107
+ '拒绝缓交(需真人 Passkey)': 'Reject deferral (live Passkey required)',
108
+ '真人确认拒绝': 'Confirm rejection (Passkey)',
109
+ '暂无待审缓交申请': 'No pending deferral applications',
110
+ '需要真人 Passkey 确认': 'A live Passkey confirmation is required',
111
+ '缓交申请已拒绝': 'Deferral application rejected',
112
+ '逐产品直付验证(仅你可见)': 'Per-product Direct Pay verification (visible only to you)',
113
+ '每个走直付收款的商品都需【单独】通过平台人工验证(防作弊):申领验证码 → 贴到该商品的外部平台页面 → 回来提交该商品链接 → 管理员手动核对。未验证的商品只能用托管交易。': 'Each product sold via Direct Pay must be individually verified by the platform (anti-fraud): get a code → display it on that product’s external page → submit that product’s link → an admin reviews it manually. Unverified products can only use escrow.',
114
+ '已签发验证码,请贴到该商品的外部页面后提交链接': 'Code issued — display it on the product’s external page, then submit the link',
115
+ '已提交,等待管理员核验': 'Submitted — awaiting admin review',
116
+ '已通过验证,可直付': 'Verified — Direct Pay enabled',
117
+ '未通过,请修正后重新申请': 'Not approved — fix and re-apply',
118
+ '你还没有商品': 'You have no products yet',
119
+ '申请验证': 'Request verification',
120
+ '把它展示在该商品的外部页面': 'display it on the product’s external page',
121
+ '该商品的外部链接(http/https)': 'The product’s external link (http/https)',
122
+ '提交链接': 'Submit link',
123
+ '验证码已签发': 'Verification code issued',
124
+ '请填写该商品的外部链接': 'Please enter the product’s external link',
125
+ '已提交,等待管理员核验。': 'Submitted — awaiting admin review.',
126
+ '逐产品直付验证审核': 'Per-product Direct Pay verification review',
127
+ '逐个核验商品外部链接验证码;通过=该商品可直付 + 真人 Passkey(仅 root)': 'Review each product’s external-link code; approve = that product becomes Direct-Pay-eligible + live Passkey (root only)',
128
+ '请手动打开链接,确认该商品页面上展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the product page shows the code above, then approve/reject.',
129
+ '通过(真人 Passkey)': 'Approve (live Passkey)',
130
+ '拒绝(真人 Passkey)': 'Reject (live Passkey)',
131
+ '暂无待核验商品': 'No products awaiting review',
132
+ '每个商品需单独核验:打开卖家提交的外部链接,确认页面展示了验证码再通过。通过=该商品可直付(逐品,绝不放行全部)。通过/拒绝均需真人 Passkey。': 'Each product is reviewed individually: open the seller-submitted external link, confirm the page shows the code, then approve. Approve = that product becomes Direct-Pay-eligible (per-product, never all at once). Both require a live Passkey.',
133
+ '该商品已通过验证': 'Product verified',
134
+ '该商品已拒绝': 'Product rejected',
135
+ '店铺认证(可申请免逐品验证)': 'Store verification (apply to skip per-product checks)',
136
+ '默认每个商品需单独验证才能直付。你也可以申请【店铺认证】:申领验证码 → 贴到你的外部店铺主页 → 提交店铺链接 → 管理员手动核对;通过且管理员勾选豁免后,你【所有商品】免逐品验证即可直付。': 'By default each product must be verified individually before Direct Pay. You can also apply for store verification: get a code → display it on your external store homepage → submit the store link → an admin reviews it manually; once approved and the admin grants the exemption, all your products can use Direct Pay without per-product checks.',
137
+ '已签发验证码,请贴到你的外部店铺页后提交店铺链接': 'Code issued — display it on your external store page, then submit the store link',
138
+ '店铺已通过验证': 'Store verified',
139
+ '申请店铺认证': 'Apply for store verification',
140
+ '把它展示在你的外部店铺主页': 'display it on your external store homepage',
141
+ '你的外部店铺链接(http/https)': 'Your external store link (http/https)',
142
+ '提交店铺链接': 'Submit store link',
143
+ '已豁免逐品验证:你的所有商品可直付': 'Exempt from per-product verification — all your products can use Direct Pay',
144
+ '已通过,但未获逐品豁免:商品仍需逐个验证': 'Verified, but no per-product exemption — products still need individual verification',
145
+ '请填写你的外部店铺链接': 'Please enter your external store link',
146
+ '店铺认证审核': 'Store verification review',
147
+ '商户合规录入': 'Merchant compliance entry',
148
+ '录入卖家 KYB / 制裁筛查结论 + 真人 Passkey(仅 root)': 'Record a seller’s KYB / sanctions-screening result + live Passkey (root only)',
149
+ // PR-B Direct Pay 商户运营 hub + 平台服务费(预充值)账户
150
+ '仅限根管理员': 'Root admin only',
151
+ 'Direct Pay 商户运营': 'Direct Pay merchant ops',
152
+ '返回协议管理': 'Back to protocol admin',
153
+ '直付(Rail 1)商户运营集中入口:资格合规、平台服务费预充值、上线控制。': 'Central entry for Direct Pay (Rail 1) merchant ops: eligibility & compliance, platform-fee prepayment, launch controls.',
154
+ '资格与合规': 'Eligibility & compliance',
155
+ 'KYB / 制裁筛查结论': 'KYB / sanctions results',
156
+ '缓交申请 + 压低额度': 'Deferral requests + reduced quota',
157
+ '逐产品直付验证': 'Per-product direct-pay verification',
158
+ '核验商品外链验证码': 'Verify product external-link code',
159
+ '核验店铺外链 + 免逐品': 'Verify shop link + per-product exemption',
160
+ '平台服务费(预充值)': 'Platform fee (prepayment)',
161
+ '预充值与账户': 'Prepayment & account',
162
+ '充值 / 调整 / 退款 / 余额 / 应收': 'Top-up / adjust / refund / balance / accrued',
163
+ '上线控制': 'Launch controls',
164
+ '直付参数': 'Direct-pay params',
165
+ '开关 / 地区 / 单笔上限': 'Toggle / region / per-tx cap',
166
+ '就绪报告(CLI):': 'Readiness report (CLI):',
167
+ '直付:合规录入 / 缓交 / 商品·店铺验证 / 平台服务费预充值 / 上线控制(仅 root)': 'Direct Pay: compliance / deferral / product·shop verification / platform-fee prepayment / launch controls (root only)',
168
+ '平台服务费预充值与账户': 'Platform-fee prepayment & account',
169
+ '返回 Direct Pay 商户运营': 'Back to Direct Pay merchant ops',
170
+ '预充值 = 商家平台服务费预付款(非买家货款 / 非 escrow / 非保证金)。链下实际收款/退款由你核实后在此登记;均需真人 Passkey。': 'Prepayment = merchant platform-service-fee prepayment (NOT buyer funds / NOT escrow / NOT collateral). Record off-protocol receipts/refunds here after you verify them; all require live-human Passkey.',
171
+ '加载账户': 'Load account',
172
+ '记录预充值(收款)': 'Record prepayment (received)',
173
+ '金额 USDC': 'Amount USDC',
174
+ '法币 fiat': 'Fiat',
175
+ '收款凭证号 evidence_ref(选填)': 'Receipt ref / evidence_ref (optional)',
176
+ '备注(选填)': 'Note (optional)',
177
+ '记录预充值(真人 Passkey)': 'Record prepayment (live Passkey)',
178
+ '账务更正(可正可负,非退款)': 'Bookkeeping correction (signed; not a refund)',
179
+ '更正额 USDC(负数=调减)': 'Correction USDC (negative = decrease)',
180
+ '原因(必填)': 'Reason (required)',
181
+ '记录更正(真人 Passkey)': 'Record correction (live Passkey)',
182
+ '退款(真实退还未消耗预付款)': 'Refund (return unconsumed prepayment)',
183
+ '退款额 USDC': 'Refund amount USDC',
184
+ '退款凭证号 evidence_ref(选填)': 'Refund ref / evidence_ref (optional)',
185
+ '原因(选填)': 'Reason (optional)',
186
+ '退款(真人 Passkey)': 'Refund (live Passkey)',
187
+ '可用预充值余额': 'Available prepayment balance',
188
+ '累计预充值': 'Total prepayments',
189
+ '已计提平台费': 'Accrued platform fee',
190
+ '账务更正合计': 'Total corrections',
191
+ '已退款合计': 'Total refunds',
192
+ '在途单预估费': 'In-flight orders est. fee',
193
+ '可退款余额': 'Refundable balance',
194
+ // PR-C seller fee center
195
+ '平台服务费账户(仅你可见)': 'Platform-fee account (only you can see)',
196
+ '直付平台服务费的预充值余额与已计提明细;预充值由平台核实收款后登记,如需充值请联系平台。': 'Your Direct Pay platform-service-fee prepayment balance and accrued detail; prepayments are recorded by the platform after it verifies receipt — contact the platform to top up.',
197
+ '待补平台服务费': 'Platform fee owed',
198
+ '余额不足时新直付订单会被暂停,请联系平台补充平台服务费预充值。': 'When the balance is insufficient, new direct-pay orders are suspended; contact the platform to top up the platform-service-fee prepayment.',
199
+ '首单宽限可用:你的第一笔直付无需预充值。': 'First-order grace available: your first direct-pay order needs no prepayment.',
200
+ '首单宽限': 'First-order grace',
201
+ '是(尚未成交)': 'Yes (no completed sale yet)',
202
+ '否(已用/有在途)': 'No (used / has in-flight)',
203
+ '预充值已记录': 'Prepayment recorded',
204
+ '请填写卖家 ID 和正数金额': 'Enter seller ID and a positive amount',
205
+ '账务更正已记录': 'Correction recorded',
206
+ '请填写卖家 ID、非零更正额、原因': 'Enter seller ID, a non-zero correction, and a reason',
207
+ '请填写卖家 ID 和正数退款额': 'Enter seller ID and a positive refund amount',
208
+ '退款已记录': 'Refund recorded',
209
+ '录入卖家的 KYB / 制裁筛查结论(直付入场硬门)。仅记录你【已实际完成】的尽调结论,不代替真实筛查;均需真人 Passkey。': 'Record a seller’s KYB / sanctions-screening result (Direct Pay entry hard gate). Only record the diligence conclusion you have actually completed — this does not perform the screening; both require a live Passkey.',
210
+ '卖家用户 ID': 'Seller user ID',
211
+ '卖家用户 ID(seller user id)': 'Seller user ID',
212
+ 'KYB 复核结论': 'KYB review result',
213
+ '通过 approved': 'Pass (approved)',
214
+ '待定 pending': 'Pending',
215
+ '拒绝 rejected': 'Reject (rejected)',
216
+ '外部审核编号 / vendor case id(选填)': 'External review id / vendor case id (optional)',
217
+ '撤销 revoked': 'Revoke (revoked)',
218
+ '阻断 blocked': 'Block (blocked)',
219
+ '⚠️ 外部审核编号只填外部审核系统的 case id;切勿填写身份证/护照/住址/证件文件链接 —— 该字段会【明文入库】。': '⚠️ The external review id is for your screening system’s case id only — never enter ID/passport numbers, addresses, or document links: this field is stored in plaintext.',
220
+ '有效期 expires_at(选填,如 2027-01-01)': 'Expiry expires_at (optional, e.g. 2027-01-01)',
221
+ '记录 KYB(真人 Passkey)': 'Record KYB (live Passkey)',
222
+ '制裁筛查结论': 'Sanctions-screening result',
223
+ '通过 clear': 'Pass (clear)',
224
+ '命中 flagged': 'Hit (flagged)',
225
+ '有效期 expires_at(选填)': 'Expiry expires_at (optional)',
226
+ '记录制裁筛查(真人 Passkey)': 'Record sanctions screening (live Passkey)',
227
+ '录入后用就绪报告核对:': 'After recording, verify with the readiness report:',
228
+ 'KYB 结论已记录': 'KYB result recorded',
229
+ '制裁筛查结论已记录': 'Sanctions-screening result recorded',
230
+ '请填写卖家用户 ID': 'Please enter the seller user ID',
231
+ '店铺链接': 'Store link',
232
+ '请手动打开链接,确认店铺主页展示了上面的验证码,再决定通过/拒绝。': 'Manually open the link and confirm the store homepage shows the code above, then approve/reject.',
233
+ '免逐品验证(通过后该卖家所有商品可直付)': 'Exempt from per-product verification (on approval, all this seller’s products can use Direct Pay)',
234
+ '暂无待核验店铺': 'No stores awaiting review',
235
+ '打开卖家提交的店铺链接,确认店铺页展示了验证码再通过。勾选“免逐品验证”=该卖家所有商品免逐个验证即可直付(请仅对可信商户勾选)。通过/拒绝均需真人 Passkey。': 'Open the seller-submitted store link, confirm the page shows the code, then approve. Checking “exempt from per-product verification” = all this seller’s products can use Direct Pay without individual checks (only check this for trusted merchants). Both require a live Passkey.',
236
+ '店铺已通过,已豁免逐品验证': 'Store verified — per-product verification waived',
237
+ '店铺已通过': 'Store verified',
238
+ '店铺申请已拒绝': 'Store application rejected',
239
+ '核验店铺外链;可勾选免逐品验证 + 真人 Passkey(仅 root)': 'Verify store links; optionally grant per-product exemption + live Passkey (root only)',
240
+ '以上为你的直付开通进度;直付按轨道分阶段开放,完成可行动项不代表立即可用。': 'This is your Direct Pay onboarding progress. Direct Pay opens by rail in phases — completing the action items does not mean it is immediately available.',
241
+ '平台侧直付已开放': 'Direct Pay is open on the platform side',
242
+ '直付平台侧暂未开放(无需你操作)': 'Direct Pay is not yet open on the platform side (no action needed from you)',
243
+ '已设置收款说明': 'Payment instruction is set',
244
+ '未设置收款说明': 'Payment instruction not set',
245
+ '去设置收款说明': 'Set payment instruction',
246
+ '已注册 Passkey': 'Passkey registered',
247
+ '未注册 Passkey': 'Passkey not registered',
248
+ '去注册 Passkey': 'Register a Passkey',
249
+ '履约保证金已完成': 'Performance security deposit completed',
250
+ '履约保证金未完成': 'Performance security deposit not completed',
251
+ '商户审核已通过': 'Merchant review passed',
252
+ '商户审核进行中或未通过': 'Merchant review pending or not passed',
253
+ '直付资格正常': 'Direct Pay eligibility is normal',
254
+ '直付资格已被暂停': 'Direct Pay eligibility is suspended',
255
+ '这是你自填的收款展示文本(场外结算用);WebAZ 不验证付款方式或币种,不路由支付,不托管资金。': 'This is your own display text for off-platform settlement. WebAZ does not verify the payment method or currency, does not route payments, and does not custody funds.',
256
+ '当前生效': 'Currently active',
257
+ '尚未设置收款说明': 'No payment instruction set yet',
258
+ '收款说明': 'Payment instruction',
259
+ '(展示给买家,如 PayNow / 银行转账 等)': '(shown to buyers, e.g. PayNow / bank transfer)',
260
+ '例:PayNow +65 9xxx(场外结算)': 'e.g. PayNow +65 9xxx (off-platform settlement)',
261
+ '标签(可选)': 'Label (optional)',
262
+ '如 PayNow': 'e.g. PayNow',
263
+ '收款说明不能为空': 'Payment instruction cannot be empty',
264
+ '已停用': 'Deactivated',
265
+ '停用': 'Deactivate',
266
+ '停用后买家将无法对你发起直付订单,确定停用?': 'After deactivation, buyers cannot start Direct Pay orders with you. Deactivate?',
267
+ '卖家尚未设置收款说明,暂不可直付': 'The seller has not set a payment instruction; Direct Pay is unavailable',
268
+ '该卖家暂不支持直付': 'This seller does not support Direct Pay yet',
269
+ '直付需要先注册 Passkey': 'Direct Pay requires registering a Passkey first',
270
+ '需先完成两次风险披露确认(D1 + D2)': 'You must complete both risk disclosures first (D1 + D2)',
271
+ '需现场真人 Passkey 确认': 'A live, in-person Passkey confirmation is required',
272
+ '订单尚未送达,暂不可确认收货': 'The order has not been delivered yet; cannot confirm receipt',
273
+ '直付当前仅支持简单商品(无规格)': 'Direct Pay currently supports simple products only (no variants)',
274
+ '直付当前不支持该下单选项': 'Direct Pay currently does not support that order option',
275
+ // ── Leaderboard agent activity bucket (coarse, replaces raw call count) ──
276
+ '较少': 'Light',
277
+ '休眠': 'Dormant',
278
+ // ── RFC-020 Connected agents (app-agents.js) ─────────────────
279
+ '🔌 已连接的 Agent': '🔌 Connected agents',
280
+ '尚无已连接的 Agent': 'No connected agents yet',
281
+ 'AI agent 通过 webaz_pair 配对、经你 Passkey 批准后出现在这里': 'Agents appear here after pairing via webaz_pair and your Passkey approval',
282
+ '这些是你授权给 AI agent 的委托凭证(作用域受限、短期、可随时撤销)。它们不是你的账号或密钥,永远无法动用资金、投票或改密钥。': 'These are scoped, short-lived, revocable delegation grants you authorized for AI agents. They are not your account or keys, and can never move funds, vote, or change keys.',
283
+ '有效': 'Active',
284
+ '最近使用': 'Last used',
285
+ '从未使用': 'Never used',
286
+ '有效期至': 'Expires',
287
+ '未命名 Agent': 'Unnamed agent',
288
+ '仅安全只读权限': 'Safe read-only scopes',
289
+ '撤销访问': 'Revoke access',
290
+ '确认撤销此 Agent 的访问权限?该凭证将立即失效。': "Revoke this agent's access? The credential is invalidated immediately.",
291
+ '已撤销该 Agent 的访问': 'Agent access revoked',
292
+ '已连接的 Agent': 'Connected agents',
7
293
  // ── General ──────────────────────────────────────────────────
8
294
  '← 返回': '← Back',
9
295
  '登录': 'Login',
@@ -118,7 +404,6 @@ const _EN = {
118
404
  '解除暂停': 'Unsuspend',
119
405
  '授角色': 'Grant role',
120
406
  '搜索名称 / 邮箱': 'Search name / email',
121
- '条结果': ' results',
122
407
  '暂停账户': 'Suspend account',
123
408
  '原因(可选)': 'Reason (optional)',
124
409
  '该用户已拥有全部角色': 'User already has all roles',
@@ -150,16 +435,13 @@ const _EN = {
150
435
  '请先完成上述未达标指标': 'Complete the missing indicators first',
151
436
  '返回审核任务': 'Back to tasks',
152
437
  '确认撤回申请?': 'Confirm withdrawing application?',
153
- '提交申诉': 'Submit appeal',
154
438
  '暂停期内可申诉一次。请详细说明你提交的内容、判错原因,并附证据': 'You may appeal once during the suspension. Detail what you submitted, why it was wrong, and attach evidence',
155
439
  '涉及任务 ID(可选)': 'Task ID (optional)',
156
440
  '申诉理由': 'Reason',
157
- '字': 'chars',
158
441
  '我提交的是真实验证码,但被判错的原因可能是...': 'I submitted the actual code, but was marked wrong because...',
159
442
  '证据 URL(每行一个,最多 3 条)': 'Evidence URLs (one per line, max 3)',
160
443
  '申诉已提交,等待管理员审理': 'Appeal submitted, awaiting admin review',
161
444
  '审核员管理': 'Verifier management',
162
- '待审申请': 'Pending apps',
163
445
  '待审申诉': 'Pending appeals',
164
446
  '活跃审核员': 'Active verifiers',
165
447
  '活跃审核员不足 5 人,请尽快批准更多申请': 'Active verifiers < 5, approve more applications soon',
@@ -181,10 +463,8 @@ const _EN = {
181
463
  '返回用户列表': 'Back to user list',
182
464
  '注册': 'Registered',
183
465
  '天前': 'days ago',
184
- '邮箱': 'Email',
185
466
  '手机': 'Phone',
186
467
  '密码': 'Password',
187
- '已设置': 'Set',
188
468
  '未设置': 'Not set',
189
469
  '登录失败': 'Failed logins',
190
470
  '锁定至': 'locked until',
@@ -231,6 +511,9 @@ const _EN = {
231
511
  '账户控制': 'Account control',
232
512
  '状态': 'Status',
233
513
  '确认暂停': 'Confirm suspend',
514
+ '确认恢复': 'Confirm resume',
515
+ '确认驳回?': 'Confirm reject?',
516
+ '确认下架?': 'Confirm delist?',
234
517
  '暂停后用户所有 API 请求被拒绝': 'After suspension, all API requests are denied',
235
518
  '持有角色(勾选所有该用户应有的角色)': 'Held roles (check all that should apply)',
236
519
  '危险': 'Danger',
@@ -264,7 +547,6 @@ const _EN = {
264
547
  '请填写撤销原因': 'Please enter revoke reason',
265
548
  '确认撤销': 'Confirm revoke',
266
549
  '需通过申请获得': 'Apply to obtain',
267
- '申请': 'Apply',
268
550
  '联系管理员': 'Contact admin',
269
551
  '请联系管理员申请此角色': 'Contact admin to apply for this role',
270
552
  '🛡 管理员角色只能由现有管理员授予': '🛡 Admin role can only be granted by existing admins',
@@ -298,20 +580,14 @@ const _EN = {
298
580
  '我的推广': 'My promotions',
299
581
  '已绑定邀请人': 'Sponsor bound',
300
582
  '了解协议设计 · 多种角色 · 元规则': 'Protocol design · multiple roles · meta-rules',
301
- '信誉': 'Reputation',
302
583
  '信誉分': 'Rep. score',
303
584
  '完成购买': 'Purchases',
304
585
  '累计售出': 'Sales',
305
586
  '入驻天数': 'Days joined',
306
- '验证员': 'Verifier',
307
- '卖家回复': 'Seller reply',
308
587
  '当前价': 'Current',
309
- '次出价': 'bids',
310
588
  '已预订': 'Reserved',
311
- '几乎全新': 'Like new',
312
589
  '轻度使用': 'Lightly used',
313
590
  '使用明显': 'Well used',
314
- '重度使用': 'Heavily used',
315
591
  'TA 还没写过测评': 'No reviews written yet',
316
592
  'TA 没有在售的二手': 'No secondhand listings',
317
593
  'TA 没有进行中的拍卖': 'No active auctions',
@@ -322,6 +598,7 @@ const _EN = {
322
598
  '活跃买家': 'Active buyers',
323
599
  '成交订单': 'Orders',
324
600
  '热门类目': 'Top categories',
601
+ '随机': 'Random',
325
602
  '放大到': 'Zoom out to ',
326
603
  '扫描结果': 'Scan result',
327
604
  '人气不足': 'low activity',
@@ -333,7 +610,6 @@ const _EN = {
333
610
  '活跃 < 3 人 — 隐私保护(k≥3)下不显示聚合': ' had < 3 active buyers — hidden under k≥3 privacy',
334
611
  '该范围内还没有 ≥ 3 人买过同一商品': 'No product bought by ≥ 3 people in this range yet',
335
612
  '当前关键词无匹配': 'No match for current keyword',
336
- '单': '',
337
613
  '积分树挂靠': 'team tree placement',
338
614
  '积分树挂靠为系统内部记录,不代表收益权或兑付承诺。': 'Placement in the points tree is an internal record only — it does not confer any earning right or payout promise.',
339
615
  '我的邀请链接(第一触点锁定 30 天)': 'My referral link (first-touch, 30-day cookie)',
@@ -347,6 +623,8 @@ const _EN = {
347
623
  'PV 是参与 / 贡献的记录,不是收益、不可兑付、不构成任何奖励权益。匹配奖励当前未启用。': 'PV is a record of participation / contribution — not income, not redeemable, and confers no reward entitlement. Matching rewards are currently not enabled.',
348
624
  '二级': 'L2',
349
625
  '累计佣金': 'Total earnings',
626
+ '清算中': 'Clearing',
627
+ '清算中:退货期满后到账': 'Clearing — paid after the return window closes',
350
628
  '最近佣金流水': 'Recent commissions',
351
629
  '暂无佣金记录': 'No commissions yet',
352
630
  '已复制邀请链接': 'Referral link copied',
@@ -504,15 +782,17 @@ const _EN = {
504
782
  '运输中': 'In transit',
505
783
 
506
784
  // ── Order actions ────────────────────────────────────────────
507
- '✅ 确认揽收': '✅ Confirm pickup',
508
- '🚛 开始运输': '🚛 Start transit',
509
- '📬 确认投递': '📬 Confirm delivery',
510
785
  '确认收货': 'Confirm receipt',
786
+ '✅ 我已付款': '✅ Paid',
787
+ '包装状态描述 / 货物说明(可选)': 'Packaging / goods description (optional)',
788
+ '提交证据': 'Submit evidence',
789
+ '👤 需要你提供': '👤 Your input needed',
790
+ '请求': 'Request',
791
+ '对方': 'the other party',
792
+ '类型:': 'Type: ',
793
+ '截止:': 'Deadline: ',
511
794
  '我的操作': 'Actions',
512
795
  '暂无已注册的物流公司,请先让物流方注册账号': 'No registered logistics providers. Please register a logistics account first.',
513
- '证据说明': 'Evidence description',
514
- '如:SF1234567890': 'E.g.: 1Z999AA10123456784',
515
- '门牌照片描述 / 收件人姓名 / 签收时间': 'Door photo desc / Recipient name / Signature time',
516
796
  '争议理由': 'Dispute reason',
517
797
  '描述问题(货不对版/货损/未收到等)': 'Describe issue (wrong item / damaged / not received, etc.)',
518
798
  '请选择物流公司': 'Please select a logistics company',
@@ -554,7 +834,6 @@ const _EN = {
554
834
  '提交所需证据': 'Submit required evidence',
555
835
  '— 选择证据类型 —': '— Select type —',
556
836
  '(可选)文件哈希 / IPFS CID / 链上 TX ID': '(Optional) File hash / IPFS CID / TX ID',
557
- '详细描述内容(如图片描述、文字陈述、链上 TX hash 等)': 'Detailed description (image, statement, TX hash, etc.)',
558
837
  '已发送证据请求!': 'Evidence request sent!',
559
838
 
560
839
  // ── Arbitrator ruling ────────────────────────────────────────
@@ -563,14 +842,11 @@ const _EN = {
563
842
  '🟢 资金释放给卖家(卖家胜诉)': '🟢 Release to seller (seller wins)',
564
843
  '🟡 部分退款(折中,需填金额)': '🟡 Partial refund (enter amount)',
565
844
  '⚖️ 责任分配(指定各方赔付额)': '⚖️ Liability split (specify amounts)',
566
- '填写退款金额': 'Enter refund amount',
567
845
  '责任方赔付分配': 'Liability allocation',
568
846
  '订单总额:': 'Order total:',
569
- '赔付金额': 'Amount',
570
847
  '保险兜底': 'Insurance cap',
571
848
  '合计退款:': 'Total refund:',
572
849
  '裁定理由 *': 'Ruling reason *',
573
- '请详细说明裁定依据(将记录在案)': 'Explain the basis for your ruling (will be recorded)',
574
850
  '确认裁定': 'Issue ruling',
575
851
  '裁定中...': 'Processing...',
576
852
  '请选择裁定方式': 'Please select ruling type',
@@ -583,7 +859,6 @@ const _EN = {
583
859
  '的赔付金额': "'s compensation amount",
584
860
 
585
861
  // ── Defendant response ───────────────────────────────────────
586
- '请描述你的反驳理由、证据(如物流记录、商品照片说明等)': 'Describe your defense (logistics records, product photos, etc.)',
587
862
  '提交反驳证据': 'Submit defense',
588
863
 
589
864
  // ── Evidence requests (arbitrator) ───────────────────────────
@@ -593,7 +868,6 @@ const _EN = {
593
868
  '— 选择当事方 —': '— Select party —',
594
869
  '所需证据类型(可多选)': 'Evidence types needed',
595
870
  '说明(告诉对方需要提供什么)': 'Description (what to provide)',
596
- '例:请提供商品发出时的快递单照片': 'E.g.: Please provide tracking receipt photo when item was sent',
597
871
  '截止时间': 'Deadline',
598
872
  '24 小时': '24 hours',
599
873
  '48 小时': '48 hours',
@@ -610,7 +884,6 @@ const _EN = {
610
884
  '揽收后即自动认领为你的配送任务': 'Automatically claimed as your delivery after pickup',
611
885
  '暂无进行中订单': 'No active deliveries',
612
886
  '暂无待揽收订单': 'No pending pickups',
613
- '快递单号 *': 'Tracking number *',
614
887
  '投递凭证 *': 'Delivery proof *',
615
888
  '请填写投递凭证': 'Please enter delivery proof',
616
889
 
@@ -623,11 +896,9 @@ const _EN = {
623
896
  '+ 上架': '+ List',
624
897
  '还没有商品': 'No products yet',
625
898
  '上架新商品': 'List new product',
626
- '商品名称': 'Product name',
627
899
  '例:手工竹编收纳篮': 'E.g.: Handwoven bamboo basket',
628
- '商品描述': 'Description',
629
900
  '材质、尺寸、特点...': 'Material, size, features...',
630
- '价格(WAZ)': 'Price (WAZ)',
901
+ '价格(USDC)': 'Price (USDC)',
631
902
  '库存数量': 'Stock',
632
903
  '分类(可选)': 'Category (optional)',
633
904
  '不分类': 'No category',
@@ -648,8 +919,6 @@ const _EN = {
648
919
  '🛡️ 质量承诺 — 额外质押保证': '🛡️ Quality guarantee — Extra stake as assurance',
649
920
  '🚀 极速发货 — 承诺 24h 发货': '🚀 Instant shipping — Promise 24h dispatch',
650
921
  'Skill 名称': 'Skill name',
651
- '例:竹韵手工坊自动接单': 'E.g.: My Store auto-accept',
652
- '简要说明这个 Skill 能给买家带来什么好处': 'Briefly describe the benefit to buyers',
653
922
  '请填写名称和描述': 'Please fill in name and description',
654
923
  '✅ Skill 已发布!买家可以在 Skill 市场订阅': '✅ Skill published! Buyers can subscribe in the Skill Market',
655
924
  '+ 订阅': '+ Subscribe',
@@ -670,15 +939,12 @@ const _EN = {
670
939
  '暂无(升到可信即可享受 -5%)': 'None (reach Trusted for -5% off)',
671
940
  '最近记录': 'Recent history',
672
941
  '完成第一笔交易后开始积累声誉': 'Reputation starts after first transaction',
673
- '充值': 'Deposit',
674
942
  '测试网': 'Testnet',
675
943
  '向以下地址转入 USDC,系统确认后自动到账。': 'Send USDC to the address below. Balance updates automatically after confirmation.',
676
944
  '您的充值地址': 'Your deposit address',
677
945
  '复制地址': 'Copy address',
678
946
  '区块链浏览器': 'Block Explorer',
679
947
  'Base Sepolia 测试网 USDC 可在 Circle Faucet 免费获取。主网上线后同一地址直接使用。': 'Base Sepolia test USDC is available from Circle Faucet. The same address works on mainnet when launched.',
680
- '加载中...': 'Loading...',
681
- '提现': 'Withdraw',
682
948
  '提现金额(WAZ)': 'Amount (WAZ)',
683
949
  '最低 10 WAZ': 'Min 10 WAZ',
684
950
  '申请提现': 'Request Withdrawal',
@@ -688,6 +954,11 @@ const _EN = {
688
954
  '💰 充值测试 WAZ': '💰 Top up test WAZ',
689
955
  'Phase 0 测试专用,单次最多 1000 WAZ,余额上限 5000 WAZ。': 'Phase 0 testing only. Max 1000 WAZ per top-up, balance cap 5000 WAZ.',
690
956
  'WAZ 为协议内模拟货币。Phase 2 将接入真实链上资产。': 'WAZ is simulated protocol currency. Phase 2 will integrate real on-chain assets.',
957
+ '测试模式:WAZ 为模拟货币,不代表真实价值。此为预发布演示,你"托管"的并非真实资金,确认收货后释放的也是测试币。': 'Test mode: WAZ is a simulated currency with NO real value. This is a pre-launch demo — what you "escrow" is not real funds, and what is released on confirmation is test currency.',
958
+ '测试托管订单': 'Test escrow order',
959
+ '本单为预发布演示:WAZ 是模拟货币,不代表真实价值,本协议尚未进行真实资金结算。请勿据此向任何人支付真实款项。': 'This is a pre-launch demo order: WAZ is a simulated currency with no real value, and the protocol does not settle real funds yet. Do not pay anyone real money based on this order.',
960
+ '请选择支付方式': 'Please choose a payment method',
961
+ '直付暂未就绪或不可用,请稍候重试或改选支付方式': 'Direct Pay is not ready or unavailable — please retry shortly or choose another payment method',
691
962
  '充值中...': 'Topping up...',
692
963
  '已充入': 'Topped up',
693
964
  '当前余额': 'Balance',
@@ -722,7 +993,6 @@ const _EN = {
722
993
  // ── Role labels ──────────────────────────────────────────────
723
994
  '买家': 'Buyer',
724
995
  '物流': 'Logistics',
725
- '仲裁员': 'Arbitrator',
726
996
 
727
997
  // ── Smart Import ─────────────────────────────────────────────
728
998
  '导入': 'Import',
@@ -732,7 +1002,6 @@ const _EN = {
732
1002
  '解析': 'Analyze',
733
1003
  '解析中...': 'Analyzing...',
734
1004
  '解析完成,确认后上架': 'Review & publish',
735
- '确认上架': 'Confirm & List',
736
1005
  '点击切换': 'Click to switch',
737
1006
  '使用自己的 Anthropic API Key(不限次数)': 'Use your own Anthropic API Key (unlimited)',
738
1007
  'Key 仅存储在本地,不上传服务器,用完即丢': 'Key is stored locally only, never uploaded, discarded after use',
@@ -743,12 +1012,9 @@ const _EN = {
743
1012
  '提取内容为空,请尝试其他链接或改用手动上架': 'Nothing extracted. Try another link or use manual listing.',
744
1013
 
745
1014
  // ── Product structured fields ────────────────────────────────
746
- '规格参数': 'Specs',
747
1015
  '每行:材质: 陶瓷': 'One per line: Material: Ceramic',
748
1016
  '每行一个,格式:材质: 陶瓷': 'One per line, e.g. Material: Ceramic',
749
1017
  '处理时间 (小时)': 'Handling time (hrs)',
750
- '质保天数': 'Warranty (days)',
751
- '退货条件': 'Return condition',
752
1018
  '发货地区': 'Ship regions',
753
1019
  '时效 (天)': 'Transit (days)',
754
1020
  '易碎品,需特殊包装': 'Fragile — special packaging',
@@ -763,7 +1029,6 @@ const _EN = {
763
1029
  '上次自动下架': 'Last auto-delist',
764
1030
  '售罄自动下架': 'Auto-delisted (sold out)',
765
1031
  '分享一下你的体验?': 'Share your experience?',
766
- '写笔记': 'Write a note',
767
1032
  '已购买': 'Verified buyer',
768
1033
  '原图': 'Original',
769
1034
  '协议校验:作者已购买此商品并在 30 天内发笔记': 'Protocol-verified: author bought this product and wrote within 30 days',
@@ -782,21 +1047,15 @@ const _EN = {
782
1047
  '当前没有进行中的验证任务': 'No claims awaiting verification right now',
783
1048
  '当前没有待结算的任务': 'No claims awaiting settlement',
784
1049
  '暂无已结算记录': 'No resolved claims yet',
785
- '待结算': 'Sealed',
786
1050
  '已结算': 'Resolved',
787
1051
  '买家证据': 'Buyer evidence',
788
- '卖家证据': 'Seller evidence',
789
1052
  '结案于': 'Resolved at',
790
1053
  '去验证 →': 'Verify →',
791
- '协议治理': 'Protocol governance',
792
1054
  '参数公开 · 变更可追溯': 'Public params · audit trail',
793
1055
  '参数公开': 'Public params',
794
1056
  '社区提案': 'Community proposals',
795
1057
  '试点投票': 'Pilot voting',
796
1058
  '完整 DAO': 'Full DAO',
797
- '新人': 'New',
798
- '正确': 'correct',
799
- '总任务': 'total',
800
1059
  '偏离': 'outlier',
801
1060
  '命中率': 'Accuracy',
802
1061
  '正确数 / 总任务数 · 命中率 = 与多数共识一致的比例': 'correct / total · accuracy = % aligned with majority consensus',
@@ -808,13 +1067,9 @@ const _EN = {
808
1067
  '已开启新任务通知': 'New-task notifications ON',
809
1068
  '已关闭新任务通知': 'New-task notifications OFF',
810
1069
  '搜索判决书 / 双方陈述 / 商品名': 'Search ruling / arguments / product name',
811
- '搜索': 'Search',
812
- '清除': 'Clear',
813
1070
  '条结果': 'results',
814
- '最新': 'Newest',
815
1071
  '热议': 'Most discussed',
816
1072
  '好评': 'Highest fairness',
817
- '已驳回': 'Dismissed',
818
1073
  '同类已判案件': 'Similar resolved cases',
819
1074
  '仅供参考,每案独立判定': 'For reference only · each case judged independently',
820
1075
  '同类目': 'Same category',
@@ -831,9 +1086,7 @@ const _EN = {
831
1086
  'paid → shipped 平均耗时': 'paid → shipped average duration',
832
1087
  '平均备货时长': 'Avg handling time',
833
1088
  'refunded / completed': 'refunded / completed',
834
- '退货率': 'Return rate',
835
1089
  '对比上一': 'vs prev ',
836
- '新': 'NEW',
837
1090
  '跨境订单': 'Cross-border order',
838
1091
  '订单总额低于免税阈值': 'Below duty-free threshold',
839
1092
  '通常无关税': 'usually no import duty',
@@ -858,23 +1111,15 @@ const _EN = {
858
1111
  '不熟悉此领域 · 弃投不扣 outlier · 不影响判决': 'Unfamiliar with this domain · abstain without outlier penalty · no impact on consensus',
859
1112
  '弃投(不熟悉)': 'Abstain (unfamiliar)',
860
1113
  'Agent 榜': 'Agents',
861
- '传奇': 'Legend',
862
- '优质': 'Quality',
863
- '可信': 'Trusted',
864
- '新人': 'New',
865
- '次调用': 'calls',
866
1114
  '个 key': 'keys',
867
- '信任分': 'Trust',
868
1115
  '还没有 Agent 调用过协议 — 接入 MCP 即可上榜': 'No agents have called the protocol yet — integrate via MCP',
869
1116
  '批量改阈值': 'Set threshold',
870
1117
  '批量设置低库存阈值(≥0 整数,0=不预警)': 'Set low-stock threshold (≥0 integer, 0 = no alert)',
871
1118
  '批量上架': 'Re-list',
872
- '移入回收箱': 'To trash',
873
1119
  '已设置': 'Set',
874
- '已上架': 'Listed',
875
1120
  '已移入回收箱': 'Trashed',
876
1121
  '链接核验/失效会被拒绝': 'Items with pending or revoked link verification will be rejected',
877
- '确认上架': 'Confirm re-list',
1122
+ '确认上架': 'Confirm & List',
878
1123
  '确认移入回收箱': 'Confirm trash',
879
1124
  '请求上门取件': 'Request pickup',
880
1125
  '卖家会安排物流到指定地址上门收件(免自寄)': 'Seller arranges courier pickup at your address (no self-shipping)',
@@ -903,15 +1148,11 @@ const _EN = {
903
1148
  '已退款 · 退货完成': 'Refunded · return complete',
904
1149
  '退货取件': 'Return pickups',
905
1150
  '暂无退货取件任务': 'No pickup tasks',
906
- '待揽收': 'To collect',
907
1151
  '快递单号 / GPS / 揽收照片描述': 'Tracking # / GPS / pickup photo desc',
908
- '确认揽收': 'Confirm pickup',
909
1152
  '请填写揽收证据 ≥ 4 字': 'Pickup evidence ≥ 4 chars required',
910
1153
  '✓ 已揽收 · 卖家收到货后将自动退款': '✓ Picked up · refund auto-triggered when seller confirms receipt',
911
1154
  '跨境多语言(可选)': 'Cross-border i18n (optional)',
912
1155
  '为跨境买家提供其他语言版本 — 协议按 Accept-Language 自动切换;缺译回落中文': 'Provide localized versions for cross-border buyers — protocol auto-switches by Accept-Language; missing translation falls back to Chinese',
913
- '标题': 'Title',
914
- '描述': 'Description',
915
1156
  '如 Handmade Leather Wallet': 'e.g. Handmade Leather Wallet',
916
1157
  '英文描述(≤ 500 字)': 'English description (≤ 500 chars)',
917
1158
  '更多语言(日 / 韩)': 'More languages (JA / KO)',
@@ -926,19 +1167,13 @@ const _EN = {
926
1167
  '登录后点赞 / 收藏 / 评论': 'Sign in to like / save / comment',
927
1168
  '分享 / 转发': 'Share / repost',
928
1169
  '复制笔记链接': 'Copy link',
929
- '链接已复制': 'Link copied',
930
- '复制失败': 'Copy failed',
931
1170
  '转发到我自己(需买过同款)': 'Repost as myself (must have bought)',
932
1171
  '该笔记未关联商品,无法转发': 'Note has no linked product, cannot repost',
933
1172
  '分享笔记': 'Share note',
934
1173
  '管理': 'Manage',
935
1174
  '管理我的笔记': 'Manage my notes',
936
- '编辑笔记': 'Edit note',
937
- '已取消关注': 'Unfollowed',
938
- '已取消收藏': 'Removed from saved',
939
1175
  '网络错误': 'Network error',
940
1176
  '确认删除这条笔记?不可恢复': 'Delete this note? Cannot be undone',
941
- '已删除': 'Deleted',
942
1177
 
943
1178
  // ── External links ───────────────────────────────────────────
944
1179
  '买家粘贴这些链接时,智能下单会直接匹配到你的商品': 'When buyers paste these links, Smart Order will directly match your product',
@@ -1007,8 +1242,6 @@ const _EN = {
1007
1242
  '此链接已有进行中的任务': 'Existing pending task for this link',
1008
1243
  '导入来源': 'Imported from',
1009
1244
  '认领验证': 'Claim verification',
1010
- '待验证': 'Pending verification',
1011
- '已验证': 'Verified',
1012
1245
  '验证码': 'Verification code',
1013
1246
  '请将验证码放入原平台商品标题或描述 · 截止': 'Add code to the original listing\'s title or description — deadline:',
1014
1247
  '查看任务进度': 'View task progress',
@@ -1027,7 +1260,6 @@ const _EN = {
1027
1260
  '填入看到的验证码,如 [AB3KW2QP]': 'Enter the code you see, e.g. [AB3KW2QP]',
1028
1261
  '分配给我的任务': 'Tasks Assigned to Me',
1029
1262
  '帮助平台验证外部链接所有权,获得 WAZ 奖励': 'Help verify external link ownership and earn WAZ',
1030
- '提交中...': 'Submitting...',
1031
1263
  '请填入看到的验证码': 'Please enter the code you see',
1032
1264
  '✓ 已提交,等待结算': '✓ Submitted — awaiting settlement',
1033
1265
 
@@ -1104,7 +1336,6 @@ const _EN = {
1104
1336
  '团队达到 50 人': 'Team reaches 50',
1105
1337
  '去发现': 'Browse',
1106
1338
  '去填写': 'Set up',
1107
- '去设置': 'Set up',
1108
1339
  '复制邀请链': 'Copy invite link',
1109
1340
 
1110
1341
  // ── Promoter restructure ────────────────────────────────────
@@ -1113,7 +1344,6 @@ const _EN = {
1113
1344
  '下一档': 'Next tier',
1114
1345
  '已达顶': 'Top tier',
1115
1346
  '分享工具': 'Share Tools',
1116
- '二维码': 'QR Code',
1117
1347
  '我的产品分享': 'My Product Shares',
1118
1348
  '确定': 'OK',
1119
1349
  '去个人主页管理': 'Manage on profile',
@@ -1127,7 +1357,6 @@ const _EN = {
1127
1357
  '积分匹配': 'Matching',
1128
1358
  '累计': 'Total',
1129
1359
  '近 7 日': 'Last 7d',
1130
- '笔': 'records',
1131
1360
  '我累计': 'My total',
1132
1361
  '待分配': 'Pending',
1133
1362
  '动态推荐绑定': 'Dynamic L1 binding',
@@ -1137,7 +1366,6 @@ const _EN = {
1137
1366
  '动态 L1 推荐人': 'Dynamic L1 referrer',
1138
1367
  '触发商品': 'Triggered by',
1139
1368
  '接管的推荐': 'Referrals taken over',
1140
- '更多': 'more',
1141
1369
  '累计动态推荐佣金': 'Total dynamic commission',
1142
1370
 
1143
1371
  // ── Profile polish ──────────────────────────────────────────
@@ -1286,6 +1514,14 @@ const _EN = {
1286
1514
  '立即绑定 Passkey(强烈推荐)': 'Bind a Passkey now (strongly recommended)',
1287
1515
  '测评': 'Review',
1288
1516
  '全新': 'Brand new',
1517
+ '全新商品': 'New goods',
1518
+ '二手闲置': 'Secondhand',
1519
+ '请上传真实实物照,勿用网图/广告图;如经举报核实为虚假图片,商品可能被下架': 'Upload real photos of the actual item — no stock/ad images. Listings with fake photos may be removed if reported.',
1520
+ 'WebAZ 交易保障': 'WebAZ trade protection',
1521
+ '协议费 1%': '1% protocol fee',
1522
+ '资金托管·确认收货才放款': 'Funds escrowed · released only on delivery confirmation',
1523
+ '面交也可托管': 'Escrow available for in-person deals too',
1524
+ '成色声明可社区验证': 'Condition claims can be community-verified',
1289
1525
  'Cmd/Ctrl + ↵': 'Cmd/Ctrl + ↵',
1290
1526
  'k-anonymity ≥': 'k-anonymity ≥',
1291
1527
  '位邻居 24h 活跃': ' neighbors active in 24h',
@@ -1424,7 +1660,6 @@ const _EN = {
1424
1660
  '去发现好物 →': 'Go to Discover →',
1425
1661
  '已取消关注': 'Unfollowed',
1426
1662
  '操作失败,请重试': 'Action failed, please try again',
1427
- '看新品发现 →': 'See New Finds →',
1428
1663
  '只展示被真实买家购买过的商品 · 社交背书 · 非平台推荐': 'Only items real buyers have purchased · social-backed · not platform-recommended',
1429
1664
  '只展示真实成交且好评推荐的内容,用户共建非平台算法推荐': 'Only items with real sales + positive reviews — community-curated, not platform algorithm',
1430
1665
  '人已推荐': 'recommended',
@@ -1476,12 +1711,10 @@ const _EN = {
1476
1711
  '匿名用户': 'Anonymous',
1477
1712
  '匿名评论已发布': 'Anonymous comment posted',
1478
1713
  '平台角色': 'Platform staff',
1479
- '判例库': 'Case library',
1480
1714
  '全网公开仲裁记录 · 脱敏后展示 · 共建协议判例': 'All public arbitration records · anonymized · community-curated protocol precedent',
1481
1715
  '按类目': 'By category',
1482
1716
  '按结果': 'By outcome',
1483
1717
  '暂无符合条件的判例': 'No matching cases',
1484
- '看全部': 'View all',
1485
1718
  '售后': 'After-sale',
1486
1719
  '拒收': 'Rejected',
1487
1720
  '推荐多': 'Most rec.',
@@ -1498,7 +1731,6 @@ const _EN = {
1498
1731
  '去模糊搜索': 'Fuzzy search',
1499
1732
  '不做模糊匹配:': 'does not do fuzzy matching:',
1500
1733
  '关键词没有精确匹配的商品标题或完整链接,可能该商品 WebAZ 还没上架。': 'Your keyword has no exact-matched title or full link — this item may not be listed on WebAZ yet.',
1501
- '雷达': 'Radar',
1502
1734
  '拍卖二手': 'Deals',
1503
1735
  '入驻时长': 'Seller for',
1504
1736
  '年': 'y',
@@ -1538,7 +1770,6 @@ const _EN = {
1538
1770
  // 动态 sub-tab 排行榜
1539
1771
  '完整榜单': 'Full ranking',
1540
1772
  '热门商品': 'Hot products',
1541
- '人推荐': 'recommend',
1542
1773
  '赞': 'likes',
1543
1774
  '我关注的': 'Following',
1544
1775
  '你关注的人还没有动态 — 去关注一些活跃用户': 'No activity from those you follow yet — follow some active users',
@@ -1915,8 +2146,6 @@ const _EN = {
1915
2146
  '已删除': 'Deleted',
1916
2147
  '查看评论': 'View comments',
1917
2148
  '评论需 5-500 字': 'Comment must be 5–500 chars',
1918
- '提交中…': 'Submitting…',
1919
- '评论已发布': 'Comment posted',
1920
2149
  '发表': 'Post',
1921
2150
  '更多': 'More',
1922
2151
  '更多操作': 'More actions',
@@ -1934,7 +2163,6 @@ const _EN = {
1934
2163
  '修改标题 / 正文': 'Edit title / body',
1935
2164
  '查看数据': 'View stats',
1936
2165
  '点击 / 赞 / 收藏 / 评论': 'Clicks / likes / saves / comments',
1937
- '我的笔记': 'My notes',
1938
2166
  '管理所有笔记': 'Manage all notes',
1939
2167
  '不可恢复': 'Cannot be undone',
1940
2168
  'WebAZ 笔记': 'WebAZ note',
@@ -1943,8 +2171,6 @@ const _EN = {
1943
2171
  '分享失败': 'Share failed',
1944
2172
  '扫码访问笔记': 'Scan to open note',
1945
2173
  '已复制链接(QR 不可用)': 'Link copied (QR unavailable)',
1946
- '加载失败': 'Load failed',
1947
- '总点击': 'Total clicks',
1948
2174
  '点赞数': 'Likes',
1949
2175
  '收藏数': 'Saves',
1950
2176
  '评论数': 'Comments',
@@ -1957,7 +2183,6 @@ const _EN = {
1957
2183
  '正文(30-1000 字)': 'Body (30-1000 chars)',
1958
2184
  '图片不可改 — 协议层防剽窃需保留原 hash;要换图请删除后重发': 'Images cannot be changed — protocol anti-plagiarism keeps original hashes; delete & repost to change',
1959
2185
  '正文长度需 30-1000 字': 'Body must be 30-1000 chars',
1960
- '已保存': 'Saved',
1961
2186
  '极致性价比认证': 'Value-for-money certified',
1962
2187
  '协议层算法 · 同类目价格前': 'Protocol algorithm · in top',
1963
2188
  '类目第': 'Category rank #',
@@ -2041,7 +2266,6 @@ const _EN = {
2041
2266
  '争议已驳回': 'Dispute dismissed',
2042
2267
  '订单已超时': 'Order expired',
2043
2268
  '查看下方时间线了解流转详情': 'See timeline below for details',
2044
- '已超时': 'Overdue',
2045
2269
  '请尽快完成付款': 'Please complete payment',
2046
2270
  '等待买家付款': 'Waiting for buyer payment',
2047
2271
  '等待卖家接单': 'Waiting for seller to accept',
@@ -2104,7 +2328,6 @@ const _EN = {
2104
2328
  'Claude 会自动调用 webaz_search / webaz_verify_price / webaz_place_order 等 30+ 个 tool。需要 api_key 时先用 webaz_register 注册或登录现有账号。': 'Claude will auto-call webaz_search / webaz_verify_price / webaz_place_order — 30+ tools. Use webaz_register to create an api_key or log in to an existing account.',
2105
2329
  '内部 vs 外部': 'Internal vs external',
2106
2330
  '内部走浏览器接 LLM key 适合体验;外部 MCP 适合长跑 / 复杂任务 / 命令行自动化。两条路径后端、信誉、escrow 完全共享。': 'Internal browser-with-LLM-key suits casual exploration; external MCP suits long-running / complex / scripted tasks. Both share the same backend, reputation, escrow.',
2107
- '商品图片': 'Photos',
2108
2331
  '(最多 9 张 · 自动压缩到 800px · 第一张为封面 · blob 留在你的节点,平台只存哈希)': '(up to 9 · 800px auto-compressed · first one is cover · blob stays on your node, server only stores hash)',
2109
2332
  '最多 9 张图片': 'Up to 9 photos',
2110
2333
  '文件过大(>12MB)': 'file too large (>12MB)',
@@ -2193,22 +2416,16 @@ const _EN = {
2193
2416
  '待结 Score': 'Pending Score',
2194
2417
  '查看 TA 的主页': 'View their profile',
2195
2418
  '没有更多了': 'No more',
2196
- '信誉': 'Rating',
2419
+ '信誉': 'Reputation',
2197
2420
  '价格 ↑': 'Price ↑',
2198
2421
  '随机探索': 'Explore',
2199
2422
  '换一批': 'Refresh',
2200
2423
  'Agent 信誉': 'Agent Trust',
2201
- '新人': 'New',
2202
- '可信': 'Trusted',
2203
- '优质': 'Quality',
2204
- '传奇': 'Legend',
2205
2424
  '账龄': 'Age',
2206
- '分享转化': 'Share conv.',
2207
2425
  '调用多样': 'API diversity',
2208
2426
  '仲裁败诉': 'Dispute loss',
2209
2427
  '同 IP 多号': 'Same IP cluster',
2210
2428
  '同支': 'Same-branch',
2211
- '限速命中': 'Rate limit hits',
2212
2429
  '再 +': '+',
2213
2430
  '分解锁 raw mode': 'pts to unlock raw mode',
2214
2431
  '已解锁 raw mode API': 'Raw mode unlocked',
@@ -2219,7 +2436,6 @@ const _EN = {
2219
2436
  '调用 endpoint 数': 'Endpoints called',
2220
2437
  '每个 api_key 一份独立信誉;影响 raw mode 等高阶 API 访问': 'Each api_key has its own reputation; affects access to raw mode and other advanced APIs',
2221
2438
  '/ 100+ 分': '/ 100+ pts',
2222
- '天': ' days',
2223
2439
  '分': ' pts',
2224
2440
  '点击量': 'Clicks',
2225
2441
  '真实点击=去重后': 'unique = deduplicated',
@@ -2253,9 +2469,7 @@ const _EN = {
2253
2469
  '推荐理由': 'Reasons',
2254
2470
  '暂无明显推荐理由 — 协议级公平展示': 'No strong reasons — protocol-level neutral display',
2255
2471
  '更多理由': 'More reasons',
2256
- '即将上线': 'Coming soon',
2257
2472
  'M7.3 即将上线': 'Available in M7.3',
2258
- '详情': 'Details',
2259
2473
  '立即下单': 'Order now',
2260
2474
  '比外部平台省': 'Save vs external',
2261
2475
  '分享后可得 L1 佣金 ≈': 'L1 share commission ≈',
@@ -2397,7 +2611,6 @@ const _EN = {
2397
2611
  '例:请提供商品发出时的快递单照片': 'Example: please provide a photo of the shipping label at dispatch',
2398
2612
  '填写退款金额': 'Enter refund amount',
2399
2613
  '赔付金额': 'Compensation amount',
2400
- '上限': 'Cap',
2401
2614
  '请详细说明裁定依据(将记录在案)': 'Explain the ruling rationale in detail (will be recorded)',
2402
2615
  '材质: 陶瓷&#10;容量: 350ml&#10;颜色: 白色': 'Material: ceramic&#10;Capacity: 350ml&#10;Color: white',
2403
2616
  '华东: 2&#10;全国: 5': 'East China: 2&#10;Nationwide: 5',
@@ -2436,7 +2649,6 @@ const _EN = {
2436
2649
  '当前没有可接的验证任务': 'No tasks available right now',
2437
2650
  '我相关的任务': 'My tasks',
2438
2651
  '我被诉的': 'As seller',
2439
- '暂无记录': 'No records',
2440
2652
  '价格优势': 'Price advantage',
2441
2653
  '分享佣金': 'Share commission',
2442
2654
  '协议保障': 'Protocol protection',
@@ -2477,7 +2689,6 @@ const _EN = {
2477
2689
  '注意:截止时间将 +24 小时。虚假证据在结算时额外扣 20% stake。':
2478
2690
  'Note: deadline +24h. False evidence forfeits an additional 20% of stake at settlement.',
2479
2691
  '证据 URL(必填,4-500 字符)': 'Evidence URL (4-500 chars)',
2480
- '提交': 'Submit',
2481
2692
  '证据已提交。新截止时间:': 'Evidence submitted. New deadline: ',
2482
2693
  '请填写证据 URL': 'Please enter the evidence URL',
2483
2694
  '对推荐理由发起验证': 'Verify recommendation reason',
@@ -2490,7 +2701,6 @@ const _EN = {
2490
2701
  '对推荐理由有疑问?发起验证任务': 'Question a recommendation reason? Start verification',
2491
2702
  '锁 10 WAZ 启动,3 verifier 共识仲裁。不可撤销。': 'Lock 10 WAZ to start, 3-verifier consensus. Non-cancellable.',
2492
2703
  '查看任务详情': 'View task',
2493
- '发起验证': 'Start verification',
2494
2704
  '验证活动': 'Verification activity',
2495
2705
  '参与协议级仲裁': 'Participate in protocol arbitration',
2496
2706
 
@@ -2622,7 +2832,6 @@ const _EN = {
2622
2832
  '发布成功': 'Published',
2623
2833
  '至少上传 1 张图片': 'Upload at least 1 image',
2624
2834
  '单张图片不超过 4MB:': 'Each image must be ≤ 4MB: ',
2625
- '封面': 'Cover',
2626
2835
  '请填写标题': 'Please enter a title',
2627
2836
  '请填写价格': 'Please enter a price',
2628
2837
  '成交时协议收取 1% 服务费。escrow 由买家确认收货后释放给你。':
@@ -2676,8 +2885,7 @@ const _EN = {
2676
2885
  // ── M8 UX 优化 ────────────────────────────────────────────
2677
2886
  '价↑': 'Price ↑',
2678
2887
  '价↓': 'Price ↓',
2679
- '价格区间 (WAZ)': 'Price range (WAZ)',
2680
- '最高': 'Max',
2888
+ '价格区间 (USDC)': 'Price range (USDC)',
2681
2889
  '应用': 'Apply',
2682
2890
  '成色 (可多选)': 'Condition (multi)',
2683
2891
  'TA 还在卖': 'Also from this seller',
@@ -2740,7 +2948,6 @@ const _EN = {
2740
2948
  '次日达': 'Next-day',
2741
2949
  '标准快递': 'Standard',
2742
2950
  '预计到达': 'ETA',
2743
- '可选': 'optional',
2744
2951
  '如:0.5 = 半小时': 'e.g., 0.5 = half hour',
2745
2952
  '发货区域': 'Ship from',
2746
2953
  '清仓促销': 'Clearance promo',
@@ -2776,7 +2983,6 @@ const _EN = {
2776
2983
  '仅买家可发求购单': 'Only buyers can post RFQs',
2777
2984
  '我要什么': 'I need',
2778
2985
  '例:100 颗 M5×20 内六角螺丝': 'e.g., 100× M5x20 hex screws',
2779
- '预算': 'Budget',
2780
2986
  '选定模式': 'Award mode',
2781
2987
  '限时窗口期内最低价自动选': 'Auto-pick lowest within window',
2782
2988
  '手动选(看 bid 自由挑)': 'Manual pick',
@@ -2795,7 +3001,6 @@ const _EN = {
2795
3001
  '暂无求购单': 'No RFQs yet',
2796
3002
  '征集中': 'Open',
2797
3003
  '已选定': 'Awarded',
2798
- '个报价': 'bids',
2799
3004
  '最低 ': 'low ',
2800
3005
  '剩余 ': 'remaining ',
2801
3006
  '预算 ≤ ': 'Budget ≤ ',
@@ -2810,7 +3015,6 @@ const _EN = {
2810
3015
  '联系对方': 'Message',
2811
3016
  '举报': 'Report',
2812
3017
  '开始第一句问候': 'Send the first message',
2813
- '添加图片': 'Add image',
2814
3018
  '输入消息(按 Enter 发送)': 'Type a message (Enter to send)',
2815
3019
  '检测到可能引导平台外交易': 'Off-platform handles detected',
2816
3020
  '链外资金协议无法保护': 'protocol cannot protect off-platform funds',
@@ -2826,6 +3030,9 @@ const _EN = {
2826
3030
  '银行卡': 'Bank card',
2827
3031
  'Telegram': 'Telegram',
2828
3032
  '外部链接': 'External URL',
3033
+ '外部平台': 'External platform',
3034
+ '前往源平台查看详情': 'View details on the source platform',
3035
+ '同城共鸣': 'Local buzz',
2829
3036
 
2830
3037
  // ── P3c 收尾 ──────────────────────────────────────────────
2831
3038
  '提前结算(自动选最低价)': 'Settle early (auto-pick lowest)',
@@ -2918,7 +3125,6 @@ const _EN = {
2918
3125
  '当前': 'Current',
2919
3126
  '起拍': 'Start',
2920
3127
  '加价': 'Step',
2921
- '次出价': 'bids',
2922
3128
  '条出价历史': 'bid history',
2923
3129
  '暂无出价': 'No bids yet',
2924
3130
  '当前最高': 'Highest',
@@ -3155,7 +3361,6 @@ const _EN = {
3155
3361
  // ── Tab bar 重组 + #me hub ──────────────────────────────────
3156
3362
  '我的': 'Me',
3157
3363
  '发现': 'Discover',
3158
- '求购': 'Buy Requests',
3159
3364
  '抢单': 'Bid Market',
3160
3365
  '私信': 'Messages',
3161
3366
  '慈善许愿': 'Charity Wishes',
@@ -3184,7 +3389,6 @@ const _EN = {
3184
3389
  '个人资料 + 角色管理': 'Profile + Role mgmt',
3185
3390
  '求购市场': 'Buy Request Market',
3186
3391
  'P2P 商店': 'P2P Shop',
3187
- '发起拍卖': 'Start Auction',
3188
3392
  '发起跟卖': 'Start Follow-list',
3189
3393
  '部分数据加载失败': 'Some data failed to load',
3190
3394
  '重试': 'Retry',
@@ -3197,7 +3401,6 @@ const _EN = {
3197
3401
  '我买我卖': 'My trades',
3198
3402
  '已锁定': 'Locked',
3199
3403
  '钱包余额': 'Wallet Balance',
3200
- '我的求购': 'My RFQs',
3201
3404
  '看公开求购市场': 'Public RFQ market',
3202
3405
  '发新求购': 'New RFQ',
3203
3406
  'AI 自然语言': 'AI natural language',
@@ -3259,7 +3462,6 @@ const _EN = {
3259
3462
  '被告': 'Defendant',
3260
3463
  '金额': 'Amount',
3261
3464
  '仲裁截止': 'Ruling deadline',
3262
- '待处理': 'Pending',
3263
3465
  '已提交': 'Submitted',
3264
3466
  '个任务 ≤6h 截止 — 已置顶标红': 'task(s) ≤6h to deadline — pinned & red',
3265
3467
  '需要关注': 'Needs attention',
@@ -3271,7 +3473,6 @@ const _EN = {
3271
3473
  '恢复': 'Resume',
3272
3474
  '暂停原因(必填,会写入审计)': 'Reason (required, written to audit)',
3273
3475
  '需填写原因': 'Reason required',
3274
- '确认': 'Confirm',
3275
3476
  '批量暂停': 'Batch suspend',
3276
3477
  '批量恢复': 'Batch resume',
3277
3478
  '个用户?': 'users?',
@@ -3296,7 +3497,6 @@ const _EN = {
3296
3497
  '慈善 silver': 'Charity Silver',
3297
3498
  '慈善 bronze': 'Charity Bronze',
3298
3499
  '慈善 none': 'Charity None',
3299
- '审核员': 'Verifier',
3300
3500
  '我的 Agent': 'My Agent',
3301
3501
  '点击展开/收起': 'Tap to expand/collapse',
3302
3502
  'Agent trust': 'Agent trust',
@@ -3371,7 +3571,6 @@ const _EN = {
3371
3571
  '概览': 'Overview',
3372
3572
  '用户管理': 'User Mgmt',
3373
3573
  '查看 / 暂停 / 调权限': 'View / suspend / role',
3374
- '审计日志': 'Audit Log',
3375
3574
  'admin 写操作历史': 'admin write history',
3376
3575
  '订单查看': 'Orders (R/O)',
3377
3576
  '全平台只读': 'Platform-wide read-only',
@@ -3396,7 +3595,6 @@ const _EN = {
3396
3595
 
3397
3596
  // ── admin 重设 ─────────────────────────────────────────────
3398
3597
  '内容': 'Content',
3399
- '仲裁': 'Arbitration',
3400
3598
  '协议': 'Protocol',
3401
3599
  '不可个人交易': 'No personal transactions',
3402
3600
  '治理工作台': 'Governance Workbench',
@@ -3427,11 +3625,9 @@ const _EN = {
3427
3625
  '慈善举报审核': 'Charity Reports Review',
3428
3626
  '3 个不同举报人 → 自动 status=disputed 隐藏;admin 可手动驳回或下架': '3 unique reporters → auto disputed; admin may dismiss or take down',
3429
3627
  '已驳回': 'Dismissed',
3430
- '已下架': 'Actioned',
3431
3628
  '原因': 'Reason',
3432
3629
  '愿望状态': 'Wish status',
3433
3630
  '暂无举报': 'No reports',
3434
- '驳回': 'Dismiss',
3435
3631
  '强制下架愿望': 'Force Takedown',
3436
3632
  '下架原因(必填,会写入审计 + 通知)': 'Takedown reason (required, audited + notified)',
3437
3633
  '从基金池拨款给指定 user_id;用途必填,写入审计 + 推送通知给收款人': 'Disburse from pool to user_id; note required, audited + notified to recipient',
@@ -3477,7 +3673,6 @@ const _EN = {
3477
3673
  '暂无 admin': 'No admins',
3478
3674
  '创建于': 'Created at',
3479
3675
  '最近操作': 'Last action',
3480
- '撤销': 'Revoke',
3481
3676
  '当前账户': 'Current account',
3482
3677
  '请填写用户 ID': 'Please fill user_id',
3483
3678
  '确认授予 ': 'Confirm grant ',
@@ -3531,7 +3726,6 @@ const _EN = {
3531
3726
  '店铺管理': 'Shop',
3532
3727
  '商品 / 营销 / Skill': 'Products / Marketing / Skill',
3533
3728
  'Skill 配置': 'Skill setup',
3534
- '订阅中': 'subscribed',
3535
3729
  'AI 自动化技能': 'AI automation',
3536
3730
  'auto_bid 规则': 'auto_bid rules',
3537
3731
  '订单事件推送': 'Order event push',
@@ -3546,6 +3740,8 @@ const _EN = {
3546
3740
  'Agent 工具': 'Agent tools',
3547
3741
  '搜索 / 下单': 'Search / order',
3548
3742
  '待付款': 'To pay',
3743
+ '直付待付款': 'Direct pay · to pay',
3744
+ '直付超时未确认': 'Direct pay · timed out',
3549
3745
  '待收货': 'To receive',
3550
3746
  '全部完成': 'All done',
3551
3747
  '个争议待处理': 'disputes pending',
@@ -3581,7 +3777,6 @@ const _EN = {
3581
3777
  '门牌描述 / 收件人签收': 'Door note / signature',
3582
3778
  '当前状态无可执行动作': 'No action for current status',
3583
3779
  '快递单号': 'Tracking #',
3584
- '投递凭证': 'Proof',
3585
3780
 
3586
3781
  // ── 仲裁台 ──────────────────────────────────────────────────
3587
3782
  '待裁': 'Pending',
@@ -3603,7 +3798,6 @@ const _EN = {
3603
3798
  '等待被告回应': 'Awaiting response',
3604
3799
  '仲裁审查中': 'Under review',
3605
3800
  '已裁定': 'Resolved',
3606
- '已撤销': 'Dismissed',
3607
3801
  '揽收': 'Pickup',
3608
3802
  '运输': 'Ship',
3609
3803
  '投递': 'Deliver',
@@ -3765,14 +3959,12 @@ const _EN = {
3765
3959
  '误导性': 'Misleading',
3766
3960
  '伪造': 'Fake',
3767
3961
  '成色': 'Condition',
3768
- '价格': 'Price',
3769
3962
 
3770
3963
  // Sprint 3 — auction + wish claim
3771
3964
  '保留价不合理': 'Unreasonable reserve price',
3772
3965
  '自买自卖刷价': 'Shill bidding',
3773
3966
  '围标 / 串通': 'Collusion',
3774
3967
  '商品本身有问题': 'Listing has issues',
3775
- '保留价': 'Reserve price',
3776
3968
  '刷价': 'Shill',
3777
3969
  '围标': 'Collusion',
3778
3970
  '商品问题': 'Listing issue',
@@ -3910,7 +4102,6 @@ const _EN = {
3910
4102
  '保存常用地址,下单时一键选择': 'Save your favorites and pick one at checkout',
3911
4103
  '添加地址': 'Add address',
3912
4104
  '编辑地址': 'Edit address',
3913
- '默认': 'Default',
3914
4105
  '设为默认': 'Set default',
3915
4106
  '设为默认地址': 'Set as default',
3916
4107
  '删除该地址?': 'Delete this address?',
@@ -3960,7 +4151,6 @@ const _EN = {
3960
4151
  '全平台': 'Platform-wide',
3961
4152
  '截止': 'Expires',
3962
4153
  '长期有效': 'No expiry',
3963
- '剩': 'left',
3964
4154
  '无限': 'Unlimited',
3965
4155
  '满': 'Min order',
3966
4156
  '可用': 'qualifying',
@@ -3991,12 +4181,10 @@ const _EN = {
3991
4181
  '日粒度仅展示最近 30 天;汇总指标按完整窗口计算': 'Daily bars show last 30 days only; aggregate KPIs use the full window',
3992
4182
 
3993
4183
  // Wave D-1: 关注的卖家 Feed
3994
- '动态': 'Feed',
3995
4184
  '关注的卖家新品 / 补货': 'New from sellers you follow',
3996
4185
  'Feed 为空 — 关注感兴趣的卖家': 'Feed is empty — follow sellers you like',
3997
4186
  '管理关注': 'Manage follows',
3998
4187
  '关注卖家的新品 / 补货第一时间看到': 'New arrivals & restocks from your follows — first to see',
3999
- '新品': 'New',
4000
4188
  '补货': 'Restock',
4001
4189
 
4002
4190
  // Wave D-2: 订单导出 / 收据
@@ -4072,7 +4260,6 @@ const _EN = {
4072
4260
  '取消该促销?': 'Cancel this flash sale?',
4073
4261
  '暂无进行中的限时促销': 'No flash sales in progress',
4074
4262
  '暂无促销活动': 'No flash sales',
4075
- '进行中': 'Live',
4076
4263
  '已排期': 'Scheduled',
4077
4264
  '已结束': 'Ended',
4078
4265
  '省': 'Save',
@@ -4113,7 +4300,6 @@ const _EN = {
4113
4300
  '店内商品': 'Products',
4114
4301
  '最近评价': 'Recent ratings',
4115
4302
  '该卖家暂无商品': 'No products yet',
4116
- '一句话简介': 'Tagline',
4117
4303
  '最多 200 字': 'max 200 chars',
4118
4304
  '告诉买家你是谁,卖什么': 'Tell buyers who you are and what you sell',
4119
4305
  '店铺横幅图片 URL': 'Shop banner URL',
@@ -4193,7 +4379,6 @@ const _EN = {
4193
4379
  '当前关键词在 24h 热门内无匹配': 'No matches in 24h trending for current keyword',
4194
4380
  '热门卖家': 'Trending sellers',
4195
4381
  '推荐卖家': 'Recommended sellers',
4196
- '卖家信誉': 'Seller rating',
4197
4382
  '卖家累计成交量降序(新品无产品级数据,按卖家维度)': 'Seller lifetime sales DESC (new products have no per-product data — pivoted to seller)',
4198
4383
  '卖家累计被推荐买家数(新品无产品级数据,按卖家维度)': 'Seller cumulative recommend buyers (pivoted to seller, since new products have no per-product data)',
4199
4384
  '完全随机 · 探索冷门新品': 'Pure random · explore hidden new arrivals',
@@ -4216,14 +4401,11 @@ const _EN = {
4216
4401
  '待发笔记': 'Awaiting note',
4217
4402
  '待评估 reach': 'Evaluating reach',
4218
4403
  '待评估': 'Evaluating',
4219
- '已退款': 'Refunded',
4220
4404
  '已超时': 'Expired',
4221
4405
  '请发布一篇带商品 anchor 的笔记,至少': 'Publish a note with product anchor — need at least',
4222
4406
  '浏览或等效转发/转化': 'views or equivalent shares/conversions',
4223
4407
  '去发笔记 →': 'Write note →',
4224
4408
  '浏览': 'views',
4225
- '转发': 'shares',
4226
- '转化': 'conversions',
4227
4409
  '查看笔记 →': 'View note →',
4228
4410
  '已退': 'Refunded',
4229
4411
  '30 天内未达阈值,活动已超时': 'Did not reach threshold in 30 days, expired',
@@ -4244,10 +4426,8 @@ const _EN = {
4244
4426
  '每个新品的测评免单计划 + 实时 reach 进度': 'Each new product\'s review-refund plan + live reach progress',
4245
4427
  '暂无测评活动': 'No active review campaigns',
4246
4428
  '在商品发布表单底部勾选「开启测评免单」即可': 'Toggle "Enable review-trial refund" at the bottom of product publish form',
4247
- '阈值': 'Threshold',
4248
4429
  '启动': 'Started',
4249
4430
  '进行中': 'Active',
4250
- '已关闭': 'Closed',
4251
4431
  '已申请': 'Claimed',
4252
4432
  '评估中': 'Evaluating',
4253
4433
  '超时': 'Expired',
@@ -4261,7 +4441,6 @@ const _EN = {
4261
4441
  '测评免单申请 + 进度': 'Review-refund claims + progress',
4262
4442
  '测评免单活动': 'Review-refund campaigns',
4263
4443
  'reach 达阈自动退款 · 新品冷启': 'Auto refund at reach threshold · new product cold-start',
4264
- '只能为自己买过的订单发笔记': 'You can only post notes for your own purchases',
4265
4444
  '账号关联(IP/UA 与卖家重叠)': 'Account linked (IP/UA overlaps seller)',
4266
4445
  '已订阅提醒': 'Reminder on',
4267
4446
  '提醒我': 'Remind me',
@@ -4297,21 +4476,16 @@ const _EN = {
4297
4476
  'Welcome 提交': 'Welcome submissions',
4298
4477
  '#welcome 留下的邮箱订阅 + 建议': 'Emails + ideas from #welcome',
4299
4478
  '邮箱订阅': 'Email subscribers',
4300
- '建议': 'Ideas',
4301
- '待处理': 'New',
4479
+ '待处理': 'Pending',
4302
4480
  '已查看': 'Triaged',
4303
- '已处理': 'Resolved',
4304
- '新': 'New',
4305
4481
  '邮箱': 'Email',
4306
4482
  '匿名': 'Anonymous',
4307
- '联系方式': 'Contact',
4308
4483
  '标记已查看': 'Mark triaged',
4309
4484
  '标记已处理': 'Mark resolved',
4310
4485
  '标 Spam': 'Mark spam',
4311
4486
  '已更新': 'Updated',
4312
4487
  '暂无记录': 'No records',
4313
4488
  '留言/建议': 'Ideas',
4314
- '类型': 'Type',
4315
4489
  // P1 安全加固
4316
4490
  'PII 数据:查看本页将被审计记录。请勿截屏外传。': 'PII data: viewing this page is audited. Do not screenshot/forward.',
4317
4491
  '订阅中': 'Active',
@@ -4397,7 +4571,6 @@ const _EN = {
4397
4571
  '已取消订阅': 'Unsubscribed',
4398
4572
  '订阅失败': 'Subscription failed',
4399
4573
  '确认取消推送订阅?': 'Cancel push subscription?',
4400
- '暂无评价': 'No ratings yet',
4401
4574
  '当前浏览器不支持推送通知': 'Push notifications not supported in this browser',
4402
4575
 
4403
4576
  // Wave F-1: 协议指标看板
@@ -4432,10 +4605,7 @@ const _EN = {
4432
4605
  '协议参数': 'Protocol params',
4433
4606
  '费率 / 奖励 / 上限': 'Fees / rewards / limits',
4434
4607
  '修改后立即生效,请谨慎调整': 'Changes take effect immediately — adjust with care',
4435
- '费率': 'Fees',
4436
- '奖励': 'Rewards',
4437
4608
  '上限': 'Limits',
4438
- '通用': 'General',
4439
4609
  '默认值': 'Default',
4440
4610
  '修改于': 'updated',
4441
4611
  '重置': 'Reset',
@@ -4479,7 +4649,6 @@ const _EN = {
4479
4649
  // Wave F audit fixes
4480
4650
  '← 重新查询': '← Search again',
4481
4651
  '鉴权失败': 'Auth failed',
4482
- '范围': 'Range',
4483
4652
  '注意:费率按当前 protocol_params 值追溯计算,历史费率变更未单独快照': 'Note: rates use current protocol_params retroactively; historical rate changes are not snapshotted',
4484
4653
 
4485
4654
  // Wave G-1: 钱包连接
@@ -4492,7 +4661,6 @@ const _EN = {
4492
4661
  '钱包已绑定,无需 24h 冷却': 'Wallet bound; 24h cooldown waived',
4493
4662
 
4494
4663
  // Wave G-4
4495
- '最低': 'Min',
4496
4664
 
4497
4665
  // Wave B-5: 配送时间窗
4498
4666
  '偏好配送时段(可选)': 'Preferred delivery window (optional)',
@@ -4558,19 +4726,15 @@ const _EN = {
4558
4726
  '普通上架': 'Standard listing',
4559
4727
  '标准商品 · 即买即发': 'Standard item · buy & ship immediately',
4560
4728
  '销售 / 商品 / 营销 / 自动化': 'Sales / Products / Marketing / Automation',
4561
- '看板': 'Dashboard',
4562
4729
  '营销': 'Marketing',
4563
4730
  '销售分析': 'Sales insights',
4564
4731
 
4565
4732
  // ─── AddProduct 表单 ─────
4566
- '分类': 'Category',
4567
4733
  '备货时间(小时)': 'Lead time (hours)',
4568
4734
  '外部平台商品全标题': 'External platform product full title',
4569
4735
  '例:德尔玛多功能清洁机BY100S(粘贴自源平台「」标题)': 'e.g. Deerma multi-purpose cleaner BY100S (pasted from source platform title)',
4570
4736
  '材质、尺寸、颜色、适用场景...': 'Material, dimensions, color, use case...',
4571
4737
  '售后与物流(填写越完整,Agent 越优先选择你)': 'After-sales & logistics (the more complete, the more agents prioritize you)',
4572
- '配送范围': 'Delivery region',
4573
- '预计时效': 'Estimated lead time',
4574
4738
  '每行:地区: 天数': 'Per line: region: days',
4575
4739
  '选择类目': 'Select category',
4576
4740
  '面向 Agent 检索,写核心参数而非营销语言': 'Written for agent retrieval — use core parameters, not marketing speak',
@@ -4599,7 +4763,6 @@ const _EN = {
4599
4763
  '图书': 'Books',
4600
4764
  '运动': 'Sports',
4601
4765
  '慈善': 'Charity',
4602
- '许愿池': 'Wish pool',
4603
4766
  '个人': 'Personal',
4604
4767
  '🔥 热门': '🔥 Hot',
4605
4768
  '💰 价格 ↑': '💰 Price ↑',
@@ -4669,26 +4832,18 @@ const _EN = {
4669
4832
  '你已 opted-in。如需查看状态或退出,前往 ': 'You are opted in. To view status or opt out, go to ',
4670
4833
  '你可以随时退出,不影响任何已下单或未来订单。本流程是分享分润的经济关系登记(佣金 / PV / escrow 结算规则;层级按地区配置),请仔细阅读全部条款。': 'You can leave anytime without affecting any past or future orders. This registers the share-commission economic relationship (commission / PV / escrow settlement rules; levels per region config) — please read all terms carefully.',
4671
4834
  '注:本「分享分润 / rewards opt-in」仅为 commission / PV / escrow 经济关系登记,不是贡献资格,与贡献任务(#contribute/tasks)/ 我的共建 无关。RFC-002 同意书可能沿用更早措辞,以本 UI 含义为准。': 'Note: this “share-commission / rewards opt-in” is only a commission / PV / escrow economic-relationship registration — NOT contribution eligibility, and unrelated to the contribution funnel (#contribute/tasks) / My contributions. RFC-002’s consent text may retain older wording; this note governs the UI meaning.',
4672
- '门槛(全部通过才能申请)': 'Eligibility (all must pass to apply)',
4673
4835
  '已完成订单': 'Completed orders',
4674
4836
  'Passkey 已注册': 'Passkey registered',
4675
4837
  '必需': 'required',
4676
4838
  '可选': 'optional',
4677
4839
  '同意文本': 'Consent text',
4678
- '请先完成上述未达标指标,完成后再来申请': 'Please complete the missing items above first, then come back to apply',
4679
4840
  '我已阅读全部条款,理解 commission 与 PV 树结构的合规边界': 'I have read all terms and understand the compliance boundaries of commission + PV tree structure',
4680
- '我自愿申请,无人收买 / 诱导': 'I apply voluntarily — no one is bribing or inducing me',
4681
- '用 Passkey 签发提交申请': 'Submit application with Passkey signature',
4682
- '请通过 Passkey / 生物识别确认...': 'Please confirm via Passkey / biometric...',
4683
- 'Passkey 签发失败:': 'Passkey signature failed:',
4684
- '提交中...': 'Submitting...',
4685
4841
  '✅ 分享分润开通成功': '✅ Revenue sharing activated',
4686
4842
  '已从 escrow 拨回:': 'Restored from escrow:',
4687
4843
  '笔': 'entries',
4688
4844
  '分享分润已开通': 'Active',
4689
4845
  '未激活': 'Never activated',
4690
4846
  '已自动降级(consent 未确认)': 'Auto-downgraded (consent not re-confirmed)',
4691
- '已退出': 'Deactivated',
4692
4847
  'Consent version': 'Consent version',
4693
4848
  '待领 escrow': 'Pending escrow',
4694
4849
  'opt-in 后这笔钱会拨回钱包。30 天未领过期入协议公池。': 'These will be restored to your wallet on opt-in. Unclaimed escrow expires to the protocol reserve (commission_reserve) after 30 days.',
@@ -4760,7 +4915,8 @@ const _EN = {
4760
4915
 
4761
4916
  // G-2: AI 价格建议
4762
4917
  'AI 建议': 'AI tip',
4763
- '建议': 'Suggested',
4918
+ '建议': 'Suggestions',
4919
+ '建议价': 'Suggested price',
4764
4920
  '区间': 'Range',
4765
4921
 
4766
4922
  // G-1: AI 文案
@@ -4773,7 +4929,6 @@ const _EN = {
4773
4929
  '实名认证': 'Identity verification',
4774
4930
  '提升账户可信度': 'Boost account trust',
4775
4931
  '已通过认证': 'Verified',
4776
- '审核中': 'Pending review',
4777
4932
  '被拒绝': 'Rejected',
4778
4933
  '上次认证被拒绝': 'Previous submission rejected',
4779
4934
  '提交真实身份信息提升账户可信度;管理员审核后通过': 'Submit real identity to boost trust; admin reviews',
@@ -4789,7 +4944,6 @@ const _EN = {
4789
4944
  '已提交,等待审核': 'Submitted, awaiting review',
4790
4945
  '请填写完整': 'Fill all fields',
4791
4946
  '证件': 'ID',
4792
- '提交于': 'Submitted at',
4793
4947
  'KYC 审核': 'KYC review',
4794
4948
  '待审实名认证': 'Pending KYC',
4795
4949
  '暂无待审核 KYC': 'No pending KYC',
@@ -4954,7 +5108,6 @@ const _EN = {
4954
5108
  '编辑精选管理': 'Manage picks',
4955
5109
  '暂无精选记录': 'No picks',
4956
5110
  '添加精选': 'Add pick',
4957
- '类型': 'Type',
4958
5111
  '目标 ID': 'Target ID',
4959
5112
  '推荐语': 'Tagline',
4960
5113
  '排序值': 'Sort order',
@@ -5054,7 +5207,6 @@ const _EN = {
5054
5207
 
5055
5208
  // ── 钱包出金取消 ─────────────────────────────────────────────
5056
5209
  '待邮件确认': 'Awaiting email confirmation',
5057
- '取消': 'Cancel',
5058
5210
  '取消该提现申请?已扣余额会立即退回': 'Cancel this withdrawal request? Any deducted balance refunds immediately.',
5059
5211
  '取消失败:': 'Cancel failed: ',
5060
5212
  '已取消,退回 ': 'Cancelled, refunded ',
@@ -5179,7 +5331,7 @@ const _EN = {
5179
5331
  '事件时间线': 'Event Timeline',
5180
5332
  '条': 'events',
5181
5333
  '发起争议': 'Dispute Opened',
5182
- '提交证据': 'Evidence Submitted',
5334
+ '证据提交': 'Evidence Submitted',
5183
5335
  '被告反驳': 'Defendant Response',
5184
5336
  '仲裁员索证': 'Arbitrator Request',
5185
5337
  '仲裁裁决': 'Arbitration Ruling',
@@ -5219,7 +5371,6 @@ const _EN = {
5219
5371
  // W7 客服 ticket-thread
5220
5372
  '工单时间线': 'Ticket Timeline',
5221
5373
  '新建工单': 'Ticket Opened',
5222
- '消息': 'Message',
5223
5374
  '状态变更': 'Status Change',
5224
5375
  '已解决': 'Resolved',
5225
5376
  '已关闭': 'Closed',
@@ -5286,8 +5437,6 @@ const _EN = {
5286
5437
  '单号必填': 'Tracking # required',
5287
5438
  '单号已发送': 'Tracking sent',
5288
5439
  // 商品详情页 → 下单弹层重构(A 阶段)
5289
- '已收藏': 'Saved',
5290
- '收藏': 'Save',
5291
5440
  '已订阅': 'Subscribed',
5292
5441
  '到货提醒': 'Notify',
5293
5442
  '对比': 'Compare',
@@ -5307,7 +5456,6 @@ const _EN = {
5307
5456
  '退款': 'Refund',
5308
5457
  '新卖家': 'New seller',
5309
5458
  '单': 'orders',
5310
- '推荐指数': 'Recommend rate',
5311
5459
  '推荐': 'rec',
5312
5460
  '销售': 'sales',
5313
5461
  '评论区规则': 'Comment rules',
@@ -5347,7 +5495,6 @@ const _EN = {
5347
5495
  '科威特': 'Kuwait',
5348
5496
  '阿曼': 'Oman',
5349
5497
  '伊朗': 'Iran',
5350
- '发布': 'Publish',
5351
5498
  '选择内容形式': 'Choose content type',
5352
5499
  '笔记': 'Note',
5353
5500
  '创作笔记': 'Write note',
@@ -5405,7 +5552,6 @@ const _EN = {
5405
5552
  '生成短码 · 大 V 给外站观众的入口': 'Short code · entry for external viewers',
5406
5553
  '我买过的(可推荐)': 'My purchases (shareable)',
5407
5554
  '全部订单': 'All orders',
5408
- '我的主页': 'My profile',
5409
5555
  '我要分享': 'Ready to share',
5410
5556
  '订单分享': 'Order shares',
5411
5557
  '笔记广场': 'Notes plaza',
@@ -5438,7 +5584,6 @@ const _EN = {
5438
5584
  '分享你的使用体验、推荐理由、注意事项…\n\n💡 第一段写场景 / 第二段写细节 / 第三段写总结,更易被收藏': 'Share your experience, why recommend, what to watch out for…\n\n💡 Tip: scene → details → summary makes it more bookmark-friendly',
5439
5585
  '草稿自动保存': 'Auto-saved draft',
5440
5586
  '放弃这条笔记?草稿会被清空': 'Discard this note? Draft will be cleared',
5441
- '预览': 'Preview',
5442
5587
  '预览(仅你可见 · 关闭后回到编辑)': 'Preview (only you can see · close to edit)',
5443
5588
  '返回编辑': 'Back to edit',
5444
5589
  '正文为空,无法预览': 'Body is empty, cannot preview',
@@ -5450,9 +5595,81 @@ const _EN = {
5450
5595
  '编辑资料': 'Edit profile',
5451
5596
  '(原生内容)': '(Native content)',
5452
5597
  '赞过': 'Liked',
5453
- '收藏': 'Saved',
5598
+ '收藏': 'Save',
5454
5599
  '收藏功能即将上线': 'Bookmarks coming soon',
5455
5600
  '即将上线': 'Coming soon',
5601
+ // ── AI agent demo showcase (app-ai.js): example cards (steps / prompts) ──
5602
+ '搜索 500 WAZ 内的手工 / 健康类商品': 'Search handmade / wellness items under 500 WAZ',
5603
+ '叠加 trusted 卖家筛选': 'Add a trusted-seller filter',
5604
+ '从信誉 + 评价 + 故事性挑出 3 件': 'Pick 3 by reputation + reviews + story',
5605
+ '解析外链 → 提取标题 + 价格': 'Parse the external link → extract title + price',
5606
+ '在 WebAZ 上找同款 / 相似品': 'Find the same / similar item on WebAZ',
5607
+ '比对价格 + 信誉,给出"买 WebAZ"或"原平台"建议': 'Compare price + reputation, advise "buy on WebAZ" or "original platform"',
5608
+ '类目筛 "咖啡豆"': 'Filter category "coffee beans"',
5609
+ '逐个查卖家 4 维信誉指标': 'Check each seller across 4 reputation metrics',
5610
+ '保留达标的,挑出最优 3 件': 'Keep the qualifying ones, pick the best 3',
5611
+ '价格 ≤ 300 + 类目 "耳机"': 'Price ≤ 300 + category "earphones"',
5612
+ '读我的默认配送地址(上海)': 'Read my default shipping address (Shanghai)',
5613
+ '保留备货 ≤ 12h + ship_to 包含上海': 'Keep prep ≤ 12h + ship_to includes Shanghai',
5614
+ '推理': 'Reasoning',
5615
+ '过滤': 'Filter',
5616
+ '我妈妈 60 岁生日,预算 500 WAZ 以内。希望礼物实用又有心意,最好是手工或有故事的。优先选 trusted 卖家。': 'My mom turns 60. Budget within 500 WAZ. I want a gift that is practical and thoughtful — ideally handmade or with a story. Prefer trusted sellers.',
5617
+ '我看上一件商品 https://item.example.com/p/123456 帮我看看 WebAZ 上有没有同款或更便宜的替代品,比较价格和卖家信誉。': 'I saw a product https://item.example.com/p/123456 — check whether WebAZ has the same item or a cheaper alternative, comparing price and seller reputation.',
5618
+ '推荐 3 件咖啡豆,只要 trusted 或以上卖家,退款率低于 5%,最好准时发货率 > 90%。': 'Recommend 3 coffee beans, only trusted+ sellers, refund rate under 5%, ideally on-time shipping over 90%.',
5619
+ '我在上海,找耳机预算 300 WAZ 以内,希望能 24h 内收到,备货时间短的优先。': 'I am in Shanghai, looking for earphones within 300 WAZ, ideally delivered within 24h, shorter prep time preferred.',
5620
+ // ── AI agent chat UI (app-ai.js): task-state hints / quick templates / config ──
5621
+ '帮我找一个适合 [对象/年龄] 的礼物,预算 [金额] WAZ,要 [风格/品类] 类型': 'Find me a gift for [recipient/age], budget [amount] WAZ, [style/category] type',
5622
+ '帮我比较 [商品名/链接],找 WebAZ 上的最优价': 'Compare [product/link] and find the best price on WebAZ',
5623
+ '推荐 3 个 [品类] 商品,优先 trusted+ 卖家 + 高完成率': 'Recommend 3 [category] products, prioritizing trusted+ sellers with high completion rates',
5624
+ '我在 [地区],哪些 [品类] 商品能 24h 内发货?': 'I am in [region] — which [category] products can ship within 24h?',
5625
+ '帮我看下最近 7 天的订单状态,有没有需要确认收货的?': 'Check my order status for the last 7 days — anything to confirm as received?',
5626
+ '我想为 [场景] 配齐一套商品,预算 [金额] WAZ — 帮我规划': 'Assemble a set of products for [scenario], budget [amount] WAZ — help me plan',
5627
+ 'OpenAI 兼容 (chat/completions)': 'OpenAI-compatible (chat/completions)',
5628
+ 'Anthropic 兼容 (messages)': 'Anthropic-compatible (messages)',
5629
+ // ── AI provider catalog (app-ai.js): provider desc / keyHint / model labels ──
5630
+ '平台原生模型 · 注册即用 · 无需 API key': 'Platform-native model · ready on sign-up · no API key',
5631
+ '业内最强代理模型 · 工具调用一流 · 付费': 'Best-in-class agent model · top-tier tool use · paid',
5632
+ 'GPT-5 / GPT-4o 系列 · 付费': 'GPT-5 / GPT-4o series · paid',
5633
+ 'DeepSeek V3 / R1 · 开源协议 · 极高性价比': 'DeepSeek V3 / R1 · open-source license · great value',
5634
+ '阿里 · 有开源版 (Qwen2.5/3 全家) · DashScope 兼容 OpenAI': 'Alibaba · open-source builds (Qwen2.5/3 family) · DashScope OpenAI-compatible',
5635
+ '清华系 · GLM-4-Flash 完全免费 · 中文开发者首选': 'Tsinghua lineage · GLM-4-Flash fully free · top pick for Chinese developers',
5636
+ '长上下文之王 · 128k 稳定 · OpenAI 兼容': 'Long-context king · stable 128k · OpenAI-compatible',
5637
+ '字节 · 火山方舟 · 大厂背书 · OpenAI 兼容': 'ByteDance · Volcano Ark · big-vendor backing · OpenAI-compatible',
5638
+ 'Llama / Mixtral on Groq · 免费层 + 极快推理 · 开源': 'Llama / Mixtral on Groq · free tier + ultra-fast inference · open-source',
5639
+ '一个 key 用所有模型 · 聚合付费': 'One key for all models · aggregated · paid',
5640
+ '本机跑开源模型 · 完全离线 · 零费用 · 隐私最强': 'Run open models locally · fully offline · zero cost · best privacy',
5641
+ 'dashscope.console.aliyun.com → API-KEY 管理': 'dashscope.console.aliyun.com → API-KEY management',
5642
+ 'open.bigmodel.cn → 用户中心 → API Keys': 'open.bigmodel.cn → User Center → API Keys',
5643
+ 'platform.moonshot.cn → 用户中心 → API Key': 'platform.moonshot.cn → User Center → API Key',
5644
+ '火山引擎 → 方舟控制台 → API Key(注意:模型 ID 是 endpoint id 形式 ep-xxx)': 'Volcano Engine → Ark console → API Key (note: model ID is an endpoint id, ep-xxx)',
5645
+ 'console.groq.com → API Keys (有免费层)': 'console.groq.com → API Keys (free tier available)',
5646
+ '本地需先 `ollama serve`,默认端口 11434': 'Run `ollama serve` locally first; default port 11434',
5647
+ 'Claude Opus 4.7 (最强)': 'Claude Opus 4.7 (strongest)',
5648
+ 'Claude Sonnet 4.6 (均衡)': 'Claude Sonnet 4.6 (balanced)',
5649
+ 'Claude Haiku 4.5 (快/省,推荐)': 'Claude Haiku 4.5 (fast/cheap, recommended)',
5650
+ 'GPT-5 (最强)': 'GPT-5 (strongest)',
5651
+ 'GPT-5 mini (推荐)': 'GPT-5 mini (recommended)',
5652
+ 'GPT-4o mini (经济)': 'GPT-4o mini (budget)',
5653
+ 'DeepSeek V3 (聊天,推荐)': 'DeepSeek V3 (chat, recommended)',
5654
+ 'DeepSeek R1 (推理强)': 'DeepSeek R1 (strong reasoning)',
5655
+ 'Qwen-Max (旗舰)': 'Qwen-Max (flagship)',
5656
+ 'Qwen-Plus (推荐)': 'Qwen-Plus (recommended)',
5657
+ 'Qwen-Turbo (经济)': 'Qwen-Turbo (budget)',
5658
+ 'Qwen-VL-Max (视觉)': 'Qwen-VL-Max (vision)',
5659
+ 'GLM-4-Flash (完全免费,推荐)': 'GLM-4-Flash (fully free, recommended)',
5660
+ 'GLM-4-Plus (旗舰,付费)': 'GLM-4-Plus (flagship, paid)',
5661
+ 'GLM-4-Air (经济)': 'GLM-4-Air (budget)',
5662
+ 'GLM-Z1-Air (推理)': 'GLM-Z1-Air (reasoning)',
5663
+ 'Moonshot v1 8k (经济)': 'Moonshot v1 8k (budget)',
5664
+ 'Moonshot v1 32k (推荐)': 'Moonshot v1 32k (recommended)',
5665
+ 'Moonshot v1 128k (长文)': 'Moonshot v1 128k (long-context)',
5666
+ 'Doubao Pro 32k (旗舰,需替换为 ep-xxx)': 'Doubao Pro 32k (flagship, replace with ep-xxx)',
5667
+ 'Doubao Pro 128k (长文)': 'Doubao Pro 128k (long-context)',
5668
+ 'Doubao Lite 32k (经济)': 'Doubao Lite 32k (budget)',
5669
+ 'Llama 3.3 70B (推荐)': 'Llama 3.3 70B (recommended)',
5670
+ 'Llama 3.1 8B (极快)': 'Llama 3.1 8B (ultra-fast)',
5671
+ 'Llama 3.3 70B (开源)': 'Llama 3.3 70B (open-source)',
5672
+ 'Gemini 2.0 Flash (免费)': 'Gemini 2.0 Flash (free)',
5456
5673
  '还没赞过任何笔记 — 看到喜欢的就点 ❤': "Haven't liked any notes — tap ❤ on notes you enjoy",
5457
5674
  '还没收藏任何笔记 — 看到想保存的就点 ★': "Haven't bookmarked any notes — tap ★ on notes you want to keep",
5458
5675
  '已收藏': 'Bookmarked',
@@ -5523,7 +5740,6 @@ const _EN = {
5523
5740
  '还没有已完成订单': 'No completed orders yet',
5524
5741
  '完成首笔购买后可在这里一键推荐': 'After first purchase, recommend from here',
5525
5742
  '已分享': 'Shared',
5526
- '次': 'times',
5527
5743
  '带来': 'Brought',
5528
5744
  '写笔记': 'Note',
5529
5745
  '链接': 'Link',
@@ -5633,7 +5849,6 @@ const _EN = {
5633
5849
  '撤销原因(可空):': 'Revocation reason (optional):',
5634
5850
  '已撤销': 'Revoked',
5635
5851
  '已撤销于': 'Revoked at',
5636
- '未声明': 'Undeclared',
5637
5852
  '次调用': 'calls',
5638
5853
  '信任分': 'trust score',
5639
5854
  '新人': 'new',
@@ -5678,7 +5893,6 @@ const _EN = {
5678
5893
  '协议参与': 'Protocol participation',
5679
5894
  '判例库': 'Judgments',
5680
5895
  '我的 Agent 等级': 'My Agent tier',
5681
- '详情': 'Details',
5682
5896
  '争议判决公开': 'Public dispute rulings',
5683
5897
  'RFQ 自动报价': 'Auto-bid on RFQs',
5684
5898
  '未发布': 'None',
@@ -5718,7 +5932,8 @@ const _EN = {
5718
5932
  '去授权': 'Grant location',
5719
5933
  '最近发起的拍卖与二手 · 按时间倒序': 'Recent auctions & second-hand · by time',
5720
5934
  '上架了': 'listed',
5721
- '发起拍卖': 'opened auction',
5935
+ '发起拍卖': 'Start Auction',
5936
+ '发起了拍卖': 'opened an auction',
5722
5937
  '发布二手': 'posted second-hand',
5723
5938
  '次出价': 'bids',
5724
5939
  '暂无出价 · 先到先得': 'No bids yet · first-come-first-served',
@@ -5730,7 +5945,8 @@ const _EN = {
5730
5945
  '最近的买家求购单 · 商家可点击进入报价': "Recent buyer RFQs · sellers tap to bid",
5731
5946
  '我来发一条': 'Post one',
5732
5947
  '暂无求购动态': 'No RFQ activity',
5733
- '求购': 'requested',
5948
+ '求购': 'Buy request',
5949
+ '想买': 'wants to buy',
5734
5950
  '个报价': 'bids',
5735
5951
  '等待商家报价': 'Awaiting seller bids',
5736
5952
  '急': 'urgent',
@@ -5747,7 +5963,6 @@ const _EN = {
5747
5963
  '指南': 'Guide',
5748
5964
  '清单': 'Checklist',
5749
5965
  '次': 'use',
5750
- '审核中': 'Under review',
5751
5966
  '已上架': 'Listed',
5752
5967
  '已退回': 'Returned',
5753
5968
  '已下架': 'Delisted',
@@ -5863,6 +6078,7 @@ const _EN = {
5863
6078
  '商品图片(至少 1 张)': 'Product image (at least 1)',
5864
6079
  '商品图片': 'Product image',
5865
6080
  '分类': 'Category',
6081
+ '商品类型': 'Product type',
5866
6082
  '退货天数(>0)': 'Return days (>0)',
5867
6083
  '备货时效': 'Handling time',
5868
6084
  '配送范围': 'Ship regions',
@@ -5875,8 +6091,8 @@ const _EN = {
5875
6091
  '英文标题(跨境)': 'English title (cross-border)',
5876
6092
 
5877
6093
  // ── #1047 pre-launch 横幅 ────────────────────────────────────
5878
- '协议尚未公开上线 · 数据为测试 / demo · 请勿据此投资或承诺第三方':
5879
- 'Pre-launch protocol · data is test / demo only · do not use for investment or third-party commitments',
6094
+ '直付(direct pay)已上线,是你与卖家的真实场外付款;WebAZ 非托管——不代持、不担保、不退款 · 平台托管(escrow)尚未上线(模拟测试币)· 价格按 USDC 计价仅供展示 · 邀请制预发布,勿据此投资或向第三方承诺':
6095
+ 'Direct pay is live — a real off-platform payment between you and the seller; WebAZ is non-custodial: it does not hold, guarantee, or refund it · platform escrow is not yet live (simulated test tokens) · USDC prices are display units only · invite-only pre-launch — do not invest or make third-party commitments based on this',
5880
6096
  '详情': 'Details',
5881
6097
 
5882
6098
  // ── Agent 护照 Phase 4 签名导出 ──────────────────────────────
@@ -5913,7 +6129,6 @@ const _EN = {
5913
6129
  '等': 'wait',
5914
6130
  '用 Passkey 签发提交申请': 'Sign with Passkey to submit application',
5915
6131
  '请通过 Passkey / 生物识别确认...': 'Please confirm via Passkey / biometric...',
5916
- 'Passkey 签发失败:': 'Passkey signing failed:',
5917
6132
  '门槛未达标': 'Requirements not met',
5918
6133
  '申请已提交,等待 maintainer review': 'Application submitted, waiting for maintainer review',
5919
6134
 
@@ -5981,7 +6196,8 @@ const _EN = {
5981
6196
  '所有 governance application 均已 active 或未达 onboarding 完成':
5982
6197
  'All governance applications are either active or onboarding not complete',
5983
6198
  '返回 admin': 'Back to admin',
5984
- '申请': 'Application',
6199
+ '申请': 'Apply',
6200
+ '申请配额': 'Requested',
5985
6201
  'Region': 'Region',
5986
6202
  'Email': 'Email',
5987
6203
  '题目': 'Quiz',
@@ -6041,7 +6257,8 @@ const _EN = {
6041
6257
  '已 assigned 但未完成的 case 必须先完成 / 转交,否则无法卸任':
6042
6258
  'Assigned but unresolved cases must be completed / transferred before resigning',
6043
6259
  '输入': 'Type',
6044
- '确认': 'to confirm',
6260
+ '确认': 'Confirm',
6261
+ '以确认': 'to confirm',
6045
6262
  '取消': 'Cancel',
6046
6263
  'Passkey 签发卸任': 'Sign resignation with Passkey',
6047
6264
  '请求 Passkey...': 'Requesting Passkey...',