comparison src/gtkimhtmltoolbar.c @ 13538:60de8d24831d

[gaim-migrate @ 15915] Change "Clear formatting" to "Reset formatting". This is more clear (no pun intended), and helps to remove ambiguity with the "Clear scrollback" option in the Conversation menu. I've also noted the mnemonic on this entry in the right-click menu in conversations. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 21 Mar 2006 01:15:50 +0000
parents 12643ca39d59
children 8bda65b88e49
comparison
equal deleted inserted replaced
13537:207f974ca030 13538:60de8d24831d
1020 1020
1021 /* Sep */ 1021 /* Sep */
1022 sep = gtk_vseparator_new(); 1022 sep = gtk_vseparator_new();
1023 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0); 1023 gtk_box_pack_start(GTK_BOX(hbox), sep, FALSE, FALSE, 0);
1024 1024
1025 /* Clear Formatting */ 1025 /* Reset Formatting */
1026 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_CLEAR); 1026 button = gaim_pixbuf_toolbar_button_from_stock(GAIM_STOCK_CLEAR);
1027 gtk_size_group_add_widget(sg, button); 1027 gtk_size_group_add_widget(sg, button);
1028 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); 1028 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1029 gtk_tooltips_set_tip(toolbar->tooltips, button, 1029 gtk_tooltips_set_tip(toolbar->tooltips, button,
1030 _("Clear formatting"), NULL); 1030 _("Reset formatting"), NULL);
1031 1031
1032 g_signal_connect(G_OBJECT(button), "clicked", 1032 g_signal_connect(G_OBJECT(button), "clicked",
1033 G_CALLBACK(clear_formatting_cb), toolbar); 1033 G_CALLBACK(clear_formatting_cb), toolbar);
1034 1034
1035 toolbar->clear = button; 1035 toolbar->clear = button;