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 resources for learning how to write a world ready application.
|
4
|
|
|
|
|
|
A couple of things that I've learned:
|
|||
|
|
|
|
Learn about the System.Globalization namespace: Also, a good book is NET Internationalization: The Developer's Guide to Building Global Windows and Web Applications |
||
|
|
|
|
Would be good to refresh a bit on Unicodes if you are targeting other cultures,languages. |
||
|
|
|
|
Make sure you're compiling with Code Analysis turned on, and pay attention to the Globalization warnings that it gives you. Keep data in an invariant format (CultureInfo.InvariantCulture) until you display it to the user (then use CultureInfo.CurrentCulture). |
||
|
|
|
|
I would seriously consider reading the following code project article: Globalization and localization demystified in ASP.NET 2.0 It covers everything from Cultures and Locales, setting the threads current culture, resource files, encodings, you name it! And of course it's loaded with pretty pictures and examples :-). Good luck! |
||
|
|
|
|
I would suggest:
|
||
|
|
|
|
This is a hard problem. I live in Canada, so multilingualism is a big issue. In all my years of doing software development, I've never seen a solution that I liked. I've seen a lot of solutions that worked, and got the job done, but they've always felt like a big kludge. I would go with @harriyott, and make sure that none of your strings are actually in code. A resource file works well for desktop applications. However in ASP.Net, I'd recommend using the database. @John Christensen also has some good pointers. |
||
|
|
|
|
a foreign language? |
||
|
|
