vote up 5 vote down star

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?

flag

3  
Often you find this with lazy programmers, but sometimes you find things like "time(s)". The reason for that is because not all languages pluralize like English and it's to help localization. A good resource on intricacies of this is gnu.org/software/gettext/… – Jeff Moser Apr 30 at 13:15
I understand your question seeing all those spelling and grammatical errors – Sergio Apr 30 at 13:23

closed as subjective and argumentative by John Nolan, Patrick McElhaney, cletus, Jon B, Russ Cam Apr 30 at 13:10

4 Answers

vote up 3 vote down check

Because these particular programmers are lazy

however I often do it with.

int i = 5;
return string.format("{0} Book{1}", i, i!=1 ? "s" : "");
link|flag
vote up 0 vote down

I do.

(Hmm... is there a minimum answer length? I couldn't post "I do." on its own.)

link|flag
vote up 0 vote down

I can just say - Nice question. Have observed it, but was not sure if I can post it here or not :)

link|flag
If your post is just to say "Nice Question" the proper way to do that is to vote up the question...not provide a non-answer. – Beska Apr 30 at 13:27
Hmm. I already did . . . Before posting my "non-answer". – Kirtan Apr 30 at 13:38
vote up 5 vote down

Because it wasnt in the spec :)

Edit: and laziness

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.