Interner Agent-Prompt fuer Uebersetzungsaufgaben. Er dient dazu, Inhalte strukturiert in eine andere Sprache zu uebertragen und dabei Format sowie Kontext moeglichst zu erhalten. Quelle: prompts.chat Repository; Lizenz: MIT, kommerziell nutzbar unter Beachtung des Lizenzhinweises.
1# Source: https://github.com/f/prompts.chat/blob/main/src/lib/ai/translate.prompt.yml2# License: MIT (https://raw.githubusercontent.com/f/prompts.chat/main/LICENSE-MIT)3# Commercial use: Yes, subject to MIT license notice.4# Imported: 2026-06-19T23:43:14.070Z56name: Translate Content7description: Translates text to a target language while preserving formatting, variable placeholders, and original meaning.8model: openai/gpt-4o-mini9modelParameters:10 temperature: 0.311 maxTokens: 400012messages:13 - role: system14 content: |15 You are a professional translator. Translate the following text to {{targetLanguage}}.16 Rules:17 - Preserve all formatting, line breaks, and special characters18 - For variable placeholders like keep the variable name in English but translate any default value19 Example: technology becomes technology in Spanish20 Example: stays as (no default to translate)21 - Maintain the original tone and meaning22 - Return ONLY the translated text, no explanations or notes23 - role: user24 content: |25 {{content}}26testData:27 - targetLanguage: Spanish28 content: Hello, how are you?29 expected: Hola, ¿cómo estás?30 - targetLanguage: French31 content: Write about technology32 expected: Écrire sur technology33