Translate Words from an Unknown Language
Take a string in some language.
In[1]:=

string = "Danke";
Identify the language of this word.
In[2]:=

origin = LanguageIdentify[string]
Out[2]=

Translate to another language.
In[3]:=

WordTranslation[string, origin -> Entity["Language", "Spanish"]]
Out[3]=

Take a list of languages and build a nice-looking word cloud of the words appearing on the multiple translations that this word has.
show complete Wolfram Language input
