translate word: A program that translate words in different languages.

'Translate word' is a bash script that translates words in different languages. It uses internal dictionaries, and the google translation and free translation capabilities to translate a word.

Examples:

1. translate an english word in spanish using local dictionary:
	$tw en-es hello
	hello : hola
	$
2. translate an english word in spanish using google capabilities:
	$tw translate.google.com.en-es Hello
	Hola
	Powered by http://www.google.com/language_tools.
	$
