I just made a website for a french restaurant. The website is in english, but I guess there is enough french on the website (labeled pictures of menu items) to prompt the visitor to translate the website if using Chrome.
Is there something I can add to the html to prevent chrome from asking to translate the page? I'd assume it'd be something like <html lang="en">
but that doesn't work.
Any ideas?
Thanks
Matthew Adams
Add this tag in between <head>
and </head>
:
<meta name="google" content="notranslate">
The meta tag in the <head>
didn't work for me, but
class="notranslate"
added to a parent div
(or even <body>
) did work and allows more precise control of the content you don't want to be translated.
来源:https://stackoverflow.com/questions/12238396/how-to-disable-google-translate-from-html-in-chrome