Translates marketing content while preserving SEO value, brand voice, and cultural nuances. Handles localization of keywords, CTAs, and formatting conventions. Supports DE-EN bidirectional translation with focus on marketing/technical content. Use when translating articles, ads, or other marketing materials.
Professionelle Übersetzung von Marketing-Content mit SEO-Optimierung und kultureller Anpassung.
Input: Source Content + Target Language + SEO Keywords (optional)
Output: Translated Content + Localized Keywords + Cultural Adaptations
| Von → Nach | Status | Spezialisierung |
|---|---|---|
| DE → EN | ✅ | Marketing, Tech, SEO |
| EN → DE | ✅ | Marketing, Tech, SEO |
| DE → FR | ⚡ | Marketing |
| DE → ES | ⚡ | Marketing |
| DE → IT | ⚡ | Marketing |
✅ = Vollständig optimiert | ⚡ = Basis-Support
{
"translation": {
"source_language": "de",
"target_language": "en",
"content_type": "blog_article",
"translated_content": {
"title": "...",
"meta_description": "...",
"content": "...",
"headings": ["H1: ...", "H2: ..."]
},
"keyword_mapping": {
"original": ["Content Marketing", "SEO Strategie"],
"translated": ["Content Marketing", "SEO Strategy"],
"search_volume": {
"Content Marketing": {"de": 12000, "en": 110000},
"SEO Strategy": {"de": 2400, "en": 18000}
}
},
"cultural_adaptations": [
{
"original": "Sie können...",
"translated": "You can...",
"note": "Formal 'Sie' → informal 'you' (standard in EN marketing)"
}
],
"url_suggestion": {
"original": "/content-marketing-strategie",
"translated": "/content-marketing-strategy"
}
}
}
| Element | Regel |
|---|---|
| Title Tag | Keywords vorne, max 60 Zeichen |
| Meta Description | CTA anpassen, max 155 Zeichen |
| H1 | Hauptkeyword integrieren |
| URL/Slug | Keyword + Bindestriche |
| Alt-Texte | Beschreibend + Keyword |
Details: CULTURAL_ADAPTATIONS.md
DE → EN:
EN → DE:
DE: "Jetzt kostenlos testen"
EN: "Start your free trial" (nicht: "Test now for free")
DE: "Mehr erfahren"
EN: "Learn more" (nicht: "Experience more")
DE: "Kontaktieren Sie uns"
EN: "Get in touch" / "Contact us"
Details: CTA_TRANSLATIONS.md
DE: "Schnittstelle"
EN: "API" / "Interface" (Kontext-abhängig)
DE: "Datenschutz"
EN: "Data privacy" / "GDPR compliance"
Details: TECHNICAL_GLOSSARY.md
Source (DE): "Inbound Marketing"
Options (EN):
├── "Inbound Marketing" (direkter Begriff, hoher SV)
├── "Inbound Marketing Strategy" (Long-Tail)
└── "Attraction Marketing" (Alternative, niedriger SV)
→ Empfehlung: "Inbound Marketing" (Begriff ist international)
// Nach Content-Erstellung
const translation = await contentTranslator.translate({
content: germanArticle,
targetLanguage: 'en',
preserveKeywords: ['brand terms'],
adaptForMarket: 'US' // oder 'UK'
});
// Keyword-Mapping für Tracking speichern
await saveKeywordMapping(translation.keyword_mapping);
// Übersetzung als Draft erstellen
const translatedPost = await wpClient.createPost({
...translation.translated_content,
status: 'draft',
meta: {
original_post_id: originalPost.id,
translation_language: 'en'
}
});