libgimp/gimpbrushmenu.c use "Browse..." instead of "..." (bug #120600).

2003-11-02  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpbrushmenu.c
	* libgimp/gimppatternmenu.c: use "Browse..." instead of "..."
	(bug #120600).
This commit is contained in:
Sven Neumann
2003-11-02 17:28:56 +00:00
committed by Sven Neumann
parent 1c35fcf208
commit 2e885de4e8
3 changed files with 51 additions and 45 deletions

View File

@ -1,3 +1,9 @@
2003-11-02 Sven Neumann <sven@gimp.org>
* libgimp/gimpbrushmenu.c
* libgimp/gimppatternmenu.c: use "Browse..." instead of "..."
(bug #120600).
2003-11-02 Sven Neumann <sven@gimp.org>
* plug-ins/common/png.c: handle gamma settings in PNG files using

View File

@ -158,7 +158,7 @@ gimp_brush_select_widget_new (const gchar *title,
G_CALLBACK (gimp_brush_select_preview_events),
brush_sel);
brush_sel->button = gtk_button_new_with_label (" ... ");
brush_sel->button = gtk_button_new_with_label (_("Browse..."));
gtk_box_pack_end (GTK_BOX (hbox), brush_sel->button, FALSE, FALSE, 0);
gtk_widget_show (brush_sel->button);

View File

@ -141,7 +141,7 @@ gimp_pattern_select_widget_new (const gchar *title,
G_CALLBACK (gimp_pattern_select_preview_events),
pattern_sel);
pattern_sel->button = gtk_button_new_with_label (" ... ");
pattern_sel->button = gtk_button_new_with_label (_("Browse... "));
gtk_box_pack_start (GTK_BOX (hbox), pattern_sel->button, FALSE, FALSE, 0);
gtk_widget_show (pattern_sel->button);