**Localization** (**L10n**) is the process of adapting internationalized software for a specific region or language by adding locale-specific components and translating text.

learn more… | top users | synonyms

103
votes
12answers
8k views

Effective Strategies for Localization in .NET

I am developing the UI for a .NET MVC application that will require international localization of all content in the near future. I am very familiar with .NET in general but have never had a project ...
10
votes
4answers
833 views

How do you guys handle translation for software localization?

Most of the software I have written over my career has been built for English speaking customers, but recently I've been working on a project where localization of the UI for a wider range of ...
4
votes
4answers
591 views

Why don't compilers support non-English keywords? [closed]

When you read C, C#, Java, Python, PHP and many other programming languages all the syntax is written in English. Simple code like this if (X+1 > 4) { } while (A == true) { } Is written in ...