35
votes
11answers
3k views
How can I determine a web user’s time zone?
Is there a standard way for a web server to determine what time zone offset a user is in?
From an HTTP header or part of the user-agent description, perhaps?
33
votes
33answers
3k views
Coding in Other (Spoken) Languages
Something i've always wondered, and I can't find any mention of it anywhere online. When a shop from, say Japan, writes code, would I be able to read it in english? Or do languages, like C, php, …
20
votes
12answers
1k 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 …
13
votes
9answers
1k views
Best way to implement multi-language/globalization in large .NET project
I'll soon be working on a large c# project and would like to build in multi-language support from the start. I've had a play around and can get it working using a separate resource file for each …
12
votes
8answers
615 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 …
10
votes
6answers
296 views
How to have userfriendly names for enumerations?
Hi,
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 …
10
votes
12answers
2k views
String.Format for C++
Looking for an implementation for C++ of a function like .NET's String.Format. Obviously there is printf and it's varieties, but I'm looking for something that is positional as in:
…
10
votes
5answers
5k views
Best practice to make a multi language application in C#/WinForms?
I've been looking into making applications suitable for multiple languages in C# since I need to work on a small project where this is the case. I have found basically two ways to do this:
Set a …
9
votes
6answers
362 views
What is The Turkey Test?
I came across the word 'The Turkey Test' while learning about code testing. I don't know really what it means.
What is Turkey Test? Why is it called so?
9
votes
4answers
1k views
How to get the FxCop custom dictionary to work?
How is it possible to get the FxCop custom dictionary to work correctly?
I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop …
9
votes
7answers
1k 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 …
8
votes
9answers
344 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 …
8
votes
6answers
146 views
Appropriate article (a/an) in String.Format
I'm looking for a culturally-sensitive way to properly insert a noun into a sentence while using the appropriate article (a/an). It could use String.Format, or possibly something else if the …
7
votes
10answers
675 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 …
7
votes
10answers
448 views
What are the Top 5 Languages to localize an app for?
I'm wondering, based on experience (and raw population data) which are the 5 "best" localizations for an application (iPhone app in this case). Note by localization I don't only mean language, but …
