Example:
john@raffles3:~$ translate chien dog john@raffles3:~$ translate legs fr jambes john@raffles3:~$ translate legs fr en legacy john@raffles3:~$ translate 手紙 Letter john@raffles3:~$ translate 手紙 zh-TW en Toilet paper john@raffles3:~$ translate --help translate <text> [[<source language>] <target language>] if target missing, use DEFAULT_TARGET_LANG if source missing, use auto
Requirements:
sudo apt-get install curl html2text
The script:
#!/bin/bash
# access translate.google.com from terminal
help='translate <text> [[<source language>] <target language>]
if target missing, use DEFAULT_TARGET_LANG
if source missing, use auto'
# adjust to taste
DEFAULT_TARGET_LANG=en
if [[ $1 = -h || $1 = --help ]]
then
echo "$help"
exit
fi
if [[ $3 ]]; then
source="$2"
target="$3"
elif [[ $2 ]]; then
source=auto
target="$2"
else
source=auto
target="$DEFAULT_TARGET_LANG"
fi
result=$(curl -s -i --user-agent "" -d "sl=$source" -d "tl=$target" --data-urlencode "text=$1" http://translate.google.com)
encoding=$(awk '/Content-Type: .* charset=/ {sub(/^.*charset=["'\'']?/,""); sub(/[ "'\''].*$/,""); print}' <<<"$result")
#iconv -f $encoding <<<"$result" | awk 'BEGIN {RS="<div"};/<span[^>]* id=["'\'']?result_box["'\'']?/ {sub(/^.*id=["'\'']?result_box["'\'']?(>| [^>]*>)([ \n\t]*<[^>]*>)*/,"");sub(/<.*$/,"");print}' | html2text -utf8
iconv -f $encoding <<<"$result" | awk 'BEGIN {RS="</div>"};/<span[^>]* id=["'\'']?result_box["'\'']?/' | html2text -utf8
exit
Credits:johnraff
2 Linux app. to translate text + voice: http://www.linuxhispano.net/2014/05/29/traductor-de-google-voz/