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 104541 - not marked for translation strings
not marked for translation strings
Status: RESOLVED FIXED
Product: gnome-utils
Classification: Deprecated
Component: logview
2.2.x
Other All
: Normal normal
: ---
Assigned To: gnome-utils Maintainers
gnome-utils Maintainers
Depends on:
Blocks:
 
 
Reported: 2003-01-27 18:15 UTC by Maxim Dziumanenko
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.3/2.4



Description Maxim Dziumanenko 2003-01-27 18:15:07 UTC
in monitor.c in MonitorMenu function:
 button = gtk_dialog_add_button (GTK_DIALOG (monoptions),
                                     "Ac_tions", GTK_RESPONSE_NONE);
should be 
 button = gtk_dialog_add_button (GTK_DIALOG (monoptions),
                                     _("Ac_tions"), GTK_RESPONSE_NONE);

Also in logview.c in CreateMainWin() function:
 column = gtk_tree_view_column_new_with_attributes (column_titles[i],
                    renderer, "text", i, NULL);
should be 
 column = gtk_tree_view_column_new_with_attributes (_(column_titles[i]),
                    renderer, "text", i, NULL);
Comment 1 Glynn Foster 2003-02-11 12:29:32 UTC
fixed in gnome-2-2 and HEAD. thanks.