Culture is the combination of language and peculiarities of geographical location (like en-UK, en-US, de-AT, de-DE, fr-BE)

learn more… | top users | synonyms

37
votes
8answers
19k views

C#: What does MissingManifestResourceException mean and how to fix it?

The situation: I have a class library, called RT.Servers, containing a few resources (of type byte[], but I don't think that's important) The same class library contains a method which returns one ...
34
votes
8answers
16k views

MVC 3 jQuery Validation/globalizing of number/decimal field

When using globalization culture="da-DK" in the Web.config file, the jQuery validation does not work. In Denmark, we use the notation 19,95 instead of the US way 19.95 when we write a price for at ...
14
votes
18answers
898 views

No room for elegant code? [closed]

Attempt at objectivity: This is based mostly on my small amount of experience. I go through phases where I become dismayed and perceive that, ultimately, nobody really cares about writing good code. ...
14
votes
5answers
23k views

Set Culture in an ASP.Net MVC app

What is the best place to set the Culture/UI Culture in an ASP.net MVC app Currently I have a CultureController class which looks like this: public class CultureController : Controller { ...
13
votes
2answers
14k views

How to getting browser current locale preference using javascript?

Does anyone know how to obtain the browser culture from firefox and google chrome using javascript? Note: This is an asp.net 3.5 web application. The requirement is to try and set the applications ...
13
votes
2answers
451 views

C#- ToLower() is sometimes removing dot from the letter “I”

We have noticed a weird error when calling ToLower() on certain strings. The input string is: string s = "DocumentInfo"; string t = s.ToLower(); // sometimes, t == documentinfo // other times, t == ...
12
votes
6answers
9k views

Double.Parse - Internationalization problem

This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page string s = "0.009"; Simple enough. Now, if my culture is Spanish - which is "es-ES" - and I try to convert the ...
12
votes
4answers
1k views

In .Net: best way for keeping CurrentCulture on new Thread?

In a .Net 4.0 WPF project, we need to keep the same CurrentCulture on each thread then we have on the main thread. Given, we can initialize a new thread's culture with code like the following: Keep ...
12
votes
1answer
4k views

What is the difference between Culture and UICulture?

Could someone give me a bit more information on the difference between Culture and UICulture within the .NET framework? What they do and when to use what.
12
votes
2answers
1k views

Java equivalent of Invariant Culture

I am converting the following C# code to Java. Is there a Java equivalent to the .NET concept of Invariant Culture? string upper = myString.ToUpperInvariant(); Since the Invariant Culture is ...
11
votes
6answers
2k views

.NET: Are there any differences between InvariantCulture and en-US?

Given the following two cultures: CultureInfo c1 = InvariantCulture; CultureInfo c2 = new CultureInfo("en-US"); and i were to examine every piece of information specific to both cultures, e.g.: ...
11
votes
2answers
2k views

When should I specify CurrentCulture or InvariantCulture and when should I leave it unspecified?

What is the best practice for specifying CurrentCulture or InvariantCulture and not specifying the culture at all? From what I have read, if you're doing serialization, for instance, you need ...
10
votes
4answers
10k views

Is CultureInfo.CurrentCulture really necessary in String.Format()?

How do you think is really necessary to provide IFormatProvider in method String.Format(string, object) ? Is it better to write full variant String.Format(CultureInfo.CurrentCulture, "String is ...
10
votes
1answer
1k views

ASP.NET MVC output cache for multinenant application, vary by hostname and culture

I have a multitenant application in ASP.NET MVC. The instance of the application that will be served is function of the hostname alone (something along the lines of stackexchange, I suppose). Each ...
10
votes
4answers
8k views

Is it possible to set the CultureInfo for an .NET application or just a thread?

I've an application written in C# which has no GUI or UI, but instead writes files that are parsed by another application (in XML and others). I have a customer whose CultureInfo has the ...
9
votes
2answers
8k views

Parse DateTime in c# from strange format

if i have a datetime string in a weird format, such as YYYY##MM##DD HH**M**SS, how can i create a new datetime object base on that? i have read something about the datetimeformatinfoclass but not sure ...
9
votes
5answers
2k views

.NET How to compare two Strings that represent filenames ignoring case correctly

Given that (at least on NTFS) the filesystem on Windows is case insensitive, I would like to compare String fileA to String fileB as such: fileA.Equals(fileB, ...
9
votes
3answers
6k views

ASP.Net MVC3 Modify culture for date and decimal through or not Visual Studio?

I'm working on an MVC3 application with Razor. I'm having troubles using Dates and doubles on my views. Both my Windows and Visual Studio are English, but I want to customize the culture of my project ...
9
votes
7answers
2k views

Get just the hour of day from DateTime using either 12 or 24 hour format as defined by the current culture

.Net has the built in ToShortTimeString() function for DateTime that uses the CultureInfo.CurrentCulture.DateTimeFormat.ShortTimePattern format. It returns something like this for en-US: "5:00 pm". ...
9
votes
1answer
2k views

TextBox doesn't honor System Decimal (Dot or Comma)

If I bind Text in a TextBox to a float Property then the displayed text doesn't honor the system decimal (dot or comma). Instead it always displays a dot ('.'). But if I display the value in a ...
9
votes
2answers
2k views

Localized tables and Entity Framework

I have a scenario where I need to localized values of objects in my database. Let's say you have an application that can create animals, if the user is english the value of the "Name" property of an ...
9
votes
2answers
197 views

Is it possible to make a date datatype accept 13 as a month and 30 for all months?

I am in Ethiopia and we have 13 months. 12 of them with 30 days each and 13th month with 5 or 6 days. I want to sort my data by date using the BindingSource sort method. But to do that, I need to set ...
7
votes
6answers
1k views

Best practices for a single large SVN project

I have inherited a single project in svn: 30Gb in over 300 000 files. There are tons of binary files in there mostly in an images folder. Operations like updating the entire project can be ...
7
votes
5answers
2k views

C# BackgroundWorker's culture

I woudl like to set the culture for my whole application. I tried the following : Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(wantedCulture); ...
7
votes
3answers
737 views

C#: Unit Test to Differentiate CurrentCulture from InvariantCulture

I have a method which takes a StringComparison argument, and it really needs a unit test to prove it is performing the right comparison type. This is basically what I have so far. It differentiates ...
7
votes
2answers
335 views

Finding the end of a substring match in .NET

I am trying to find the index of a substring in a string that matches another string under a specific culture (provided from a System.CultureInfo). For example the string "ass" matches the ...
6
votes
4answers
957 views

What is a String Culture

Just trying to understand that - I have never used it before. How is a culture different to ToUpper() / ToLower()??
6
votes
3answers
2k views

Loop through embedded resources of different languages/cultures in C#

One level up from this question, what would be the way to store all (and loop through) available resources and associated cultures, to allow user selection of a specific culture? Further explanation: ...
6
votes
5answers
734 views

UI design and cultural sensitivity/awareness

When designing a user interface for an application that is going to be used internationally it is possible to accidentally design an aspect of the UI that is offensive to or inappropriate in another ...
6
votes
1answer
114 views

Processing of mongolian names

There are several countries (Turkey, Mongolia, Kyrgyzstan etc.) where generally men's name can be without middlename and instead of it used words like "oglu, uulu" etc. For example "Michael oglu ...
6
votes
1answer
194 views

Are date strings in VB6 relative to machine culture?

I have a legacy VB6 application which contains this code: Begin VB.Label LblStDate Alignment = 1 'Right Justify AutoSize = -1 'True [Blah blah ...
6
votes
1answer
429 views

Problem comparing French character Î

When comparing "Île" and "Ile", C# does not consider these to be to be the same. string.Equals("Île", "Ile", StringComparison.InvariantCultureIgnoreCase) For all other accented characters I ...
6
votes
1answer
717 views

How to create a 13 month moon based Calendar in .net

hi i would like to create a custom calendar, this calendar will have custom month names and day names it will contain 13 months with 28 days each do i need to create and entire Culture or can i just ...
6
votes
5answers
15k views

How to change culture to a DateTimepicker or calendar control in .Net

how to set internationalization to a DateTimepicker or Calendar WinForm control in .Net when the desire culture is different to the one installed in the PC?
6
votes
3answers
458 views

c# : In a dotnet class is there a property that states if the “Current” culture is actual the default culture?

Is there a property in some class that can tell me if the current culture is actually the default culture. Similar to how localization works with winforms. It states in a form if the language is ...
6
votes
3answers
132 views

How to find the default dateformat of a Culture

Well, I am trying to get the default date format of a culture. For example en-us has "m/dd/yyyy" , en-uk 'd/mm/yyyy'. Culture could be anything at the client machine. and Dateformat can also be ...
6
votes
2answers
450 views

.NET Task executed in one Thread

May I rely on the fact a Task is always executed in one thread? It can be any, but it should be the same for the whole body, as I need the thread's Culture to be set properly. Task bind = ...
6
votes
1answer
255 views

case insenstive string replace that correctly works with ligatures like “ß” <=> “ss”

I have build a litte asp.net form that searches for something and displays the results. I want to highlight the search string within the search results. Example: Query: "p" Results: ...
6
votes
4answers
2k views

String.FormatException with DateTime in non US Culture

I am getting a String.FormatException trying to convert/parse a string when the culture is other than non-US. The odd thing is that the string was generated by applying the very same format and ...
5
votes
9answers
667 views

Cultural issues in programming languages [closed]

I'm wondering if productivity can be correlated to whether a programmer is a native English speaker or not. I work in Japan and I can tell you that Japanese programmers struggle in getting the English ...
5
votes
7answers
577 views

How are the chinese coding?

Do they code in Latin? Do they have their own programming language? I'm just curious.
5
votes
1answer
778 views

Is possible to obtain the CSV separator from Thread.CurrentThread.CurrentCulture? (.NET)

In languages where the decimal separator is a ,(comma) the CSV (comma separated values file format) separator is a ; (semicolon). I know where to find this configuration in the Windows Control Panel, ...
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?
5
votes
2answers
727 views

If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only “pt” code?

If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only pt code (generic Portuguese)? This question is independent of the nature of ...
5
votes
2answers
391 views

Why is the culture name for English (Caribbean) “en-029”?

Why is the culture name for English (Caribbean) "en-029"? I know "en-CA" is used for English (Canada), but why 029? What does it signify? Why was it chosen?
5
votes
1answer
649 views

MVC3 en-GB dates in Get

I'm having a nightmare of a time with Dates. Were based in the UK, so our date format is dd/MM/yyyy. This is what users will type into the form when they want a certain date. I have a form that ...
5
votes
2answers
178 views

Why comparing two equal persian word does not return 0?

We have two same letter 'ی' and 'ي' which the first came as main letter after windows seven. Back to old XP we had the second one as main. Now the inputs I get is determined as different if one client ...
5
votes
5answers
97 views

Convert Unicode string made up of culture-specific digits to integer value

I am developing a program in the Marathi language. In it, I want to add/validate numbers entered in Marathi Unicode by getting their actual integer value. For example, in Marathi: ४५ = 45 ९९ = 99 ...
5
votes
3answers
4k views

Change culture of Silverlight application

I am working on a Silverlight app at the moment. I have a few datagrids/textblocks where I use standard binding to show values, some of which are dates. e.g. <sdk:DataGrid ...
4
votes
11answers
995 views

Our boss wants to know what company rules we should have to improve the culture?

He want's to know our opinions on whether we should have flexitime, allow non-work related internet access etc. We've got about 200 people in the company, half are programmers half are sales. We all ...

1 2 3 4 5 7