Let's say you provide a verb, such as "eat", and in addition to the direct translation of this (for Swedish) one of the translations you get is "gråta", which is correct and fine,
however, it would be quite helpful for the Translation object, for verbs, to have the list of all other conjugations as well.
Example,
POST: https://api.cognitive.microsofttranslator.com/dictionary/lookup?api-version=3.0&from=en&to=sv
with body
[
{
"Text":"eat"
}
]
would be nice to have something like:
{
"normalizedSource": "eat",
"displaySource": "eat",
"translations": [
{
"normalizedTarget": "äta",
"displayTarget": "äta",
"posTag": "VERB",
"confidence": 0.3035,
"prefixWord": "",
**"conjugations": {
"presentTense": "äter",
"pastTense": "åt",
...etc
}**
"backTranslations": [
....
The same would happen for the other translations, e.g. if the main one that shows up is the past tense, then all of the other tenses would show up in the conjugation list.