After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 331760 - Don't translate month names
Don't translate month names
Status: RESOLVED FIXED
Product: gnome-utils
Classification: Deprecated
Component: logview
2.13.x
Other Linux
: Normal normal
: ---
Assigned To: gnome-utils Maintainers
gnome-utils Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-02-19 11:29 UTC by Benoît Dejean
Modified: 2008-12-23 15:20 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Benoît Dejean 2006-02-19 11:29:12 UTC
/* Translators: Only date format, time will be bogus */
   if (g_date_strftime (buf, sizeof (buf), _("%x"), date) == 0) {
       int m = g_date_get_month (date);
       int d = g_date_get_day (date);
       /* If we fail just use the US format */
       utf8 = g_strdup_printf ("%s %d", _(month[(int) m-1]), d);
   } else
       utf8 = locale_to_utf8 (buf);

If g_date_strftime fails, it fails. Please don't ask us to translate month names again and again. Instead display a comprehensive error message.
Comment 1 Benoît Dejean 2006-04-19 18:54:29 UTC
ping
Comment 2 Benoît Dejean 2006-11-09 09:43:11 UTC
any news on this bug ?
Comment 3 Cosimo Cecchi 2008-12-23 15:20:34 UTC
Fixed in trunk.