views:

157

answers:

1

I have a page that Google Chrome insists on thinking is in French. Here's a snapshot of it:

http://yootles.com/outbox/overcleverchrome.html

Note that I'm including a meta http-equiv tag to tell it that it's in fact in English:

<meta http-equiv="Content-language" content="en">

But it doesn't help. Is there anything else I can do to prevent this?

+2  A: 

I found a post which might help you: http://www.blogsdna.com/4593/how-to-stop-google-from-translating-your-website-or-webpage.htm

You can either use a meta tag:

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

Or you can use a class:

<span class="notranslate"></spam>

I hope that answered your question.

EDIT: I Just checked my blog which I offer in German and English. On each language version Chrome doesn't ask me for translation: http://kau-boys.de

I checked my source code and the multilanguage plugin only included this code:

<meta http-equiv="Content-Language" content="en_US" /> 

So maybe your locale needs to have a subregion, like US in this example.

Kau-Boy
I've tried all of the above and still have Chrome offering to translate this particular page. I even checked that the html validates.
Bee
</spam>: If only it were that simple...
Justin K
neither the "google" meta tag nor the "content-language" meta tags work for me either
EoghanM