-1
votes
1answer
99 views

Android/Java: How to code if-statements based on localisation-settings? [closed]

Right now I'm starting to think about localisation of my ANDROID app. I'm coding in JAVA and I'm using the ADT environment. The app is supposed to run in German and English once it is finished. I ...
0
votes
1answer
208 views

Resource file for en-GB locale doesn't load in C# application

I am setting the locale of my application using Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-GB"); Thread.CurrentThread.CurrentUICulture = new ...
2
votes
2answers
256 views

Android: How to set culture values for application

) i'm a C# developer and now i started to program apps for android. In C# we have the CultureInfo object where we can set the values for the culture of the aplication. There is a similar object in ...
2
votes
4answers
1k views

How do I detect the user's locale to get the correct csv separator?

I have a simple data conversion tool and one of the outputs it can produce is a csv file. This works perfectly here in the UK but when I shipped it out to a German customer I had some issues. ...
3
votes
1answer
539 views

C# Culture and Java Locale mismatch

Consider this comparison: String a = "\u00C4"; // "LATIN CAPITAL LETTER A WITH DIAERESIS" String b = "\u0041\u0308"; // "LATIN CAPITAL LETTER A" and "COMBINING DIAERESIS" Comparing these in ...
0
votes
1answer
114 views

.NET: DateTime settings are different on one machine

I have two applications (web site and desktop application) launched on the one machine, both uses the following to serialize DateTime object value: string strDateTileFullFormat = ...
2
votes
1answer
2k views

Change Windows Locale / Culture without using code

This ought to be simple and it probably is but I can't seem to find an answer to this question... I am developing C# application using Visual Studio 2008 and the application supports a number of ...
3
votes
5answers
2k views

Has C#/.NET builtin conversion routines for length units?

Has C#/the .NET library builtin routines or constants for converting e. g. millimetres to inches? If so, where can I find them? (I just do not want to produce duplicate code again and again.)
5
votes
2answers
2k views

Is Culture in C# equivalent to Locale in Java?

C# uses the concept of Culture. Is this operationally similar to Locale in Java or are there significant differences in the underlying concepts?