How do you add "html language attributes" to translate web pages to languages...

  • Thread starter Thread starter inocencia72
  • Start date Start date
I

inocencia72

Guest
...other than english? I intend on using the following machine translation engines: http://intertran.tranexp.com/Translate/result.shtml and http://translate.google.com/translate_t# to translate from English to the following: Arabic, Bulgarian, Catalan, Chinese Simplified, Chinese Traditional, Croatian, Czech, Danish, Dutch, Tagalog, Finnish, French, German, Greek, Hebrew, Hindi, Indonesian, Italian, Japanese, Korean, Latvian, Lithuanian, Norwegian, Polish, Brazilian Portuguese, European Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, European Spanish, South American Spanish, Swedish, Ukrainian, Vietnamese, Welsh, Turkish.
 
Maybe they have code for you already, but if not, you could create your own links, and make it as sophisticated as needed.

Something like:

<a href="
http://translate.google.com/translate
?hl=en&ie=UTF-8
&u=http%3A%2F%2Fwww.yoursite.com
&sl=es&tl=en&history_state0=">
Translate to Spanish</a>

{The above may be broken up. There should be no spaces or hard returns}

This would make a hyperlink that read, "Translate to Spanish" using the Google engine. By changing the variable of sl=es at the end of the URL string, you can do this in different languages.
 
Back
Top