locale

Specify which locale the iphone using

Hello all, I would like to use Xcode to know which language the iPhone using, if it is in English language, I will display an English button. If it is in French language, I will display a French button. Do you have any suggestion? ...

Table of conversion of ISO-639/ISO-3166 based language/country locale name to Windows ones and back.

Hello, I want to convert POSIX locale names like en_US, de_DE that use ISO-639-1 and ISO-3166 codes to Windows ones English_United States, German_Germany and back. I had found following tables on MSDN site: Languages http://msdn.microsoft.com/en-us/library/39cwe7zf(v=VS.71).aspx Countries http://msdn.microsoft.com/en-us/library/cdax4...

Using COLLATE in Android SQLite - Locales is ignored in LIKE statement

When creating my SQLite database in Android I set the database locale - db.setLocale(new Locale("cz_CZ")). This is a Czech locale. A SELECT statement works and takes the locale into account, for example: SELECT * from table WHERE name='sctzy' COLLATE LOCALIZED Will find the entry 'ščťžý'. But using LIKE will fail: SELECT * from ta...

Is there another way to retrieve default pattern for a given locale?

Is it possible to retrieve a default pattern for a given locale, without casting an object returned by DateFormat.get*Instance() to a SimpleDateFormat? I understand, that in most cases everything will be OK, but there is a note in javadoc, here: "If you want even more control over the format or parsing, (or want to give your users more ...

Is setlocale restricted to its script instance?

According to PHP, "locale information is maintained per process." Is my understanding correct that this is the same as saying per script instance with an Apache server? In other words, if I have several concurrent sessions using different locales, can changes in one user's locale settings interfere with another's? Also is there a conve...

Temporary displaying text (not dates) in a different language

I'm trying to display some message on the screen in a different language (but keeping the dates in the default language, uk_eng), depending on what user is looking at the screen. Being only a temporary setting I was wondering what's the best way to do it in Java. ...

Consistent implementation of tr?

I have a ksh script that generates a long, random string using /dev/urandom and tr: STRING="$(cat /dev/urandom|tr -dc 'a-zA-Z0-9-_'|fold -w 64 |head -1)" On the Linux and AIX servers where I used this it resulted in 64 characters of upper and lower case alpha chars, digits, dash and underscore characters. Example: W-uch3_4fbnk34u2nc0...

How to change all the strings in an iphone application with respective selected language in settings?

Hi Guys, I need help from you, I need to display all the text, labels , strings and what ever text is showing to user in the iphone application with respective selected language in settings of iphone. for example user selects German or French in settings of iPhone language, then my application should provide or view the details in that...

Java code to convert country codes alpha-2 (IN) to alpha 3 (IND)

Using Java, Is there a quick way to convert an alpha-2 country code (IN or GB) to the alpha-3 equivalent (IND or GBR)? I can get the alpha-2 codes with: String[] codes = java.util.Locale.getISOLanguages(); That's not a problem, actually my application reads in the alpha-2 code, but I need to output the alpha-3 equivalent . Is ...

how can i modified the default locale in android

hello everyone: by default,the android system's default location is US and language is en. but i want to set the default location to other country.so, the users will see their mother language when the first time start up android. i have tried to modify the code(/dalvik/libcore/luni/src/main/java/java/util/Locale.java),changed the local...

Datetime.Now incorrectly determining my location

I have a website that displays the current date using the code Datetime.Now. From what I understand, Datetime.Now is supposed to display the current time as it would appear in the viewer's current locale. At the moment, when I test on localhost, the website is correctly determining my location (en-nz) and displaying the right date. Howe...

Best practices for displaying a webpage in different languages

I would like to deploy a webpage in different languages (German and English). As a backend solution I would use Wordpress running on a nginx/PHP/MySQL stack on Linux. From various posts here I think that looking at the browser locale (the ACCEPT-LANGUAGE field in HTTP request) is a good first try for setting the correct language. Of cou...

jquery locale-aware number validation

I'd like to know if there is any locale-aware way to validate inputs using jquery validation plugin. In particular, I'm trying to validate a decimal number, but neither max, min, or number methods works as one would expect. I wrote some small custom validation methods, but I feel like this should/could be delivered right out-of-the-box...

How to validate a locale in java?

I read a file in an application that specifies a language code: public void setResources(String locale) { // validate locale // ULocale lo = new ULocale(locale); // System.out.println(lo.getDisplayCountry()); } that must be in the format: <ISO 639 language code>_<ISO 3166 region code> eg. en_UK, en_US etc. Is it possible...

Changing locale programmatically on DroidX(2.1 Update 1) does not work ?

I am trying to change the locale programmatically on Android. The code I have below works fine on the Incredible(2.2) and Droid(2.2). However, it doesn't on the DroidX(2.1 Update 1) Anyone here have encountered similar problem ?? Any insight would be helpful. public void overrideLocale(String languageToLoad) { Locale locale = new Loc...

Windows active code page

I have a certain library (IBM's WebSphere MQ) which I'm using, with an API that is suppose to return a remote servers character set. After some debugging, it seems as though the return value of this function call returns the active code page of my machine. I saw this by looking at the return value of the function call and the result of...

How can I get the system language in C/C++?

How can I get the system language in C/C++? Like en_US or en_GB. ...

Getting exception while setting the locale for running applicaiton in multi task iPhone?

Hi Guys, I have a web view screen in my application, Where I am getting the data in different languages from server. So when I am setting the locale at back end I mean, the application is not closed. While I am setting the locale the application is closed and getting exception. I have done like this, I opened my application went to web...

Using Poedit with XAMPP

I am struggling for quite a while now to get into translation files with PHP's gettext() function and creating the files with Poedit. Poedit didn't come with a helpfile either and I tried lots of things found online but nothing works.. I am on Mac OSX with an XAMPP configuration. on OSX my XAMPP dir is /Applications/XAMPP/xamppfiles/h...

Android user-set Locale always get reset after onCreate?

I want to have a configurable language settings in my app. So, in onCreate of my activity, I call Resources.updateConfiguration with the new locale. However, after onCreate (at some time, I can't find it when), the locale is set back to the default locale. On the code example below, the strings shown in the main layout (as inflated by...