Reputation: 1220
My website has full language support using a dropdown at the top of the page. When the "wrong language" is selected the google chrome translator pop up is show, like in the picture below.
Instead the pop up showing I would like the website to be translated using my own technology. Any ideas what I could do?
Upvotes: 1
Views: 76
Reputation: 3642
You can add the following meta
tag in the head
section of your HTML code.
<meta name="google" value="notranslate" />
Beware that if users refreshes the page the translation bar may reappear.
Upvotes: 1