Google's Translator Causes Errors on Internet Explorer 6, so You Have to Create a Conditional to Exclude IE6 Browsers to Use the Translator, (the Users will get an Error Page if Not).
I Use the Following Code:
Quote:
<if condition="(is_browser('firefox') or is_browser('chrome') or is_browser('ie', '8'))">
GOOGLE_TRANSLATOR_CODE
</if>
|
I Haven't Tested Yet if the Translator Works Fine on Internet Explorer 7, that's why I haven't included yet a:
Also, the Chrome Browser should be Included with the Following Instructions:
Add Google Chrome to the is_browser() function
Another Simpler Code Might be the Following, to Exclude the Internet Explorer 6 Browser, and use the Translator on Every Other Browser and Internet Explorer Version:
Quote:
<if condition="(!is_browser('ie', '6'))">
GOOGLE_TRANSLATOR_CODE
</if>
|
You Can Use the Google Translator Tool Code on the Header Template and it'll be Used on All the Board's Pages.
My Best Regards.