Search code examples
javascripthtmlcssgoogle-chromebrowser

Google Chrome - Offering translation when none is needed


So I have written a page, but keep getting prompted to translate the page into English (From Indonesian). It's already in English so I don't know what's going on. I have searched around and tried a bunch of fixes, but none of them seem to work.

I included this stuff in my head:

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta charset="UTF-8" />
    <meta name="google" value="notranslate" />
    <meta http-equiv="Content-Language" content="en" />
    <meta name="viewport" content="width=1000" />  
    .
    .
    .

In an effort to counteract the translation stuff. Unfortunately, this does not work. Is anyone aware of what might be causing this behavior? I really wish we could just hide the translation bar using CSS, but alas, Google got wise and changed the structure so it's not a div in the page... Any help would be awesome.

Thanks!


Solution

  • It's "content", not "value":

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