Reputation: 11751
My HTML page is in English language, I dont see any text in Malay language, but still when I check it in chrome browser, it says "this page is in malay language wuld you like to translate it?" ....whats the solution to remove it.
snapshot http://dl.dropbox.com/u/55938469/1.JPG
Can anybody tell me how do I tell the browser that this page is English and dont show this warning to anybody viewing this page.
Upvotes: 6
Views: 4043
Reputation: 2268
<meta name="google" value="notranslate">
But it will disable translate for people who want to translate page to their native non-english languages
Upvotes: 7
Reputation: 2268
Change language in your HTML tag
<HTML lang="en">
or this
<BODY LANG=en>
Upvotes: 3