Localization, also known as 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 (3)

56
votes
6answers
12k views

Which is generally best to use — StringComparison.OrdinalIgnoreCase or StringComparison.InvariantCultureIgnoreCase?

If I have some code like this: If key.Equals("search", StringComparison.OrdinalIgnoreCase) Then ' ... do something ... I don't care about the case, should I use OrdinalIgnoreCase, ...
49
votes
8answers
8k views

Localization and internationalization, what's the difference?

I was going to ask a question about preparing a desktop application to support multiple languages on the UI. In my search for existing questions on the topic I was thinking the word ...
31
votes
2answers
14k 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: ...
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 { ...
14
votes
3answers
12k views

Changing language on the fly, in running iOS, iphone app

I've been stackling and googling for hours. And I'm kind of desperate now. I would like to change the language of my application inside the app not only with the default language. From what I've ...
16
votes
4answers
5k views

ASP.NET MVC - Localization route

i'd like to create localized URL's for my site. They should obviously point to the same controller actions, but I want the first routevalues to -always- be the location/language specification. Is this ...
5
votes
3answers
4k views

Best practices for ASP.NET web application localization [closed]

I'm developing a web application that will need to be localized to English and Portuguese (and possible more languages later). I'm aware that the .NET Framework offers full support for UI ...
17
votes
5answers
5k views

Proper localization of a WinForms application

I have a WinForms application which I want to translate into multiple languages. However, I do not have any experience with localizing a WinForms app, and I find very contradictory information about ...
14
votes
5answers
6k views

How do you localize a database driven website

I've been playing with the .NET built in localization features and they seem to all rely on putting data in resx files. But most systems can't rely on this because they are database driven. So how ...
12
votes
2answers
785 views

How to use enable pseudo-locale in Windows for testing?

Windows Vista introduced the concept of three pseudo-locales: Pseudo Locale Locale Name LCID =================== =========== ====== Base qps-ploc 0x0501 ...
10
votes
7answers
2k 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 ...
1
vote
2answers
11k views

Codeigniter language

I wanna make a multilanguage website, but I do not want that the language appear in URI like example.com/fr/about (I do not want this). I just want to change the text language. My problem is that the ...
12
votes
4answers
2k views

How to have userfriendly names for enumerations?

I have an enumeration like Enum Complexity { NotSoComplex, LittleComplex, Complex, VeryComplex } And I want to use it in a dropdown list, but don't want to see such Camel names in list ...
6
votes
4answers
13k views

multilanguage app: best way? [closed]

Which is the best way to have a multilanguage app? Should I create a set of strings written in my language and then use an google api that translates online on-the-fly? Any code example? And, how to ...
4
votes
2answers
3k views

Globally localize validation

I'm using System.ComponeneModel.DataAnnotations attributes such as Required and StringLength. Is it possible to localize its error messages globally? I know I can do this ...
14
votes
1answer
2k views

Is there any way to determine text direction from CultureInfo in asp.net?

I have looked around, but I have been unable to figure this out, some languages are read and written from right to left, instead of left to right. It seems like a no-brainer to be able to get the ...
13
votes
3answers
4k views

Are resx files suitable for Internationalization?

I have been given the task of internationalizing a large client-server application. The remit is that I make the app 'World Ready' and then the compiled application and resources gets passed over to ...
9
votes
3answers
3k views

Selecting message language in gcc and g++

I feel dumb asking this, but here it goes. I use gcc/g++ on Linux and since my install is in spanish (my native language), gcc prints warnings and errors in spanish. I rather read them in english for ...
7
votes
3answers
2k views

ASP.NET mvc, localized routes and the default language for the user

I am using asp.net mvc localized routes. So when a user goes to the english site it is site.com/en/Controller/Action and the swedish is site.com/sv/Controller/Action. But how do I make sure that ...
10
votes
3answers
13k views

how do I set the default locale for my JVM?

I want to set the default Locale for my JVM to fr_CA. What are the possible options to do this? I know of only one option Locale.setDefault()
6
votes
1answer
3k views

Java string searching ignoring accents

I am trying to write a filter function for my application that will take an input string and filter out all objects that don't match the given input in some way. The easiest way to do this would be ...
2
votes
2answers
3k views

WPF XAML Bindings and CurrentCulture Display

I'm seeing some invalid behavior from XAML documents when the CurrentCulture is changed. When I have some elements like this in a Window: <Window x:Class="WpfLocalizationLocBaml.Test" ...
4
votes
2answers
2k views

How do I change the culture of a WinForms application at runtime

I have created Windows Form Program in C#. I have some problems with localization. I have resource files in 2 languages(one is for english and another is for french). I want to click each language ...
4
votes
2answers
1k views

ASP.NET MVC Model Binder with Global Number Formats

The default model binder is returning errors for properties that are of type double when my application is being used in countries that use different number formatting for decimals (e.g. 1.2 = 1,2). ...
1
vote
3answers
892 views

CyanogenMod: Translate a Project

I have translated a project in CyanogenMod (the Email app) to Hebrew by adding a values-he folder, and compiled the entire repository (make). I have made sure that the full languages make file ...
0
votes
1answer
1k views

How to change iOS device keyboard to specific language

In iOS, the developer can get the current device language and locale. However, what if we want to set the keyboard to a specific language/locale, based on the users' preferences, when they are in ...
35
votes
12answers
3k views

Internationalization in your projects

How have you implement Internationalization (18n) in actual projects you've worked on? I took an interest in making software cross-cultural after I read the famous post by Joel, The Absolute Minimum ...
19
votes
8answers
10k views

Localizing enum descriptions attributes

What is the best way to localize enumeration descriptions in .net? (See Adding descriptions to enumeration constants for enum description example) Ideally I would like something that uses ...
24
votes
2answers
13k views

What is the correct way to set Python's locale?

I'm attempting to sort a list of strings in a locale-aware manner. I've used the Babel library for other i18n-related tasks, but it doesn't support sorting. Python's locale module provides a strcoll ...
17
votes
7answers
4k views

Best way to design for localization of strings

This is kinda a general question, open for opinions. I've been trying to come up with a good way to design for localization of string resources for a Windows MFC application and related utilities. My ...
16
votes
6answers
12k views

ASP.NET MVC localization best practice?

I need help with the best practice to localize asp mvc apps, I saw Oxite having a base method named Localize in the BaseController, but is the Localization a task for the view or the Controller? Or ...
12
votes
5answers
5k views

List of All Countries in any Language? [duplicate]

Possible Duplicate: Where can I get a list of all countries/cities to populate a listbox? I've got a bit of a dilemma where I need a list of all the country names in German. I can get this ...
10
votes
10answers
4k views

Best-practices for localizing a SQL Server (2005/2008) database

Question I'm sure many of you have been faced by the challenge of localizing a database backend to an application. If you've not then I'd be pretty confident in saying that the odds of you having to ...
4
votes
2answers
890 views

Can .strings resource files be added at runtime?

I know that in Mac apps one can add .strings files to the project folder to add localizations. Is there any way that additional localizations can be added to an app (iOS or Mac OS) without loading ...
32
votes
3answers
20k views

Jquery datepicker localization

I need a french calendar and I can't understand the problem. I guess i'm not using the regional options like it should be. But... Here is my code : $(function() { $('#Date').datepicker({ ...
19
votes
2answers
12k views

MS VS 2010: change language settings from de to en

recently i have installed MS Visual Studio 2010 Professional as an upgrade from 2005. I wanted to use the english version but after installation it's german(2005 was english if that matters). I ...
16
votes
11answers
3k views

Any collaborative tool/website to localize an Android app?

My open source Android application has internationalization done the Android way, with strings.xml files. The community has many people from many countries, and they are willing to contribute/improve ...
15
votes
2answers
5k views

Providing localized error messages for non-attributed model validation in ASP.Net MVC 2?

I'm using the DataAnnotations attributes along with ASP.Net MVC 2 to provide model validation for my ViewModels: public class ExamplePersonViewModel { [Required(ErrorMessageResourceName = ...
16
votes
5answers
2k views

Conversion from Simplified to Traditional Chinese

If a website is localized/internationalized with a Simplified Chinese translation... Is it possible to reliably automatically convert the text to Traditional Chinese in a high quality way? If so, is ...
16
votes
11answers
7k views

Managing the localization of Java properties files

I have a Web application written in Java that is targeting several countries, all of which speak different languages (and more often than not, several languages -- that's Europe for you). We have a ...
13
votes
3answers
9k views

How simplify iPhone localization?

I need to localiza a in development app for English & Spanish. Despite the fact I follow the Apple way of use NSLocalizedString & create nibs for both, I already lost the track of the new ...
14
votes
7answers
14k views

How do I convert a String to Double in Java using a specific locale?

I want to convert some numbers which I got as strings into Doubles, but these numbers are not in US standard locale, but in a different one. How can I do that?
16
votes
11answers
2k views

Which programming languages were designed with Unicode support from the beginning?

Which widely used programming languages were designed ground-up with Unicode support? A lot of programming languages have added Unicode support as an afterthought in later versions, but which widely ...
16
votes
1answer
6k views

jQuery UI Dialog Buttons from variables

I have variables holding the translated labels for buttons inside a jquery ui dialog. I cannot fill the button array key with the variable itself, and can't find any way to let it treat my variable ...
13
votes
9answers
4k views

Android: Get missing translations for strings-resources

In Android, you can specify the texts in the default locale in res/values/strings.xml. Additional translations can be added for new languages in res/values-it/strings.xml (for Italian for example). If ...
8
votes
2answers
3k views

overide default pluralize for model-name in rails3

my locale is :de and I like to get this: Sheet.model_name.human.pluralize # => Belegs to add me a trailing "e" instead of "s" Sheet.model_name.human.pluralize # => Belege just for the ...
6
votes
2answers
13k views

Getting localized message from resourceBundle via annotations in Spring Framework

Is it possible to do this ? Currently it is done like this : <bean id="resource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> ...
5
votes
3answers
2k views

Localized country names

Where can I get the country names in all languages? I need these to localize an application.
5
votes
2answers
1k views

Detect whether iPhone is displaying time in 12-Hour or 24-Hour Mode?

How can you detect whether iPhone is displaying time in 12-Hour or 24-Hour Mode? I currently monitor the current region for changes, however that's not the only setting that affects how times are ...
9
votes
4answers
911 views

.resx vs database vs custom solution for providing Localization/Globalization

At my office, we have had a long-standing debate about Localization/Globalization and how to handle it. One side pushes for the Resource (.resx) file route built in to ASP.NET, one side pushes for a ...

1 2 3 4 5 15