Index: src/xfce-appfinder-window.c =================================================================== --- src/xfce-appfinder-window.c (révision 30220) +++ src/xfce-appfinder-window.c (copie de travail) @@ -264,6 +264,7 @@ GtkWidget *label; GtkWidget *alignment; GtkWidget *scrollwin; + GtkWidget *execute_image; gchar *text; gint width; gint height; @@ -387,7 +388,7 @@ gtk_box_pack_start (GTK_BOX (vbox2), hbox2, FALSE, TRUE, 0); gtk_widget_show (hbox2); - check_button = gtk_check_button_new_with_mnemonic (_("C_lose after execute")); + check_button = gtk_check_button_new_with_mnemonic (_("C_lose after launch")); gtk_box_pack_start (GTK_BOX (hbox2), check_button, FALSE, TRUE, 0); gtk_widget_show (check_button); @@ -400,7 +401,9 @@ gtk_container_add (GTK_CONTAINER (hbox2), bbox); gtk_widget_show (bbox); - window->execute_button = gtk_button_new_from_stock (GTK_STOCK_EXECUTE); + window->execute_button = gtk_button_new_with_mnemonic (_("Launch")); + execute_image = gtk_image_new_from_stock (GTK_STOCK_EXECUTE, GTK_ICON_SIZE_BUTTON); + gtk_button_set_image (GTK_BUTTON (window->execute_button), execute_image); GTK_WIDGET_SET_FLAGS (window->execute_button, GTK_CAN_DEFAULT); gtk_button_set_focus_on_click (GTK_BUTTON (window->execute_button), FALSE); gtk_widget_set_sensitive (window->execute_button, FALSE);