Create Article Translation
create_article_translationCreate a new translation for an existing article by providing locale, title, body (HTML), and optional draft status. Returns the created translation.
Instructions
Create a translation for an existing article in a specific locale. The article must already exist (create it with create_article); this adds a new localized version and returns the created translation (locale, title, draft state). The target locale must not already have a translation — use update_article_translation to modify an existing one, and list_article_translations to see which locales exist. Provide the full HTML body.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Translated body (HTML) | |
| draft | No | Create the translation as a draft (not visible to end users). Defaults to false (published). | |
| title | Yes | Translated article title. | |
| locale | Yes | Target locale (e.g., "fr", "de") | |
| article_id | Yes | ID of the existing article to translate. |