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 516083 - Gtk+ should not use gettext
Gtk+ should not use gettext
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
unspecified
Other Linux
: Normal trivial
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2008-02-12 19:08 UTC by Behdad Esfahbod
Modified: 2008-02-16 03:23 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Behdad Esfahbod 2008-02-12 19:08:04 UTC
In two places in gtkprint code I see bare gettext() being used instead of dgettext().  Looks plain wrong to me:

In gtkprintoperation.c:

  if (string == NULL)
    string = g_strip_context (status_strs[status],
                              gettext (status_strs[status]));

In gtkpapersize.c:

  return g_strip_context (display_name, gettext (display_name));
Comment 1 Matthias Clasen 2008-02-12 21:37:03 UTC
You are right. 
Can you fix that ?