Tagged Questions

The process of making an application suitable for use for a world-wide audience, regardless of culture.

learn more… | top users | synonyms (2)

65
votes
8answers
23k views

How to localize ASP.NET MVC application?

What would be best practice to localize your ASP.NET MVC application? I would like to cover two situations: one application deployment in IIS which would handle multiple languages one ...
58
votes
2answers
7k views

What is the difference between CurrentCulture and CurrentUICulture properties of CultureInfo in .NET?

In .NET there is the CultureInfo class in the System.Globalization namespace. It has two similar properties both returning values of the CultureInfo type: CurrentCulture and CurrentUICulture. What is ...
48
votes
13answers
32k views

How can I detect the encoding/codepage of a text file

In our application, we receive text files (.txt, .csv, etc.) from diverse sources. When reading, these files sometimes contain garbage, because the files where created in a different/unknown codepage. ...
22
votes
5answers
5k views

What is the Invariant Culture?

Could anybody raise an example to demonstrate the usage of Invariant Culture? I don't understnd what the documents describe I have read.
17
votes
5answers
2k views

Prevent exception messages from being translated into the user's language?

How do I make my application always use English when displaying win32/.net exceptions messages? I got this message, it looks like someone used babelfish to translate it (it's Swedish): ...
15
votes
9answers
4k views

What is the “best” way to store international addresses in a database?

What is the "best" way to store international addresses in a database? Answer in the form of a schema and an explanation of the reasons why you chose to normalize (or not) the way you did. Also ...
14
votes
11answers
403 views

Implementing internationalization (language strings) in a PHP application

I want to build a CMS that can handle fetching locale strings to support internationalization. I plan on storing the strings in a database, and then placing a key/value cache like memcache in between ...
14
votes
5answers
1k views

Floating Point Number parsing: Is there a Catch All algorithm?

One of the fun parts of multi-cultural programming is number formats. Americans use 10,000.50, Germans use 10.000,50, French use 10 000,50 etc. My first approach would be to take the string, parse ...
13
votes
2answers
3k views

Globalization in ASP.Net MVC 3

I am trying to achieve globalization/localization in my MVC 3 application. I don't want different Views for each language. Please suggest how I can proceed. Any supported links/URLs will be of great ...
13
votes
9answers
712 views

How should web sites deal with localization settings? (from “What are common UI misconceptions and annoyances?”)

I’ve chosen to take this as a question in its own right since it was generating so much debate in the comments of the original post. It’s interesting to see that a lot of people on SO (who are ...
11
votes
4answers
4k 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 ...
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
3answers
295 views

Localizing Date Ranges

Does anyone know how to localize date ranges using C#? In particular, I want to generate "smart" date ranges, so that redundant information is eliminated. Here are some examples in US English ...
10
votes
9answers
1k views

How Do You Write Code That Is Safe for UTF-8?

We have a set of applications that were developed for the ASCII character set. Now, we're trying to install it in Iceland, and are running into problems where the Icelandic characters are getting ...
10
votes
7answers
966 views

What do I need to know to globalize an asp.net application?

I'm writing an asp.net application that will need to be localized to several regions other than North America. What do I need to do to prepare for this globalization? What are your top 1 to 2 ...
9
votes
1answer
5k views

app.config globalization

web.config allow a globalization tag: This setting will set the globalization for the entire ASP.NET application. Does this tag work in app.config in standard forms applications too? If yes... ...
9
votes
12answers
19k views

Regular expression for validating names and surnames?

Although this seems like a trivial question, I am quite sure it is not :) I need to validate names and surnames of people from all over the world. How can I do that with a regular expression? If it ...
9
votes
3answers
2k views

Can You Determine Timezone from Request Variables?

Is there a way to do your timezone offsets on the server side, by reading something in the request over http, instead of sending everything to the client and letting it deal with it?
9
votes
5answers
2k views

What is the best way to localize a WPF application, sans LocBAML?

There seems to be no good way to localize a WPF application. MSDN seems to think that littering my XAML with x:Uid's, generating CSV files, and then generating new assemblies (using their sample ...
8
votes
3answers
95 views

How to call EnumSystemLocales in Delphi?

i am trying to call EnumSystemLocales in Delphi. For example: { Called for each supported locale. } function LocalesCallback(Name: PChar): BOOL; stdcall; begin OutputDebugString(Name); Result ...
8
votes
1answer
544 views

ResourceManager not selecting correct resource set when using custom culture

I have created a localized MVC website using the code found on this blog by Alex Adamyan. This is working great if I use an existing culture. However, I am trying to localize for Tagalog (tl or ...
8
votes
2answers
4k views

ASP.NET MVC: When to set Thread.CurrentThread.CurrentUICulture?

I am just beginning to localize an ASP.Net MVC application. Most of the strings will be defined in resource files and retrieved via Matt's Localization Helpers. Other strings must be stored in a ...
8
votes
5answers
7k views

Multilanguage in WPF

Can you recomend me a good way to implement a Multilanguage system for a WPF app? The method i'm using right now involves xml, classes and a xaml extension. It Works fine in most of cases, but when I ...
8
votes
8answers
2k views

What is the actual differences between I18n/L10n/G11n and specifically what does each mean for development?

I18n/L10n/G11n all equal localization to me, but people keep making distinctions among these, especially in corporate and marketing, but I'm failing to see how these 3 tasks, from the programmer's ...
8
votes
7answers
4k views

I need to store postal codes in a database. How big should the column be?

I expect the column to be a VARCHAR2, in my Oracle Database. US Zips are 9. Canadian is 7. I am thinking 32 characters would be reasonable upper limit What am I missing?
8
votes
11answers
1k views

Handling timezones in storage?

Store everything in GMT? Store everything the way it was entered with an embedded offset? Do the math everytime you render? Display relative Times "1 minutes ago"?
7
votes
2answers
557 views

C#, Localization, Resources, and MonoDevelop

I've searched for a clear answer on this, but can't seem to find one. I may just be missing it on StackOverflow, and searching discussions regarding SharpDevelop and MonoDevelop have yielded nothing ...
7
votes
3answers
3k views

ASP.NET - MVC 3: Localization

I am about to implement localization for my MVC3 web application. Googling my way through large amounts of ways to do it, I was left unsure which way to implement this. I found few ways how to do it: ...
7
votes
6answers
859 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.: ...
7
votes
3answers
4k views

Javascript Date Localization

I'm working with an ASP.NET app with localization and globalization. I'm having some difficulty understanding how to get the Date() function in javascript to work properly given the user's ...
7
votes
3answers
5k views

ASP.NET MVC Globalization of Views

I am looking at globalizing an application that I have developed in asp.net mvc. I am currently using resource files to store messages that I present to the user (i.e., when I save something to the ...
6
votes
1answer
374 views

How should I go about creating a multilingual text translation editor in VS 2010?

Feature explained below is available in Microsoft Dynamics AX (formerly known as Axapta), an ERP application. However, my question is related to Visual Studio 2010 and MVC 3 application. Please find ...
6
votes
1answer
135 views

Units of distance for the current CultureInfo in .Net

Is it possible to get the unit of distance from a CultureInfo class or any other class in the System.Globalization namespace. e.g. "en-GB" would be "mile", "en-FR" would be "km"
6
votes
2answers
258 views

What codepage encodes a 'ç' as '?º' (0x3f 0xba)

Today I received a file from a customer that I have to read, but it contains strange characters. Using known names, I can guess the meaning of some characters. For example: Realname | Encoded as ...
6
votes
2answers
2k views

Subfolders in App_GlobalResources (ASP.NET)

Is it possible to put resource files (.resx) within subfolders inside App_GlobalResources? For example: /App_GlobalResources/someresources/myfile.resx ...
6
votes
7answers
398 views

How do programming languages differ between different parts of the world?

I have always wondered how programming languages are different, if they are indeed different, to other parts of the world? How do people in parts of Asia/Europe/South America use programming? Whats ...
6
votes
1answer
495 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
2k views

Localize Images in ASP.NET

A couple of years ago, we had a graphic designer revamp our website. His results looked great, but he unfortunately introduced a new unsupported font by the web browser. At first I was like, ...
5
votes
1answer
79 views

Why do commas behave differently in int.Parse() and decimal.Parse() with InvariantCulture?

Why does: decimal.Parse("1,2,3,45", CultureInfo.InvariantCulture) return a decimal of 12345, yet: int.Parse("1,2,3,45", CultureInfo.InvariantCulture) throws an exception? I would expect the ...
5
votes
1answer
74 views

Is there a .NET library for formatting large numbers as text?

I'm looking for a library that can take a number such as 1,000,000,000 and output a partial text represenation e.g. 1 billion - but (preferably) in an already localised manner. (So that if the culture ...
5
votes
2answers
70 views

Localized exponential notation?

i'm trying to convert numbers into localized strings. For integers and money values it's pretty simple, since the string is just a series of digits and digit grouping separators. E.g.: 12 345 678 ...
5
votes
2answers
259 views

How to URL route based on UICulture settings?

I have ASP.NET 4 project (not MVC). I need to create url route based on user input language. Project has only two languages "he" and "en". User can enter the site and if his culture is set to ...
5
votes
3answers
701 views

How do I use DateTime.TryParse() for non-English languages like Arabic?

I need to convert strings to DateTime objects that are in non-English languages. I've seen many examples of converting DateTime to strings in other languages, but not the other way around. This ...
5
votes
1answer
269 views

Are there any tools that support resx localization refactoring in xaml?

For example, using resharper in c# code I can perform a 'Move to resource' refactor on a string literal. Resharper will move the hard-coded string to a resx file and replace my c# with a reference to ...
5
votes
2answers
142 views

.NET CultureInfo for Cuba?

I just noticed that the .NET Framework doesn't include Cuba in the CultureInfo class (format xx-XX). What is the best practice on this case?
5
votes
3answers
137 views

.Net Localization vs Branding

Let's say I have a WCF service, it has multiple clients, in multiple languages. It would be appropriate to use the resource files and satellite assemblies to provide localized resource strings. Now ...
5
votes
1answer
453 views

Localizing the fields / attributes on the AccountModel for ASP.NET MVC

I want to localize / globalize the fields on my Login page. I am using ASP.NET MVC 3 Preview 1 with the razor view engine. Some background First of all, i've set my routing and added a localization ...
5
votes
1answer
1k views

How do I make globalization work with MVC2 and jquery?

I am trying out some globalization in an asp.net mvc2 application but can't get it to work fully. I am using the library http://github.com/nje/jquery-glob as a tool to display currency and dates etc ...
5
votes
2answers
519 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 ...
5
votes
2answers
169 views

Do we affect multiple users in ASP.NET when we set the Thread CurrentCulture/CurentUICulture?

When we set the CurrentCulture and/or CurrentUICulture we do this on the current thread like this: Thread.CurrentThread.CurrentCulture = new CultureInfo("en-GB"); ...

1 2 3 4 5 11