Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a chat website that is highly dynamic and when visiting it with Google Chrome, the translation bar appears offering to translate the site. While the translation of dynamic content works better than I'd have expected, it doesn't work well enough for my purpose and doesn't even make much sense in a chat.

Is there some hint I can put into my site so that visitors with Chrome would not see the translation bar?

share|improve this question

3 Answers

up vote 27 down vote accepted

Insert this to the head section of your web page.

<meta name="google" value="notranslate" />
share|improve this answer
2  
Awesome, thanks! – swij Aug 29 '11 at 10:53
The meta solution only works partially. By partially, I mean that when the page first loads, the translation bar does NOT show, which is what I want. But if I hit 'refresh', then the bar shows up. Is this intentionally? – Jerry Hardaway Nov 18 '11 at 20:52
i experienced the same effect. nothing can be done about it :( – andufo Dec 3 '11 at 17:53
You can see the "shows toolbar on refresh" behavior on this page, which has the <meta> tag: jsbin.com/ehavan/3 Alternatively, here's the same page without the <meta> tag: jsbin.com/ehavan/2 – metavida Feb 29 '12 at 15:55
1  
If I understand correctly this will not only disable the bar, but also disable translation of the site at translate.google.com – Roger Ertesvag Jun 14 '12 at 19:00
show 2 more comments

The Meta Value should be "content", not "value"

<meta name="google" content="notranslate" />
share|improve this answer

If you add the following code

<meta name="google" value="notranslate" />

inside <head></head> it will disable the appearence of the translation bar, but will also disable translation at Google Translate.

For more info check http://support.google.com/translate/?hl=en#2641276.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.