Tagged Questions

In computing, locale is a set of parameters that defines the user's language, country and any special variant preferences that the user wants to see in their user interface. Usually a locale identifier consists of at least a language identifier and a region identifier.

learn more… | top users | synonyms

38
votes
4answers
21k views

Android : changing Locale within the app itself

My users can change the Locale within the app (they may want to keep their phone settings in English but read the content of my app in French, Dutch or any other language ...) Why is this working ...
32
votes
11answers
2k views

Design considerations for internationalization

I've read Joel's article on Unicode and I feel that I have at least a basic grasp of internationalization from a character set perspective. In addition to reading this question, I've also done some of ...
27
votes
7answers
3k views

C programming: How to program for Unicode?

What prerequisites are needed to do strict Unicode programming? Does this imply that my code should not use char types anywhere and that functions need to be used that can deal with wint_t and ...
17
votes
8answers
4k views

With a browser, how do I know which decimal separator does the client use?

I'm developing a web application. I need to display some decimal data correctly so that it can be copied and pasted into a certain GUI application that is not under my control. The GUI application ...
14
votes
4answers
534 views

Is en_UK an illegal locale?

So far I had always used 'en_UK' for British English. Today I got an error when using it with Zend Framework because the locale is not included in the long list of recognized locales. Here's just a ...
13
votes
2answers
1k views

Why might Resources.getString() intermittently return strings from the wrong locale?

I have an Android application with English strings in values/strings.xml. For each string in that file, I have an entry in values-ja/strings.xml with the Japanese translation of that string. If I set ...
13
votes
10answers
12k views

Simplest way to detect client locale in PHP

I would like to be able to detect what country a visitor is from on my website, using PHP. Please note that I'm not trying to use this as a security measure or for anything important, just changing ...
12
votes
1answer
191 views

What are the formal and practical constraints on the values in 'struct lconv' describing a locale?

Background The C99 standard, section 7.11, describes the <locale.h> header and its contents. In particular, it defines struct lconv and says that: [...] In the "C" locale, the members ...
11
votes
3answers
1k views

What std::locale names are available on common windows compilers?

The standard is pretty much silent on what constitutes a valid locale name; only that passing an invalid locale name results in std::runtime_error. What locale names are usable on common windows ...
10
votes
4answers
297 views

Unicode std::string class replacement

I'm looking for suggestions regarding unicode aware std::string library replacements. I have a bunch of code that uses std::string, its iterators etc, and would like to now support unicode strings ...
10
votes
3answers
2k views

Converting country codes in .NET

In .NET is there any way to convert from three letter country codes (defined in ISO 3166-1 alpha-3) to two letter language codes (defined in ISO 3166-1 alpha-2) eg. convert BEL to BE? Have looked ...
10
votes
1answer
5k views

How do I change the locale that JasperReports uses?

The windows installed on my machine has the locale en_AU and that's what JasperReports uses. I already tried changing the locale of all users, including the Administrator but it still uses en_AU. How ...
9
votes
2answers
131 views

How does tokenization and pattern matching work in Chinese.?

This question involves computing as well as knowledge of Chinese. I have chinese queries and I have a separate list of phrases in Chinese I need to be able to find which of these queries have any of ...
9
votes
3answers
686 views

Best practice to handle locales with currencies and language switches

I'm working on a multilanguage project with Zend Framework (German and English) where I have a small form to order a product. The user should be able to: Change his prefered currency for the product ...
9
votes
2answers
416 views

Are there any updates of localization support in C++0x?

The more I work with C++ locale facets, more I understand --- they are broken. std::time_get -- is not symmetric with std::time_put (as it in C strftime/strptime) and does not allow easy parsing of ...
9
votes
3answers
6k views

How to sort text in sqlite3 with specified locale?

Sqlite3 by default sorts only by ascii letters. I tried to look in google, but the only thing I found were informations about collations. Sqlite3 has only NOCASE, RTRIM and BIARY collations. How to ...
8
votes
4answers
931 views

How to hack GHCi (or Hugs) so that it prints Unicode chars unescaped?

Look at the problem: Normally, in the interactive Haskell environment, non-Latin Unicode characters (that make a part of the results) are printed escaped, even if the locale allows such characters (as ...
8
votes
4answers
5k views

Adding/Removing the language entries in the “Settings” -> “Select Locale” from Android phone

Sorry for this long post and thanks for your time in advance! My Question: How can I add or remove the language entries in the "Settings" -> "Language & keyboard settings" -> "Select Locale"(or ...
8
votes
2answers
1k views

PHP/Gettext Problems

I remember running some tests a some months ago with gettext and the following code worked perfectly: putenv('LANG=l33t'); putenv('LANGUAGE=l33t'); putenv('LC_MESSAGES=l33t'); if ...
8
votes
2answers
562 views

How to display locale sensitive time format without seconds in python

I can output a locale sensitive time format using strftime('%X'), but this always includes seconds. How might I display this time format without seconds? >>> import locale >>> ...
7
votes
1answer
146 views

How to define Location and Display language from Windows Control panel

Delphi xe. For Tab Administrative - Unicode lang use GetSystemDefaultLangID For Tab Formats - use GetUserDefaultLangID But what do I use for For Tab Location? For Tab "Keyboard and Language" for ...
7
votes
2answers
126 views

Why does Python store German and Spanish (and other?) time format strings as %T in the locale module?

I'm writing a test for a program that will be used in multiple locales. While running the test in German, i got the error Traceback (most recent call last): File "<stdin>", line 1, in ...
7
votes
4answers
274 views

What is a good definition for language code and locale codes?

When to use en_GB and en-GB ? What is the difference ? Is there an ISO name for this ISO 639-1 (language) and ISO 3166 (country) combination ?
7
votes
1answer
484 views

Sorting and comparing strings by locales in Haskell?

is it possible to properly sort strings with national characters in Haskell (GHC) ? In other words, correct collation of Chars by current locale settings ? I did found ICU module only, but it ...
7
votes
1answer
357 views

Why does ICU's Locale::getDefault() return “root”?

Using the ICU library with C++ I'm doing: char const *lang = Locale::getDefault().getLanguage(); If I write a small test program and run it on my Mac system, I get en for lang. However, inside a ...
7
votes
2answers
16k views

Change language settings (locale) for the device

I know it's possible to have multiple languages in a single application through the res/string and depending on Locale. Here is a case ...
7
votes
2answers
4k views

(ANDROID) controling the user language

I have a multi language app. I want to give the user the ability to control which language to use. that mean that even if he has the English Locale he could use a different language if he wants. How ...
7
votes
4answers
971 views

Java's equalsIgnoreCase fails with ß (“Sharp S” used in German alphabet)

my first question here :-) Did my best reading the rules and searching if the question was already asked before. The following code String[] strings = {"cAsE", "\u00df"}; for (String str : ...
7
votes
3answers
4k views

OS locale support for use in Python

The following Python code works on my Windows machine (Python 2.5.4), but doesn't on my Debian machine (Python 2.5.0). I'm guessing it's OS dependent. import locale locale.setlocale( locale.LC_ALL, ...
7
votes
5answers
1k views

How do I match only fully-composed characters in a Unicode string in Perl?

I'm looking for a way to match only fully composed characters in a Unicode string. Is [:print:] dependent upon locale in any regular expression implementation that incorporates this character class? ...
6
votes
1answer
168 views

Symfony2 Language for TLD

I'm new in Symfony2 and I'm looking for choose the language with the TLD of my hostname. (in a proper way) I already find some way to change the language with a form: ...
6
votes
2answers
132 views

C++ printf with %f but localized for the user's country

I'm using the following C++ syntax to output a floating point value on a Windows platform: printf("%.2f", 1.5); It works well if I run it on an English user account. My assumption was that if I run ...
6
votes
1answer
113 views

C locale questions

I have some questions, but I can“t find straight answer anywhere. So, basically, I know what locale is, I know how to use (set) it, but what I dont know is how is work behind the scene, and I ...
6
votes
2answers
261 views

Win32 in C - Why does my text show up as a foreign language?

Started looking at the win32 API on this site: http://www.winprog.org/tutorial/start.html I've literally just compiled the first example and it's given me a message prompt in chinese/japanese, or ...
6
votes
3answers
2k views

Decimal separator in NumberFormat

Given a locale java.text.NumberFormat: NumberFormat numberFormat = NumberFormat.getInstance(); How can I get the character used as Decimal separator (if it's a comma or a point) in that ...
6
votes
3answers
631 views

Python not sorting unicode properly. Strcoll doesn't help

I've got a problem with sorting lists using unicode collation in Python 2.5.1 and 2.6.5 on OSX, as well as on Linux. import locale locale.setlocale(locale.LC_ALL, 'pl_PL.UTF-8') print [i for i in ...
6
votes
4answers
405 views

What are the best practices for internationalizing a Java Swing desktop application?

I'm sure there are a lot of methods, but what's the recommended way to do this that has the least amount of impact to your code? The obvious is that you create properties files, but how do you swap ...
6
votes
1answer
415 views

Is it possible to create your own custom locale

Since Windows doesnt have a C++ locale with UTF8 support by default, i would like to construct a custom locale object which supports UTF8 (by creating it with a custom ctype facet). How can i ...
6
votes
5answers
4k views

How to get Locale from its String representation in Java?

Is there a neat way of getting a Locale instance from its "programmatic name" as returned by Locale's toString() method? An obvious and ugly solution would be parsing the String and then constructing ...
6
votes
5answers
1k views

How to make strtotime parse dates in Australian (i.e. UK) format: dd/mm/yyyy?

I can't beleive I've never come across this one before. Basically, I'm parsing the text in human-created text documents and one of the fields I need to parse is a date and time. Because I'm in ...
6
votes
1answer
830 views

What is the difference between C and Posix locales on Postgres?

I know that database locales on Postgres are responsible for proper order of national characters, proper lower/upper-casing etc. But why there are two language-neutral locales: posix and c? Is there ...
6
votes
3answers
3k views

How does JavaScript `Date` object determine the locale of the users browser?

I am trying to understand how the JavaScript running in the various browsers determines the locale that will be used by the JavaScript Date object when using the method toLocaleString. I have ...
6
votes
1answer
1k views

Valid Locale Names

How do you find valid locale names? I am currently using MAC OS X. But information about other platforms would also be useful. #include <fstream> #include <iostream> int main(int ...
6
votes
4answers
703 views

locale-dependent ordering for std::string

I am trying to compare std::strings in a locale-dependent manner. For ordinary C-style strings, I've found strcoll, which does exactly what I want, after doing std::setlocale #include ...
6
votes
5answers
2k views

C++ - locale-independent “atof”?

I'm parsing GPS status entries in fixed NMEA sentences, where fraction part of geographical minutes comes always after period. However, on systems where locale defines comma as decimal separator, atof ...
6
votes
7answers
1k views

Source of data for “official” country/region list

Lately we've started getting issues with outdated countries / regions list being presented to users of our web-application. We currently have a few DB tables to store localized country names along ...
6
votes
4answers
1k views

How do I automatically set a user's locale in PHP?

Is there an easy way to parse the user's HTTP_ACCEPT_LANGUAGE and set the locale in PHP? I know the Zend framework has a method to do this, but I'd rather not install the whole framework just to use ...
6
votes
6answers
839 views

UTF usage in C++ code

What is the difference between UTF and UCS. What are the best ways to represent not European character sets (using UTF) in C++ strings. I would like to know your recommendations for: Internal ...
6
votes
18answers
590 views

Pros and cons of Localisation of technical words?

This question is directed to the non-english speaking people here. It is somewhat biased because SO is an "english-speaking" web forum, so... In the other hand, most developers would know english ...
5
votes
4answers
276 views

Java 7 default locale

I have just installed jre7 and I'm surprised to see that my default locale is now en_US. With jre6 it was de_CH. What is different with jre7? Is the default locale no more the one of the Operating ...

1 2 3 4 5 16