Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
Problem you have encountered:
When using Translation API it is just possible to send plain text and HTML content as input, the one that only can be retrieved as JSON format when getting the API output.
What you expected to happen:
It would be desired to add new functionality to translate documents by keeping the original format, such as Word and PDF documents.
Steps to reproduce:
1. Request translation through endpoint [1] with JSON Body [2]
2. Results are retrieves in JSON format [3]
[1]
[2] { "q": ["Hello world", "My name is Jeff"], "target": "de" }
[3] { "data": { "translations": [ { "translatedText": "Hallo Welt", "detectedSourceLanguage": "en" }, { "translatedText": "Mein Name ist Jeff", "detectedSourceLanguage": "en" } ] } }