Hi,

I notice that if I send a multiple queries, I don't necessarily get
them back in the same order

curl "https://www.googleapis.com/language/translate/v2?
key=[your_key_here]&source=en&target=de&q1=one&q=two&q=three&q=four&q=five"

{
 "data": {
  "translations": [
   {
    "translatedText": "ein" // one
   },
   {
    "translatedText": "zwei" // two
   },
   {
    "translatedText": "vier" // four
   },
   {
    "translatedText": "drei" // three
   },
   {
    "translatedText": "fünf" // five
   }
  ]
 }

The comments are mine; since the results don't contain the original
text, how am I supposed to map the original query to translated text ?

Thanks
}

-- 
You received this message because you are subscribed to the Google Groups 
"General" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-translate-general?hl=en.

Reply via email to