How To Disable Chrome Translation Bar On My Website
I have one client data management website. If I run my website in Chrome and right click Translate to English, it's change my client name (ex. if name is Sourashi Chrome change is
Solution 1:
You cannot remove Chrome translation from your website. The user decides whether he wants to translate your site or not through their browser.
Since this is done client side, you cannot prevent an user from translating your website.
I take that back. Add class="notranslate"
to your element.
<span class="user notranslate">His Name Here</span>
That will prevent Chrome from translating his name. If you want to make the entire website untranslatable, you need to do this inside your <head>
tag:
<meta name="google" content="notranslate" />
Solution 2:
Try this:
<meta name="google" value="notranslate">
Post a Comment for "How To Disable Chrome Translation Bar On My Website"