translation-review — Chinese-English Translation Review
Systematically compare a Chinese source document against its English translation,
identify issues across 6 dimensions, and produce a prioritized review report.
When to Use
- User provides a Chinese original + English translation pair for review
- User asks to check/proofread an English translation from Chinese
- User mentions "翻译检查", "审校", "translation review"
Workflow (MANDATORY)
You MUST follow these steps in order:
Step 1: Collect Input
Use AskUserQuestion to confirm before starting:
Ask the user:
- Document type — academic paper (SCI/EI), technical docs, business docs, general
- Domain — medicine, CS, law, finance, general (affects terminology checking)
- Focus areas — terminology accuracy, grammar, style, references, all (multi-select)
If the user has already provided context (e.g., "SCI 4区医学论文"), skip the obvious questions.
Step 2: Read Both Documents
Read the Chinese source and English translation. For .docx files:
pandoc "<chinese_file>.docx" -t plain --wrap=none
pandoc "<english_file>.docx" -t plain --wrap=none
For .md or .txt files, read directly.
If files are large, read in sections (offset/limit) to stay within context.
Step 3: Systematic Review
Compare the two documents across 6 dimensions, in this order:
D1: Mistranslation (meaning changed)
- Words/phrases translated to a different meaning
- Omissions (content in Chinese missing from English)
- Additions (content in English not in Chinese)
- Pay special attention to domain-specific terms that have been incorrectly generalized or specialized
D2: Terminology Accuracy
- Domain-specific terms: check against standard English terminology
- Abbreviation consistency: first occurrence should have full form + abbreviation
- Proper nouns: names, institutions, gene/protein names, drug names
- Units and measurements
D3: Grammar & Syntax
- Subject-verb agreement
- Tense consistency (especially in Methods vs Results)
- Article usage (a/an/the) — common error in Chinese-to-English
- Dangling modifiers, run-on sentences
- Passive voice overuse
D4: Consistency
- Same Chinese term translated differently in different places
- Formatting inconsistencies (capitalization, hyphenation, number style)
- Heading style consistency
D5: References & Citations (academic papers only)
- Citation numbers match between Chinese and English versions
- Reference format consistency (author names, journal abbreviations)
- Missing author information in reference entries
- In-text citation correctness
D6: Style & Register
- Academic register appropriate for target journal
- Overly verbose or literary phrasing
- Chinese-influenced sentence structure (e.g., "through...method" patterns)
- Paragraph length and structure
Step 4: Source Document Issues
While reviewing, also note issues in the Chinese source that the English faithfully translates but are themselves incorrect. Flag these separately.
Step 5: Generate Report
Output a structured review report with the following format:
# 翻译审校报告 / Translation Review Report
**Document**: [title]
**Reviewer**: 手工川 (AI-assisted)
**Date**: [YYYY-MM-DD]
**Domain**: [domain]
**Document type**: [type]
---
## Summary
[2-3 sentence overall assessment]
---
## A-Level Issues (Must Fix)
### A1. [Issue title]
**Location**: [section/paragraph]
**Original (CN)**: "..."
**Translation (EN)**: "..."
**Problem**: [explanation]
**Suggested fix**: → "..."
---
## B-Level Issues (Recommended)
### B1. [Issue title]
...
---
## Source Document Issues
### C1. [Issue title]
...
---
## Priority Summary
| Priority | # | Issue | Impact |
|----------|---|-------|--------|
| Must fix | A1 | ... | ... |
| ... | | | |
---
## Conclusion
[Overall quality assessment + recommended next steps]
Step 6: Save Report
Save the report to the same directory as the input files:
Filename: 手工川-translation-review-{YYYY-MM-DD}-v0.1.md
If a file with this name exists, increment the version.
Issue Severity Classification
| Level |
Criteria |
Examples |
| A (Must fix) |
Meaning changed, factual error, or would cause rejection |
Mistranslation, wrong terminology, reference number mismatch |
| B (Recommended) |
Awkward but understandable, or non-standard usage |
Verbose phrasing, minor grammar, style inconsistency |
| C (Source issue) |
Error in Chinese original, faithfully translated |
Wrong terminology in Chinese, factual inaccuracy |
Domain-Specific Checklists
Academic / SCI Papers
Medical / Biomedical
Technical Documentation
1---2name: sgc-translation-review3description: Review Chinese-to-English translations for accuracy, grammar, terminology, and consistency. Produces a structured review report with prioritized issues. Trigger when: user provides a Chinese document and its English translation for review/checking/proofreading, or mentions "翻译检查", "翻译审校", "translation review", "translation check", "proofread translation".4license: MIT5---67# translation-review — Chinese-English Translation Review89Systematically compare a Chinese source document against its English translation,10identify issues across 6 dimensions, and produce a prioritized review report.1112## When to Use1314- User provides a Chinese original + English translation pair for review15- User asks to check/proofread an English translation from Chinese16- User mentions "翻译检查", "审校", "translation review"1718## Workflow (MANDATORY)1920**You MUST follow these steps in order:**2122### Step 1: Collect Input2324**Use `AskUserQuestion` to confirm before starting:**2526Ask the user:271. **Document type** — academic paper (SCI/EI), technical docs, business docs, general282. **Domain** — medicine, CS, law, finance, general (affects terminology checking)293. **Focus areas** — terminology accuracy, grammar, style, references, all (multi-select)3031If the user has already provided context (e.g., "SCI 4区医学论文"), skip the obvious questions.3233### Step 2: Read Both Documents3435Read the Chinese source and English translation. For `.docx` files:3637```bash38pandoc "<chinese_file>.docx" -t plain --wrap=none39pandoc "<english_file>.docx" -t plain --wrap=none40```4142For `.md` or `.txt` files, read directly.4344If files are large, read in sections (offset/limit) to stay within context.4546### Step 3: Systematic Review4748Compare the two documents across **6 dimensions**, in this order:4950#### D1: Mistranslation (meaning changed)51- Words/phrases translated to a different meaning52- Omissions (content in Chinese missing from English)53- Additions (content in English not in Chinese)54- Pay special attention to domain-specific terms that have been incorrectly generalized or specialized5556#### D2: Terminology Accuracy57- Domain-specific terms: check against standard English terminology58- Abbreviation consistency: first occurrence should have full form + abbreviation59- Proper nouns: names, institutions, gene/protein names, drug names60- Units and measurements6162#### D3: Grammar & Syntax63- Subject-verb agreement64- Tense consistency (especially in Methods vs Results)65- Article usage (a/an/the) — common error in Chinese-to-English66- Dangling modifiers, run-on sentences67- Passive voice overuse6869#### D4: Consistency70- Same Chinese term translated differently in different places71- Formatting inconsistencies (capitalization, hyphenation, number style)72- Heading style consistency7374#### D5: References & Citations (academic papers only)75- Citation numbers match between Chinese and English versions76- Reference format consistency (author names, journal abbreviations)77- Missing author information in reference entries78- In-text citation correctness7980#### D6: Style & Register81- Academic register appropriate for target journal82- Overly verbose or literary phrasing83- Chinese-influenced sentence structure (e.g., "through...method" patterns)84- Paragraph length and structure8586### Step 4: Source Document Issues8788While reviewing, also note issues in the **Chinese source** that the English faithfully translates but are themselves incorrect. Flag these separately.8990### Step 5: Generate Report9192Output a structured review report with the following format:9394```markdown95# 翻译审校报告 / Translation Review Report9697**Document**: [title]98**Reviewer**: 手工川 (AI-assisted)99**Date**: [YYYY-MM-DD]100**Domain**: [domain]101**Document type**: [type]102103---104105## Summary106107[2-3 sentence overall assessment]108109---110111## A-Level Issues (Must Fix)112113### A1. [Issue title]114**Location**: [section/paragraph]115**Original (CN)**: "..."116**Translation (EN)**: "..."117**Problem**: [explanation]118**Suggested fix**: → "..."119120---121122## B-Level Issues (Recommended)123124### B1. [Issue title]125...126127---128129## Source Document Issues130131### C1. [Issue title]132...133134---135136## Priority Summary137138| Priority | # | Issue | Impact |139|----------|---|-------|--------|140| Must fix | A1 | ... | ... |141| ... | | | |142143---144145## Conclusion146147[Overall quality assessment + recommended next steps]148```149150### Step 6: Save Report151152Save the report to the same directory as the input files:153154**Filename**: `手工川-translation-review-{YYYY-MM-DD}-v0.1.md`155156If a file with this name exists, increment the version.157158## Issue Severity Classification159160| Level | Criteria | Examples |161|-------|----------|---------|162| **A (Must fix)** | Meaning changed, factual error, or would cause rejection | Mistranslation, wrong terminology, reference number mismatch |163| **B (Recommended)** | Awkward but understandable, or non-standard usage | Verbose phrasing, minor grammar, style inconsistency |164| **C (Source issue)** | Error in Chinese original, faithfully translated | Wrong terminology in Chinese, factual inaccuracy |165166## Domain-Specific Checklists167168### Academic / SCI Papers169- [ ] Abstract: structured, matches body content170- [ ] Keywords: standard MeSH or domain terms171- [ ] Reference numbers: sequential, match between CN/EN versions172- [ ] Figure/table captions: translated and consistent173- [ ] Statistical reporting: p-values, CI format174175### Medical / Biomedical176- [ ] Disease names: ICD/MeSH standard177- [ ] Gene/protein names: HUGO/UniProt standard (italics for genes)178- [ ] Drug names: INN (International Nonproprietary Names)179- [ ] Anatomical terms: Terminologia Anatomica standard180181### Technical Documentation182- [ ] UI strings: consistent with product localization183- [ ] Code snippets: untranslated, syntax preserved184- [ ] API terms: match official documentation