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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
小众软件
小众软件
量子位
月光博客
月光博客
P
Proofpoint News Feed
IT之家
IT之家
腾讯CDC
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio 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
fix(ui): avoid noisy i18n report locale warnings · opencl...
steipete · 2026-05-14 · via Recent Commits to openclaw:main

@@ -2,13 +2,10 @@ import { existsSync } from "node:fs";

22

import { readFile } from "node:fs/promises";

33

import path from "node:path";

44

import { fileURLToPath, pathToFileURL } from "node:url";

5-

import type { TranslationMap } from "../ui/src/i18n/lib/types.ts";

6576

const ROOT = path.resolve(fileURLToPath(new URL("..", import.meta.url)));

87

const I18N_ASSETS_DIR = path.join(ROOT, "ui/src/i18n/.i18n");

9-

const LOCALES_DIR = path.join(ROOT, "ui/src/i18n/locales");

108

const RAW_COPY_BASELINE_PATH = path.join(I18N_ASSETS_DIR, "raw-copy-baseline.json");

11-

const SOURCE_LOCALE_PATH = path.join(LOCALES_DIR, "en.ts");

129

const DEFAULT_TOP = 10;

1310

const LOCALE_LABELS: Record<string, string> = {

1411

ar: "Arabic",

@@ -91,7 +88,6 @@ export type RawCopySummary = {

9188

export type LocaleSummary = {

9289

fallbackKeysInScope: string[];

9390

meta: LocaleMeta;

94-

sameAsEnglishKeys: string[];

9591

};

96929793

type ReportInput = {

@@ -193,29 +189,6 @@ function normalizeToken(value: string) {

193189

return value.trim().toLowerCase();

194190

}

195191196-

export function flattenTranslations(

197-

value: TranslationMap,

198-

prefix = "",

199-

out = new Map<string, string>(),

200-

) {

201-

for (const [key, nested] of Object.entries(value)) {

202-

const fullKey = prefix ? `${prefix}.${key}` : key;

203-

if (typeof nested === "string") {

204-

out.set(fullKey, nested);

205-

continue;

206-

}

207-

flattenTranslations(nested, fullKey, out);

208-

}

209-

return out;

210-

}

211-212-

export function computeSameAsEnglishKeys(source: Map<string, string>, target: Map<string, string>) {

213-

return [...target.entries()]

214-

.filter(([key, value]) => source.get(key) === value)

215-

.map(([key]) => key)

216-

.toSorted();

217-

}

218-219192

export function filterTranslationKeysBySurface(keys: string[], surface?: string) {

220193

if (!surface) {

221194

return keys;

@@ -275,24 +248,14 @@ function formatIssueLines(input: ReportInput) {

275248

return lines;

276249

}

277250278-

if (

279-

input.locale.fallbackKeysInScope.length === 0 &&

280-

input.locale.sameAsEnglishKeys.length === 0

281-

) {

251+

if (input.locale.fallbackKeysInScope.length === 0) {

282252

lines.push(` No ${input.locale.meta.locale} locale problems found in this scope.`);

283253

return lines;

284254

}

285255286-

if (input.locale.fallbackKeysInScope.length > 0) {

287-

lines.push(

288-

` ${input.locale.meta.locale} has ${formatMissingKeyCount(input.locale.fallbackKeysInScope.length)}.`,

289-

);

290-

}

291-

if (input.locale.sameAsEnglishKeys.length > 0) {

292-

lines.push(

293-

` ${formatSameAsEnglishIssue(input.locale.sameAsEnglishKeys.length, input.locale.meta.locale)}.`,

294-

);

295-

}

256+

lines.push(

257+

` ${input.locale.meta.locale} has ${formatMissingKeyCount(input.locale.fallbackKeysInScope.length)}.`,

258+

);

296259

return lines;

297260

}

298261

@@ -322,13 +285,6 @@ function formatFallbackCount(count: number) {

322285

return `${count} ${count === 1 ? "fallback" : "fallbacks"}`;

323286

}

324287325-

function formatSameAsEnglishIssue(count: number, locale: string) {

326-

if (count === 1) {

327-

return `1 ${locale} translation still matches English and needs review`;

328-

}

329-

return `${count} ${locale} translations still match English and need review`;

330-

}

331-332288

function formatSurfaceLabel(surface?: string) {

333289

if (!surface) {

334290

return "all Control UI";

@@ -369,20 +325,6 @@ async function loadLocaleMeta(locale: string): Promise<LocaleMeta> {

369325

return JSON.parse(await readFile(metaPath, "utf8")) as LocaleMeta;

370326

}

371327372-

async function loadLocaleMap(locale: string): Promise<TranslationMap> {

373-

const filePath = locale === "en" ? SOURCE_LOCALE_PATH : path.join(LOCALES_DIR, `${locale}.ts`);

374-

if (!existsSync(filePath)) {

375-

throw new Error(`unknown locale file: ${locale}`);

376-

}

377-

const exportName = locale.replaceAll("-", "_");

378-

const mod = (await import(pathToFileURL(filePath).href)) as Record<string, TranslationMap>;

379-

const map = mod[exportName];

380-

if (!map) {

381-

throw new Error(`locale ${locale} does not export ${exportName}`);

382-

}

383-

return map;

384-

}

385-386328

async function buildReport(args: ReportArgs) {

387329

const baseline = await loadRawCopyBaseline();

388330

const entries = filterRawCopyEntries(baseline.entries, args.surface);

@@ -392,18 +334,10 @@ async function buildReport(args: ReportArgs) {

392334

};

393335394336

if (args.locale) {

395-

const [meta, source, target] = await Promise.all([

396-

loadLocaleMeta(args.locale),

397-

loadLocaleMap("en"),

398-

loadLocaleMap(args.locale),

399-

]);

337+

const meta = await loadLocaleMeta(args.locale);

400338

input.locale = {

401339

fallbackKeysInScope: filterTranslationKeysBySurface(meta.fallbackKeys, args.surface),

402340

meta,

403-

sameAsEnglishKeys: filterTranslationKeysBySurface(

404-

computeSameAsEnglishKeys(flattenTranslations(source), flattenTranslations(target)),

405-

args.surface,

406-

),

407341

};

408342

}

409343