GNOME Bugzilla – Bug 593718
gettext does not support embedded macros
Last modified: 2009-10-05 16:22:51 UTC
In src/gdu-gtk/gdu-ata-smart-dialog.c, the G_GUINT64_FORMAT macro is embedded inside a gettext call: ret = g_strdup_printf (_("%" G_GUINT64_FORMAT " msec"), pretty_value); This is not supported. xgettext only extracts the "%". You should first convert pretty_value as a string, then include it in g_strdup_printf with a %s.
Created attachment 143490 [details] [review] Remove macro from translatable string