plug-ins: change gimpressionist button labels to Delete...
in the Orientation and Size map dialogs.
They were named Kill which seems less appropriate.
(cherry picked from commit 8a8dab66cc)
This commit is contained in:
parent
24babddb9f
commit
f882567eb7
2 changed files with 2 additions and 2 deletions
|
|
@ -620,7 +620,7 @@ create_orientmap_dialog (GtkWidget *parent)
|
|||
g_signal_connect (tmpw, "clicked", G_CALLBACK (add_click_callback), NULL);
|
||||
gimp_help_set_help_data (tmpw, _("Add new vector"), NULL);
|
||||
|
||||
kill_button = tmpw = gtk_button_new_with_mnemonic ( _("_Kill"));
|
||||
kill_button = tmpw = gtk_button_new_with_mnemonic ( _("_Delete"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), tmpw, FALSE, TRUE, 0);
|
||||
gtk_widget_show (tmpw);
|
||||
g_signal_connect (tmpw, "clicked", G_CALLBACK (delete_click_callback), NULL);
|
||||
|
|
|
|||
|
|
@ -492,7 +492,7 @@ create_sizemap_dialog (GtkWidget *parent)
|
|||
G_CALLBACK (smaddclick), NULL);
|
||||
gimp_help_set_help_data (tmpw, _("Add new smvector"), NULL);
|
||||
|
||||
kill_button = tmpw = gtk_button_new_with_mnemonic (_("_Kill"));
|
||||
kill_button = tmpw = gtk_button_new_with_mnemonic (_("_Delete"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox),tmpw,FALSE,TRUE,0);
|
||||
gtk_widget_show (tmpw);
|
||||
g_signal_connect (tmpw, "clicked",
|
||||
|
|
|
|||
Loading…
Reference in a new issue