Blog Translate, SEO-Optimized Blog Translation
Translates an existing blog post into one or more target languages. Unlike
generic translation, this skill produces SEO-optimized, publication-ready
content with localized keywords, meta tags, and culturally correct
formatting.
Key References
Load on demand:
references/translation-rules.md, format preservation, number/date/currency
formats per locale, quote handling, quality criteria.
references/cultural-adaptation.md, cultural profiles per locale (DACH,
Francophone, Hispanic, Japanese, custom). This file is shared with
blog-localize (do not duplicate).
Workflow
Phase 1: Input Parsing
- Read the source file (markdown, MDX, or HTML).
- Auto-detect source language. Order of preference:
- Frontmatter
lang field.
- HTML
lang attribute.
- Content analysis (script, common stop words).
- Parse target languages from
--to as comma-separated ISO 639-1 codes
(de,fr,es,ja,pt-BR). If --to is missing, ask the user once: "Which
languages should I translate to? Provide ISO 639-1 codes (e.g., de, fr,
es, ja, pt-BR)."
- Validate every code. Reject invalid ones with a suggestion (
jp becomes
"Did you mean ja for Japanese?"). If a target equals the source
language, skip it with a notice.
Phase 2: Content Analysis
Extract the translatable surface:
- Frontmatter:
title, description, tags, author (only when
translatable, e.g. role labels, not personal names).
- All headings (H1, H2, H3).
- Body paragraphs.
- Image
alt text and <figcaption> content.
- Chart
<text> and <tspan> content; preserve every SVG attribute (x,
y, font-size, fill, transform).
- FAQ questions and answers.
- Citation capsule text.
- Key Takeaways or summary box.
- CTA text.
- Internal-link zone anchor text.
Preserve unchanged:
- Markdown and HTML structure, tags, attributes.
- Image URLs, link URLs, frontmatter keys.
- Code blocks (translate inline comments only when meaningful).
- Internal-link zone markers (
[INTERNAL-LINK: ...]).
- Source organization names in citations (Gartner, McKinsey, etc.).
- Person names.
- Schema JSON-LD blocks (translate only the user-facing string values).
Identify the primary and secondary keywords for Phase 3.
Phase 3: Keyword Localization
For each target language:
- Decide whether the source keyword is the established term in the target
market. If yes (e.g., "Content Marketing" stays in German), keep it.
- If a local equivalent has real search behavior, swap to it.
- Apply the same logic to secondary keywords.
- Record the mapping. The translator agent uses it to update title, meta
description, and H2 headings consistently.
Phase 4: Translation
Spawn the blog-translator agent (via Task) for each target language with:
- The source content.
- The keyword localization map from Phase 3.
- The target language code.
- Pointers to
references/translation-rules.md and the cultural profile in
references/cultural-adaptation.md if one exists for the target locale.
Run agents in parallel when translating into multiple languages.
The agent returns the fully translated post in the same format as the input.
Phase 5: Post-Processing
For each translated version:
- Add or update locale frontmatter:
lang: "de"
translatedFrom: "en"
translatedDate: "YYYY-MM-DD"
slug: "wie-man-ki-slop-vermeidet"
- Verify structural integrity:
- Same number of H2 and H3 sections as the original.
- All images present with translated alt text.
- All SVG charts present with translated text labels (length-adjusted:
DE +30%, FR +15%, JA -20%, others see
references/translation-rules.md).
- FAQ count matches.
- Citation capsules present in each H2.
- Save translated files:
translations/
{lang}/{localized-slug}.{ext}
When invoked from blog-multilingual, save into
multilingual/{lang}/{localized-slug}.{ext} instead.
Phase 6: Translation-Quality Guardrails
Scan the output for machine-translation artifacts before reporting done:
- Literal idioms (English idioms transliterated, not adapted).
- Unnatural word order (SOV translated as SVO into a non-SVO language, or
the reverse).
- Mixed-language sentences (other than established loanwords).
- Number, date, or currency strings still in source format.
- Frontmatter strings still in the source language.
Flag every issue inline (file path, line number, fix suggestion). The
translator agent should re-pass any flagged passage before delivery.
Phase 7: Delivery
## Translation complete: [Original title]
### Source
- Language: [source]
- File: [source path]
### Translations
| Language | File | Keywords adapted | Status |
|----------|------|------------------|--------|
| de | translations/de/{slug}.md | [N] | ok |
| fr | translations/fr/{slug}.md | [N] | ok |
### Quality checks
- Structural integrity: pass / fail per language
- Meta tags localized: pass / fail per language
- Numbers, dates, currencies formatted per locale: pass / fail
- Keywords localized: [N] keywords adapted
- Machine-translation artifacts flagged: [N] (see notes above)
### Next steps
- Run `/blog localize <file> --locale <code>` for cultural deep-adaptation.
- Run `/blog locale-audit translations/` to verify completeness.
- Use `/blog multilingual` to combine write, translate, localize, hreflang
in one command.
Error Handling
| Scenario |
Action |
| Unsupported language code |
Suggest the correct ISO 639-1 code |
| Source equals a target |
Skip with "Source is already in [lang]" |
| File not found |
Report error with suggested path |
| Translator agent timeout |
Retry once, then report partial results |
| Binary or non-text file |
Report error, suggest correct file |
Cross-References
- Next step (cultural depth):
/blog localize <file> --locale <code>
- QA sweep across all language versions:
/blog locale-audit <directory>
- One-command pipeline:
/blog multilingual <topic> --languages <codes>
1---2name: blog-translate3description: Translate existing blog posts into one or more target languages with SEO-optimized localization. Produces native-quality translations that preserve markdown structure, frontmatter, schema JSON-LD, image and chart embeds, and citation capsules. Localizes keywords, meta tags, numbers, dates, currencies, and quote styles per locale. Flags machine-translation artifacts for review. Run BEFORE blog-localize: this handles language conversion; localize handles cultural adaptation after translation completes. Use when user says "translate blog", "blog translate", "uebersetzen", "traduire", "traducir", "translate post", "blog auf Deutsch", "blog en espanol".4---56# Blog Translate, SEO-Optimized Blog Translation78Translates an existing blog post into one or more target languages. Unlike9generic translation, this skill produces SEO-optimized, publication-ready10content with localized keywords, meta tags, and culturally correct11formatting.1213## Key References1415Load on demand:1617- `references/translation-rules.md`, format preservation, number/date/currency18 formats per locale, quote handling, quality criteria.19- `references/cultural-adaptation.md`, cultural profiles per locale (DACH,20 Francophone, Hispanic, Japanese, custom). This file is shared with21 `blog-localize` (do not duplicate).2223## Workflow2425### Phase 1: Input Parsing26271. Read the source file (markdown, MDX, or HTML).282. Auto-detect source language. Order of preference:29 - Frontmatter `lang` field.30 - HTML `lang` attribute.31 - Content analysis (script, common stop words).323. Parse target languages from `--to` as comma-separated ISO 639-1 codes33 (`de,fr,es,ja,pt-BR`). If `--to` is missing, ask the user once: "Which34 languages should I translate to? Provide ISO 639-1 codes (e.g., de, fr,35 es, ja, pt-BR)."364. Validate every code. Reject invalid ones with a suggestion (`jp` becomes37 "Did you mean `ja` for Japanese?"). If a target equals the source38 language, skip it with a notice.3940### Phase 2: Content Analysis4142Extract the translatable surface:4344- Frontmatter: `title`, `description`, `tags`, `author` (only when45 translatable, e.g. role labels, not personal names).46- All headings (H1, H2, H3).47- Body paragraphs.48- Image `alt` text and `<figcaption>` content.49- Chart `<text>` and `<tspan>` content; preserve every SVG attribute (`x`,50 `y`, `font-size`, `fill`, `transform`).51- FAQ questions and answers.52- Citation capsule text.53- Key Takeaways or summary box.54- CTA text.55- Internal-link zone anchor text.5657Preserve unchanged:5859- Markdown and HTML structure, tags, attributes.60- Image URLs, link URLs, frontmatter keys.61- Code blocks (translate inline comments only when meaningful).62- Internal-link zone markers (`[INTERNAL-LINK: ...]`).63- Source organization names in citations (Gartner, McKinsey, etc.).64- Person names.65- Schema JSON-LD blocks (translate only the user-facing string values).6667Identify the primary and secondary keywords for Phase 3.6869### Phase 3: Keyword Localization7071For each target language:72731. Decide whether the source keyword is the established term in the target74 market. If yes (e.g., "Content Marketing" stays in German), keep it.752. If a local equivalent has real search behavior, swap to it.763. Apply the same logic to secondary keywords.774. Record the mapping. The translator agent uses it to update title, meta78 description, and H2 headings consistently.7980### Phase 4: Translation8182Spawn the `blog-translator` agent (via Task) for each target language with:8384- The source content.85- The keyword localization map from Phase 3.86- The target language code.87- Pointers to `references/translation-rules.md` and the cultural profile in88 `references/cultural-adaptation.md` if one exists for the target locale.8990Run agents in parallel when translating into multiple languages.9192The agent returns the fully translated post in the same format as the input.9394### Phase 5: Post-Processing9596For each translated version:97981. Add or update locale frontmatter:99 ```yaml100 lang: "de"101 translatedFrom: "en"102 translatedDate: "YYYY-MM-DD"103 slug: "wie-man-ki-slop-vermeidet"104 ```1052. Verify structural integrity:106 - Same number of H2 and H3 sections as the original.107 - All images present with translated alt text.108 - All SVG charts present with translated text labels (length-adjusted:109 DE +30%, FR +15%, JA -20%, others see `references/translation-rules.md`).110 - FAQ count matches.111 - Citation capsules present in each H2.1123. Save translated files:113 ```114 translations/115 {lang}/{localized-slug}.{ext}116 ```117 When invoked from `blog-multilingual`, save into118 `multilingual/{lang}/{localized-slug}.{ext}` instead.119120### Phase 6: Translation-Quality Guardrails121122Scan the output for machine-translation artifacts before reporting done:123124- Literal idioms (English idioms transliterated, not adapted).125- Unnatural word order (SOV translated as SVO into a non-SVO language, or126 the reverse).127- Mixed-language sentences (other than established loanwords).128- Number, date, or currency strings still in source format.129- Frontmatter strings still in the source language.130131Flag every issue inline (file path, line number, fix suggestion). The132translator agent should re-pass any flagged passage before delivery.133134### Phase 7: Delivery135136```137## Translation complete: [Original title]138139### Source140- Language: [source]141- File: [source path]142143### Translations144| Language | File | Keywords adapted | Status |145|----------|------|------------------|--------|146| de | translations/de/{slug}.md | [N] | ok |147| fr | translations/fr/{slug}.md | [N] | ok |148149### Quality checks150- Structural integrity: pass / fail per language151- Meta tags localized: pass / fail per language152- Numbers, dates, currencies formatted per locale: pass / fail153- Keywords localized: [N] keywords adapted154- Machine-translation artifacts flagged: [N] (see notes above)155156### Next steps157- Run `/blog localize <file> --locale <code>` for cultural deep-adaptation.158- Run `/blog locale-audit translations/` to verify completeness.159- Use `/blog multilingual` to combine write, translate, localize, hreflang160 in one command.161```162163## Error Handling164165| Scenario | Action |166|----------|--------|167| Unsupported language code | Suggest the correct ISO 639-1 code |168| Source equals a target | Skip with "Source is already in [lang]" |169| File not found | Report error with suggested path |170| Translator agent timeout | Retry once, then report partial results |171| Binary or non-text file | Report error, suggest correct file |172173## Cross-References174175- Next step (cultural depth): `/blog localize <file> --locale <code>`176- QA sweep across all language versions: `/blog locale-audit <directory>`177- One-command pipeline: `/blog multilingual <topic> --languages <codes>`