Using "setlocate()" to get the language

C

CodHubIV

Hello,

I'm writing some cross-platform software in C++, within it I have a
list of strings for various languages - My problem now is, how do I
determine the language setting of the person running the code so I can
present them information in the correct language? I'd rather not have
to resort to an entire framework just for this small function.

I tried "setlocale()" which always returns "C" on my Debian Lenny test
machine. I don't mind having slightly different functions for each OS
(I believe there are functions in the Windows API to determine
language, so that's taken care of), but I would like the Linux code to
work on all flavours of Linux, I see there's a "LANG" environmental
variable - Is this "safe" to rely on?



Code:

#include <iostream>
#include <locale.h>

int main()
{
// Get locale
char* value = setlocale(LC_ALL, NULL);

if (value == NULL)
std::cout << "NULL pointer returned" << "\n";
else
std::cout << "Value = \"" << value << "\"\n";
}

Result:

root@dev:./i18n
Value = "C"


Any help/advice from anyone who has tackled this before would be
appreciated...

Thanks,
 
F

Francesco S. Carta

Hello,

I'm writing some cross-platform software in C++, within it I have a
list of strings for various languages - My problem now is, how do I
determine the language setting of the person running the code so I can
present them information in the correct language? I'd rather not have
to resort to an entire framework just for this small function.

I tried "setlocale()" which always returns "C" on my Debian Lenny test
machine. I don't mind having slightly different functions for each OS
(I believe there are functions in the Windows API to determine
language, so that's taken care of), but I would like the Linux code to
work on all flavours of Linux, I see there's a "LANG" environmental
variable - Is this "safe" to rely on?

I'm not an expert in the field but you shouldn't definitely rely on any
environment variable. If you can't get it right with the features
available in the standard libraries, the best pick, eventually, would be
to prompt the user for input.

Have a look at this in the meantime:
http://www.cantrip.org/locale.html

And don't forget this, just in case:
http://www.parashift.com/c++-faq/

More experienced people will eventually give further insight, just a
small further note from me:
#include<locale.h>

If you really need to use C headers, use the form:

#include <clocale>

that is, remove the extension and add a "c" at the beginning of the
header name. <clocale> is part of the C++ standard library, <locale.h>
isn't.
 
C

CodHubIV

I'm not an expert in the field but you shouldn't definitely rely on any
environment variable. If you can't get it right with the features
available in the standard libraries, the best pick, eventually, would be
to prompt the user for input.

I'd hate for it to come to that, as this will be a stand-alone command-
line tool, so that would definitely impede it.
Have a look at this in the meantime:http://www.cantrip.org/locale.html

And don't forget this, just in case:http://www.parashift.com/c++-faq/

Thanks for that, I had a read through, it still hasn't given me any
more insight. Although the C++ FAQ looked an interesting read (just
in general, rather than to my current problem) so thanks.
More experienced people will eventually give further insight, just a
small further note from me:


If you really need to use C headers, use the form:

#include <clocale>

that is, remove the extension and add a "c" at the beginning of the
header name. <clocale> is part of the C++ standard library, <locale.h>
isn't.

I had a sudden panic after I read that, I thought it might be related
to me getting a "C" :) (I changed it and it didn't effect the
program). Thanks for the advice on that though, I'll bear that in
mind in the future.

Thanks,
 
V

Vaclav Haisman

CodHubIV wrote, On 2.9.2010 18:16:
Hello,

I'm writing some cross-platform software in C++, within it I have a
list of strings for various languages - My problem now is, how do I
determine the language setting of the person running the code so I can
present them information in the correct language? I'd rather not have
to resort to an entire framework just for this small function.
If you are writing cross-platform sofwtare then use cross-platform tool. It
is wrong to do it the way you want. Bite the bullet and use gettext as
everybody else on Linux. That is the right way how to do it on more than just
Linux.
 
F

Francesco S. Carta

Why not? This is how the user can express their preference in a flexible
way, what's wrong with that?

That must be some bad experience with Windows variables getting changed
randomly, I hope that Linux & co. are more affordable - told ya I wasn't
an expert ;-)
 
C

CodHubIV

If you are writing cross-platform sofwtare then use cross-platform tool. It
is wrong to do it the way you want. Bite the bullet and use gettext as
everybody else on Linux. That is the right way how to do it on more than just
Linux.

Well, ideally I'd like a cross-platform standard way to get the
language - rather than a complete framework. I had a look at
"gettext" as you suggested, it just seems like overkill - It does seem
to handle all the language translation for you, tt also appears to
rely on placing the translation files in a certain location, rather
than building them into the project (creating a potential dependancy).

There also seems to be a few gotcha's running it on Windows:

http://supertuxkart.sourceforge.net/Gettext_on_windows

I like my applications to compile natively on both Linux (g++) and
Windows (VS.NET) with no porting, or having to use compilers like
mingw.


I only neeed to translate a few strings (http://code.google.com/p/
paping/wiki/Translation)


Is there not just a standard c++ function to retrieve the language,
I'd have thought this would be quite an important function.
'setlocale' looked it it fitted the bill but didn't.
 
C

CodHubIV

Why not? This is how the user can express their preference in a flexible
way, what's wrong with that?

It did look like the way to go but I wasn't sure if it's universally
there (on all version of Linux, maybe BSD and MacOS as well later down
the line).

I'd be interested to know how 'gettext' works out the language
(internally). Then I guess I could rip that function out, rather than
having to implement the whole thing.
 
F

Francesco S. Carta

I'd hate for it to come to that, as this will be a stand-alone command-
line tool, so that would definitely impede it.

Ah, yes, that would be a show-stopper for sure.
Thanks for that, I had a read through, it still hasn't given me any
more insight. Although the C++ FAQ looked an interesting read (just
in general, rather than to my current problem) so thanks.

Sorry if that wasn't all that helpful for this very case, at least I've
pointed out some resources which will come useful for the times to come,
eventually ;-)
I had a sudden panic after I read that, I thought it might be related
to me getting a "C" :) (I changed it and it didn't effect the
program). Thanks for the advice on that though, I'll bear that in
mind in the future.

You're welcome, good luck with your project!
 
F

Francesco S. Carta

Why not? This is how the user can express their preference in a flexible
way, what's wrong with that?

That must be some bad experience with Windows variables getting changed
randomly, I hope that Linux & co. are more affordable [...]
^^^^^^^^^^
change that with "reliable" - "reliable" != "affordable" but "reliable"
== "affidabile" in Italian... damned false friends...
 
J

James Kanze

I'm writing some cross-platform software in C++, within it I
have a list of strings for various languages - My problem now
is, how do I determine the language setting of the person
running the code so I can present them information in the
correct language? I'd rather not have to resort to an entire
framework just for this small function.
I tried "setlocale()" which always returns "C" on my Debian
Lenny test machine. I don't mind having slightly different
functions for each OS (I believe there are functions in the
Windows API to determine language, so that's taken care of),
but I would like the Linux code to work on all flavours of
Linux, I see there's a "LANG" environmental variable - Is this
"safe" to rely on?

#include <iostream>
#include <locale.h>

int main()
{
// Get locale
char* value = setlocale(LC_ALL, NULL);
if (value == NULL)
std::cout << "NULL pointer returned" << "\n";
else
std::cout << "Value = \"" << value << "\"\n";
}

root@dev:./i18n
Value = "C"
Any help/advice from anyone who has tackled this before would
be appreciated...

The problem is that there isn't just one "language" setting.
There are, or can be, many---in the past, I've often used a
different language setting for collating sequences than for
messages.

I don't have my C documentation handy to verify, but from
memory (probably wrong, but whatever), setlocale returns the
name of the previous locale---the first call should always
require "C". To get the user's locale, you should first do a
setlocale(LC_ALL, ""), and then recover the locale. But the
string isn't standardized, so you'll still end up with
implementation defined behavior when it comes to parsing it.

With regards to environment variables, the Unix conventions
establish a hierarchy: LC_MESSAGE (for messages), followed by
LC_ALL (if LC_MESSAGE isn't set), followed by LANG (if neither
LC_MESSAGE nor LC_ALL are set). But I think you'd be better off
setting the locale to the user defined value, then getting its
name. Or even better, install your messages so that they can be
found by the locale (but that's not always easy).
 
J

Jorgen Grahn

.
Is there not just a standard c++ function to retrieve the language,
I'd have thought this would be quite an important function.
'setlocale' looked it it fitted the bill but didn't.

If you're referring to that it always said "C" when you tried it (in
your first posting) that must have been because you did something
wrong. Don't know *what* because I didn't read it, but people use
locales all the time.

(Stroustrup has a chapter on C++ locales from TC++PL for free
download, by the way. It's a bit better than the C/Unix API.)

/Jorgen
 
G

Geoff

Hello,

I'm writing some cross-platform software in C++, within it I have a
list of strings for various languages - My problem now is, how do I
determine the language setting of the person running the code so I can
present them information in the correct language? I'd rather not have
to resort to an entire framework just for this small function.

I tried "setlocale()" which always returns "C" on my Debian Lenny test
machine. I don't mind having slightly different functions for each OS
(I believe there are functions in the Windows API to determine
language, so that's taken care of), but I would like the Linux code to
work on all flavours of Linux, I see there's a "LANG" environmental
variable - Is this "safe" to rely on?



Code:

#include <iostream>
#include <locale.h>

int main()
{
// Get locale
char* value = setlocale(LC_ALL, NULL);

if (value == NULL)
std::cout << "NULL pointer returned" << "\n";
else
std::cout << "Value = \"" << value << "\"\n";
}

The standard specifies that the program's default locale is always the
"C" locale at startup.

Use char* value = setlocale(LC_ALL, NULL); to obtain the program's
current locale.

Use char* value = setlocale(LC_ALL, ""); to set the program's locale
to the system's default locale.
 

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

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top