惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
Jina AI
Jina AI
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
Last Week in AI
Last Week in AI
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
博客园 - 聂微东
月光博客
月光博客
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(plugins): localize channel setup wizards · openclaw/...
GaosCode · 2026-05-15 · via Recent Commits to openclaw:main

@@ -1,7 +1,7 @@

11

import { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/account-id";

22

import type { DiscordGuildEntry, OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

33

import type { ChannelSetupDmPolicy, ChannelSetupWizard } from "openclaw/plugin-sdk/setup-runtime";

4-

import { createStandardChannelSetupStatus } from "openclaw/plugin-sdk/setup-runtime";

4+

import { createStandardChannelSetupStatus, t } from "openclaw/plugin-sdk/setup-runtime";

55

import { formatDocsLink } from "openclaw/plugin-sdk/setup-tools";

66

import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";

77

import {

@@ -20,11 +20,11 @@ import {

2020

const channel = "discord" as const;

21212222

const DISCORD_TOKEN_HELP_LINES = [

23-

"1) Discord Developer Portal -> Applications -> New Application",

24-

"2) Bot -> Add Bot -> Reset Token -> copy token",

25-

"3) OAuth2 -> URL Generator -> scope 'bot' -> invite to your server",

26-

"Tip: enable Message Content Intent if you need message text. (Bot -> Privileged Gateway Intents -> Message Content Intent)",

27-

`Docs: ${formatDocsLink("/discord", "discord")}`,

23+

t("wizard.discord.tokenHelpCreateApplication"),

24+

t("wizard.discord.tokenHelpCopyToken"),

25+

t("wizard.discord.tokenHelpInviteBot"),

26+

t("wizard.discord.tokenHelpMessageContentIntent"),

27+

t("wizard.channels.docs", { link: formatDocsLink("/discord", "discord") }),

2828

];

29293030

type DiscordGuildChannelAllowlistEntry = {

@@ -118,10 +118,10 @@ export function createDiscordSetupWizardBase(handlers: {

118118

channel,

119119

status: createStandardChannelSetupStatus({

120120

channelLabel: "Discord",

121-

configuredLabel: "configured",

122-

unconfiguredLabel: "needs token",

123-

configuredHint: "configured",

124-

unconfiguredHint: "needs token",

121+

configuredLabel: t("wizard.channels.statusConfigured"),

122+

unconfiguredLabel: t("wizard.channels.statusNeedsToken"),

123+

configuredHint: t("wizard.channels.statusConfigured"),

124+

unconfiguredHint: t("wizard.channels.statusNeedsToken"),

125125

configuredScore: 2,

126126

unconfiguredScore: 1,

127127

resolveConfigured: ({ cfg, accountId }) =>

@@ -131,13 +131,13 @@ export function createDiscordSetupWizardBase(handlers: {

131131

{

132132

inputKey: "token",

133133

providerHint: channel,

134-

credentialLabel: "Discord bot token",

134+

credentialLabel: t("wizard.discord.botToken"),

135135

preferredEnvVar: "DISCORD_BOT_TOKEN",

136-

helpTitle: "Discord bot token",

136+

helpTitle: t("wizard.discord.botToken"),

137137

helpLines: DISCORD_TOKEN_HELP_LINES,

138-

envPrompt: "DISCORD_BOT_TOKEN detected. Use env var?",

139-

keepPrompt: "Discord token already configured. Keep it?",

140-

inputPrompt: "Enter Discord bot token",

138+

envPrompt: t("wizard.discord.tokenEnvPrompt"),

139+

keepPrompt: t("wizard.discord.tokenKeepPrompt"),

140+

inputPrompt: t("wizard.discord.tokenInputPrompt"),

141141

allowEnv: ({ accountId }: { accountId: string }) => accountId === DEFAULT_ACCOUNT_ID,

142142

inspect: ({ cfg, accountId }: { cfg: OpenClawConfig; accountId: string }) => {

143143

const account = inspectDiscordSetupAccount({ cfg, accountId });

@@ -155,7 +155,7 @@ export function createDiscordSetupWizardBase(handlers: {

155155

],

156156

groupAccess: createAccountScopedGroupAccessSection({

157157

channel,

158-

label: "Discord channels",

158+

label: t("wizard.discord.channelsLabel"),

159159

placeholder: "My Server/#general, guildId/channelId, #support",

160160

currentPolicy: ({ cfg, accountId }: { cfg: OpenClawConfig; accountId: string }) =>

161161

resolveDiscordSetupAccountConfig({ cfg, accountId }).config.groupPolicy ?? "allowlist",

@@ -191,18 +191,17 @@ export function createDiscordSetupWizardBase(handlers: {

191191

credentialInputKey: "token",

192192

helpTitle: "Discord allowlist",

193193

helpLines: [

194-

"Allowlist Discord DMs by username (we resolve to user ids).",

195-

"Examples:",

194+

t("wizard.discord.allowlistIntro"),

195+

t("wizard.discord.examples"),

196196

"- 123456789012345678",

197197

"- @alice",

198198

"- alice#1234",

199-

"Multiple entries: comma-separated.",

200-

`Docs: ${formatDocsLink("/discord", "discord")}`,

199+

t("wizard.discord.multipleEntries"),

200+

t("wizard.channels.docs", { link: formatDocsLink("/discord", "discord") }),

201201

],

202-

message: "Discord allowFrom (usernames or ids)",

202+

message: t("wizard.discord.allowFromPrompt"),

203203

placeholder: "@alice, 123456789012345678",

204-

invalidWithoutCredentialNote:

205-

"Bot token missing; use numeric user ids (or mention form) only.",

204+

invalidWithoutCredentialNote: t("wizard.discord.allowFromInvalidWithoutToken"),

206205

parseId: parseDiscordAllowFromId,

207206

resolveEntries: handlers.resolveAllowFromEntries,

208207

}),