Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I stop Google Toolbar offering to translate my app?

How can I stop Google Toolbar offering to translate my web app?

I've tried adding this tag to the top of every page:

<META HTTP-EQUIV="Content-Language" CONTENT="en-GB">

but it makes no difference.

I'm developing a web app in ASP.NET which displays a lot of data from various languages - things like names, locations, etc. If the user has Google Toolbar, it recognises the page variously as Italian, Spanish, etc, depending on exactly which data items they are looking at, and pops up a prompt offering to translate it.

The translation would make no sense in this context since the words which it is recognising are names and so on which are only relevant in the original language.

This is the prompt I'm talking about:google toolbar translation


EDIT: As a user, you can disable this feature entirely: http://www.google.com/support/toolbar/bin/answer.py?hl=en&answer=146786 But there doesn't seem to be any way to mark a page as not suitable for translation by the toolbar.

like image 992
Colin Pickard Avatar asked Oct 02 '09 11:10

Colin Pickard


People also ask

Why does Google keep asking to translate?

By default, Google auto translation is enabled in both Google Chrome and when using Google Toolbar. The auto translation feature lets Google automatically translate the text on Web pages where the text is from a language you don't speak into a language that you do.


1 Answers

<meta name="google" value="notranslate">

from Google FAQ. Not sure if this works for the toolbar, though...

like image 100
Kimvais Avatar answered Oct 05 '22 03:10

Kimvais