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
Issue Summary :
If the source language is Dutch and if the contents have emojis then the translation result is “->” initially it used to be empty or return error 500.
If the source language is Dutch and if the contents have emojis along with text, numbers, symbols then the emojis are translated.
Also, based on the position of the text, the translated result is changing. For example, i) when the word “testen” is added after emojis, the translation result shows “test” in english ii) when the word “testen” is added before emojis, the translation result shows “testing” in english
What you would like to accomplish : Emojis need to be translated when the source language is Dutch.
Below is the sample query which I am using :-
curl --request POSThttps://translation.googleapis.com/v3/projects/****:translateText
--url
--header 'Authorization: Bearer ****'
--header 'Content-Type: application/json'
--data '{
"sourceLanguageCode": "nl",
"targetLanguageCode": "en",
"contents": "testen👍😘"
}'