42
votes
3answers
2k views

Do American users also confuse the day and the month in dates like 01/02/2013

Almost everywhere outside the United States, when short dates, e.g. 01/02/2013, are shown on computer screens, the user can't be sure whether the first two digits represent the day or the month. Is it ...
5
votes
1answer
80 views

Formatting “days” in a timespan

When formatting timespans in short form for something like a stopwatch, I know the standard in most places is to use hh:mm:ss.ff (where "f" is "fractional second"). Some places will use mm' ss" ff, ...
2
votes
1answer
87 views

Globalization Patterns for Dates Without Year

In my application, there is a field that represents the end of the accounting year for an entity. This "date" is the same every year, so what we currently present to the user is field with a month ...
9
votes
2answers
269 views

Formatting relative dates and times

First, when I talk about relative times (or would dates be more accurate?), I mean these 4 minutes ago, 1 hour ago, etc. When should they be used? With what degree of precision? Shouldn't it be the ...
9
votes
9answers
733 views

friendly version of date formats

The users of my application have the ability to choose their prefered date format between: dd/mm/yyyy mm/dd/yyyy yyyy-mm-dd The 1st one (which has the Java pattern dd/MM/yyyy) produces 31/12/2011. ...