Why is it that even the StackOverflow programmers don't take an extra 2 minutes and write a function so that the user sees:
- 1 time
- 2 times
- 3 times
- etc.
something like:
string message = StringHelpers.SmartPlural(numberOfTimes, "time", "times");
It seems I often see high-profile websites that inform me that I have "1 books" in my list or "1 unread e-mails".
I can understand why e.g. the programmers of Visicalc back in the 80s did this so they could save space to fit their entire application into 26K or however big it was, but since today this is such a "solvable million-views-per-month grammar error", how does it keep passing through QA on so many websites?
