How to detect client language?

C

Chris Fynn

Is there an easy way to detect the local language settings of a client
browser or system?

I want to for example determine if the users browser or system is set to
English, French, or Italian and display a message in the appropriate
language.
 
S

Stephen

Hi there ...
Chris said:
Is there an easy way to detect the local language settings of a client
browser or system?

I want to for example determine if the users browser or system is set to
English, French, or Italian and display a message in the appropriate
language.

Seems like there was a thread on about this topic about a month or so
ago; maybe a little longer. Seems like the solution revolved around
examining the HTTP_ACCEPT_LANGUAGE environment variable at the server.
Maybe google for "check HTTP_ACCEPT_LANGUAGE" and see if that doesn't
find it.

Regards,
Stephen
 
V

Vicomte De Valmont

Hallo

IE has a navigator property which is
navigator.systemLanguage
and also
navigator.userLanguage
it returns intenrational codes for nationalities: exaple 'it' for Italy.
NS6 has a
navigator.language
property which returns a slightly different value: for english it returns
en-US

if you want you can open with different browsers the following file I made:

http://www.unitedscripters.com/hotvamps/browsers.html

upon loading it will list all the properties for each object in a select
menu (starts with the window object of course), upon selection it will
unfold the selected object too (if it is an object). In the second half of
the file you can provide yourself objects, such as "navigator" and click
"Populate" - on both sections you'll see properties, data type, and values
as well. You can check with all the browsers you prefer. I think that can be
helpful to inspect a great deal of properties we webmasters are not always
familiar with or we didn't even know they existed.
You can also check DOM objects as they get unfolded. To reset, reload the
page.

I have not checked with NS4 though - ok I do it now...
yeah it has
navigator.language
too and for it reports "en" for english.
You can check by
var
language=(navigator["language"])?navigator["language"]:navigator["userLangua
ge"];

allow for a value "undefined" for browsers that don't fall in either scope.
ciao
Alberto Vallini
http://www.unitedscripters.com/
 
T

Thomas 'PointedEars' Lahn

Chris said:
I want to for example determine if the users browser or system is set to
English, French, or Italian and display a message in the appropriate
language.

Your request is based on the false assumption that a French, working in
the UK with the French language pack of the English browser and French
keyboard layout on a system with an English-UK locale, is not interested
in the Italian version of the site. Use server-side Content Negotiation
along with language links (without flags!) and let your visitors decide
what they want to see.

Please read the OE-FAQ and repair your b0rken signature separator.
It is required to be `-- ' (dash-dash-space) to work but you will
not accomplish this with OE alone (since it removes trailing spaces
on post).


PointedEars
 
F

Fabian

Chris Fynn hu kiteb:
Is there an easy way to detect the local language settings of a client
browser or system?

I want to for example determine if the users browser or system is
set to English, French, or Italian and display a message in the
appropriate language.

No thank you. I have to work with Japanese windows (local market means
English windows is ludicrously expensive, and will disable some
essential software I use), but where possible, I prefer an English
interface. Please, DON'T autodetect this. Ask the user.

Oh, and don't use flags when you ask the user ;)
 
D

Dr John Stockton

JRS: In article <[email protected]>, seen in
Thomas 'PointedEars' Lahn
Please read the OE-FAQ and repair your b0rken signature separator.
It is required to be `-- ' (dash-dash-space) to work but you will

The word is "broken"; use of Merkin slang is discourteous to those who
are trying to learn good English.

To be a SigSep, dash-dash-space must be the only thing on the line.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,534
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top