Skip to content

main

Choose a tag to compare

@github-actions github-actions released this 12 Aug 03:15
· 72 commits to main since this release
fix(translate): 修复翻译摘要部分文本被跳过

根因: Google gtx 对短文本节点可能返回空串译文('')。
per-node 回退用 '?? c' 只对 null/undefined 生效, 空串 '' 会被原样写入
→ 对应 HTML 文本节点被替换为空 = 摘要片段消失。
修复:
- translateHtml per-node: 译文/原文为空串时一律回退原文
- translateChunk: 整段译文为空时回退原文(纯文本摘要整段消失)