TRENDING NEWS

POPULAR NEWS

Why Does My Chrome Show Sites In Other Languages

Why are many websites displayed in French in Chrome?

Try opening the More menu (column of three dots top right), in Settings search for ‘Language’, Open ‘Language and input settings’. Check the languages set, you may have ‘Offer to translate pages in this language’ checked. It’s possible the sites are reading your location IP wrong, are they displaying pages with .fr (I think that’s the French url extension)? You should be able to set the language in the site or, if looking for the English version, input [url].co.uk.

Why is my yahoo mail now in a foreign language ?

I am in the USA, and use English as my basic language. I do however write e-mails in languages other than English only.
All of a sudden my yahoo mail is in Dutch, a l did not notice right away that it was NOT English, since I can read it.

How do I get it back to English ?

All other stuff is in English, and I am using Google Chrome as my web browser.

Apparently not able to *add* photo. (problems ...)

TIA

How do I get Google Chrome to stop translating pages for me?

Just Go to the Settings > Under The Hood > Offer to translate pages that aren't in a language I read.
just Uncheck it .. if it comes again there should be a "translate all languages" and "quit bothering me about it ever again" option..

How to open all website in english language by default?

some of this you can control, and some of it you cannot. For example, you can be sure to download an English language version of your web browser. Many web sites will detect your location based on your IP address. They know that you're in an Arabic-speaking country so they present Arabic versions of things. If you have a blog on a major website, like wordpress.com, they might be doing just that. The only way you can fix that is to look for their settings at each site.

You can tell Google to use English as its language by adding the parameter hl=en to the URL. For example: http://www.google.com/?hl=en. If you're using Firefox, you can follow my instructions on how to adjust its Google settings to always search in English, no matter what:
http://paco.to/2011/fixing-firefox-4-on-...

If Google searches in English, you can hope that the web sites you go to from Google searches will notice that and will give you their English pages, too. There's no magic button, though. Every web site does it its own way.

I accidently changed the language of google chrome to spanish, how do i change it back to english?

Copied from my source:
1.Click the Chrome menu on the browser toolbar. (icon with 3 horizontal lines)
2.Select Settings.
3.Click Show advanced settings and go to the "Languages" section. Here are the various settings you can adjust:

Browser interface language

Webpage language preferences

Default fonts and encodings


settings = configuración
language = idioma (or lengua)

My language for yahoo mail is not changing from hindi to english i have tried changing it many times?

I got it done in 5 Min's....
just chat with the customer care executive, they will ask you for the password and do it in less than 2 mins.
just go to Help->Help->Contact us->Live chat.

How can I prevent from websites to display a language based on location or ip and just show the english version of the site automatically?

One way, without having to geolocate based on IP address, is to use the Accept-Language request HTTP header, which advertises which languages the client is able to understand, and which locale variant is preferred. Using content negotiation, the server then selects one of the proposals, uses it and informs the client of its choice with the Content-Language response header. Browsers set adequate values for this header according their user interface language.A simple PHP script for this purpose is below:$langs = array();
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
preg_match_all('/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse);

if (count($lang_parse[1])) {
// create a list like "en" => 0.8
$langs = array_combine($lang_parse[1], $lang_parse[4]);

// set default to 1 for any without q factor
foreach ($langs as $lang => $val) {
if ($val === '') $langs[$lang] = 1;
}

// sort list based on value
arsort($langs, SORT_NUMERIC);
}
}

foreach ($langs as $lang => $val) {
if (strpos($lang, 'de') === 0) {
// show German site
} else if (strpos($lang, 'en') === 0) {
// show English site
}
}

TRENDING NEWS