comparison src/gtksavedstatuses.c @ 11832:9ca386c15ffe

[gaim-migrate @ 14123] Change the text and icon of the saved status "Apply" button to read "Use" and display the gtk stock execute icon committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 26 Oct 2005 04:53:36 +0000
parents 924c6ba240e6
children 7d2d926704aa
comparison
equal deleted inserted replaced
11831:386ec55b6a15 11832:9ca386c15ffe
472 gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, TRUE, 0); 472 gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, TRUE, 0);
473 gtk_widget_show(bbox); 473 gtk_widget_show(bbox);
474 474
475 /* Use button */ 475 /* Use button */
476 /* TODO: It might be better if the button said "Use" or "Activate" */ 476 /* TODO: It might be better if the button said "Use" or "Activate" */
477 button = gtk_button_new_from_stock(GTK_STOCK_APPLY); 477 button = gaim_pixbuf_button_from_stock(_("_Use"), GTK_STOCK_EXECUTE,
478 GAIM_BUTTON_HORIZONTAL);
478 dialog->use_button = button; 479 dialog->use_button = button;
479 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); 480 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
480 gtk_widget_set_sensitive(button, FALSE); 481 gtk_widget_set_sensitive(button, FALSE);
481 gtk_widget_show(button); 482 gtk_widget_show(button);
482 483