GNOME Bugzilla – Bug 602707
Strings in email list "Date" column are missing ngettext / correct plural forms
Last modified: 2010-04-06 19:20:14 UTC
Code in /e-util/e-datetime-format.c: if (future) res = g_strdup_printf (_("%d days from now"), diff); else res = g_strdup_printf (_("%d days ago"), diff); Both strings are missing proper ngettext support and this is highly visible here. Please note that fixing this is an addition of new strings.
Ha, Andre filled a duplicate. The end of the world happens. Note that the diff is always greater than 1, but I agree that some languages has differences for those as well. *** This bug has been marked as a duplicate of bug 591939 ***
(In reply to comment #1) > Note that the diff is always greater than 1 Does not matter for languages using singular form for 1, 11, 21, 31, ... ;-)