专业翻译:18 种目标语言、4 种风格(正式/口语/技术/直译)、术语表控制译名、整文件翻译(README/文档/字幕)并保留 Markdown 与代码块格式;经 SiliconFlow 调用 DeepSeek。
安装
# GitHub 源码(首次需按提示配置 allowBuilds 构建授权后重试)
dsh plugin --profile web add github:ShiXiangYu2/dsh-translate-pro
装任何插件都等于在你的机器上跑第三方代码,权限和你本人一样大——能读你的文件、用你的凭据、访问网络,工具审批管不到它。GitHub 来源的插件还会在安装时执行构建脚本。请只安装可信来源,并尽量锁定 commit(github:owner/repo#sha)。
README
Professional translation for DeepSeek Harness — 18 target languages, 4 writing styles, terminology control, and whole-file translation with format preservation.
✨ Why this plugin
LLMs can "sort of" translate. DSH Translate Pro gives you professional-grade translation with controls you can't get from a casual chat prompt:
| Feature | What it does |
|---|---|
| 🌍 18 target languages | Chinese, English, Japanese, Korean, French, German, Spanish, Russian, Portuguese, Italian, Arabic, Thai, Vietnamese, Indonesian, Turkish, Hindi, Polish, Dutch |
| 🎭 4 writing styles | formal / casual / technical / literal — from legal documents to daily chat |
| 📖 Glossary control | Pin terminology: API=应用程序接口, LLM=大语言模型 — consistent terms across every translation |
| 📄 Whole-file translation | Translate READMEs, docs, subtitles, code comments while preserving Markdown, code blocks, URLs, and paths |
| ✍️ In-place write-back | One call translates your file and writes the result back — instant localized docs |
| 🧠 DeepSeek engine | Powered by DeepSeek V4-Flash (fast/cheap) or V3.2 (highest quality) via SiliconFlow |
| 🎨 Conversation cards | Side-by-side 原文/译文 cards rendered right in the chat stream |
📸 Demo
Screenshots coming soon — the plugin renders bilingual comparison cards directly in your DSH conversation.
你: 把这段翻译成日语,正式风格:
"Please find attached the revised contract for your review."
DSH: 🌐 translate → 日语 · formal
原文: Please find attached the revised contract for your review.
译文: 修正後の契約書をレビューのため添付しましたので、ご確認ください。
🚀 Install
Prerequisite: one free API key
Register at SiliconFlow (free credits included) and set the key:
export SILICONFLOW_API_KEY=sk-xxxxxxxx
Install the plugin
# From GitHub (no build step needed — ships plain ESM)
dsh plugin --profile demo add github:ShiXiangYu2/dsh-translate-pro
# From npm (prebuilt)
dsh plugin --profile demo add dsh-translate-pro
Verify the layer:
dsh --profile demo --dump-config # shows a "# == dsh-translate-pro" layer
Start and use it:
SILICONFLOW_API_KEY=sk-xxx dsh --profile demo
🛠 Tools
translate
Translate text with full control:
| Parameter | Type | Description |
|---|---|---|
text |
string (required) | The text to translate |
target |
string | Target language (default: 中文) |
source |
string | Source language (auto-detected if omitted) |
style |
string | formal / casual / technical / literal |
glossary |
string | Terminology map, e.g. API=应用程序接口,LLM=大语言模型 |
model |
string | deepseek-ai/DeepSeek-V4-Flash (default) or deepseek-ai/DeepSeek-V3.2 |
translate_file
Translate an entire file, preserving its format:
| Parameter | Type | Description |
|---|---|---|
path |
string (required) | File to translate (workspace-relative or absolute) |
target |
string | Target language (default: 中文) |
style |
string | Translation style |
glossary |
string | Terminology map |
inPlace |
boolean | Write the translation back to the file (default: false) |
model |
string | Engine model |
💬 Examples
<!-- In your DSH conversation -->
翻译:"The quick brown fox jumps over the lazy dog." 到英语 casual 风格
用 translate_file 把 README.md 翻译成中文并写回 (inPlace: true)
把这段 API 文档翻译成日语,术语表:API=API, function=関数
🧩 Structure
dsh-translate-pro/
├── package.json # declares dsh.bundle
├── cordis.patch.yml # the layer applied when a profile lists this bundle
└── index.js # plugin module: translate + translate_file tools
⚠️ Note
inPlacewrites require file write permissions in your dsh profile's sandbox policy.- Translation is powered by DeepSeek models hosted on SiliconFlow — data is sent to that API.
📄 License
MIT
链接
同类插件
liustack/modlens★ 1398
为纯文本模型架起视觉桥梁:粘贴图片,输出结构化 JSON 证据(OCR、版面、语义)。
Anionex/dsh-vision-toolkit★ 361
让纯文本模型更好地做视觉任务:带意图的图片问答、长截图 OCR、UI 还原等。
zhaoolee/notes★ 141
将 DSH 对话导出为锤子便签风格 PNG,或在配置的账号工作区中新建和更新 Markdown 便签。
Lum1104/dsh-browser★ 101
Chrome 侧边栏扩展,让 DSH 直接操控你的浏览器,无需视觉能力。
dsh-market/dsh-market★ 96
装在 DSH 里的插件市场:设置页内逛/搜全部社区插件,按分类筛选,确认后一键安装,已装插件一目了然。
liustack/modsearch★ 95
纯文本 agent 的联网搜索桥:搜索网页与 X,返回结构化 JSON 证据(search/fetch/引用)。