Use Yes and No for enabling and disabling addons
Incidentally this implicitly corrects the Clear History dialog which used to display Enable and Disable buttons.
This commit is contained in:
parent
d1b64e6d48
commit
e4540ff586
3 changed files with 4 additions and 6 deletions
|
@ -72,8 +72,6 @@ stock_items_init (void)
|
||||||
{ STOCK_BOOKMARKS, N_("_Bookmarks"), 0, 0, GTK_STOCK_DIRECTORY },
|
{ STOCK_BOOKMARKS, N_("_Bookmarks"), 0, 0, GTK_STOCK_DIRECTORY },
|
||||||
{ STOCK_BOOKMARK_ADD, N_("_Add Bookmark"), 0, 0, GTK_STOCK_ADD },
|
{ STOCK_BOOKMARK_ADD, N_("_Add Bookmark"), 0, 0, GTK_STOCK_ADD },
|
||||||
{ STOCK_CONSOLE, N_("_Console"), 0, 0, GTK_STOCK_DIALOG_WARNING },
|
{ STOCK_CONSOLE, N_("_Console"), 0, 0, GTK_STOCK_DIALOG_WARNING },
|
||||||
{ STOCK_DISABLE, N_("_Disable"), 0, 0, GTK_STOCK_NO },
|
|
||||||
{ STOCK_ENABLE, N_("_Enable"), 0, 0, GTK_STOCK_YES },
|
|
||||||
{ STOCK_EXTENSIONS, N_("_Extensions"), 0, 0, GTK_STOCK_CONVERT },
|
{ STOCK_EXTENSIONS, N_("_Extensions"), 0, 0, GTK_STOCK_CONVERT },
|
||||||
{ STOCK_HISTORY, N_("_History"), 0, 0, GTK_STOCK_SORT_ASCENDING },
|
{ STOCK_HISTORY, N_("_History"), 0, 0, GTK_STOCK_SORT_ASCENDING },
|
||||||
{ STOCK_HOMEPAGE, N_("_Homepage"), 0, 0, GTK_STOCK_HOME },
|
{ STOCK_HOMEPAGE, N_("_Homepage"), 0, 0, GTK_STOCK_HOME },
|
||||||
|
|
|
@ -1039,7 +1039,8 @@ midori_addons_get_toolbar (MidoriAddons* addons)
|
||||||
gtk_widget_show (GTK_WIDGET (toolitem));
|
gtk_widget_show (GTK_WIDGET (toolitem));
|
||||||
|
|
||||||
/* enable button */
|
/* enable button */
|
||||||
toolitem = gtk_tool_button_new_from_stock (STOCK_ENABLE);
|
toolitem = gtk_tool_button_new_from_stock (GTK_STOCK_YES);
|
||||||
|
gtk_tool_button_set_label (GTK_TOOL_BUTTON (toolitem), _("_Enable"));
|
||||||
g_signal_connect (toolitem, "clicked",
|
g_signal_connect (toolitem, "clicked",
|
||||||
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
|
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
|
||||||
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
|
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
|
||||||
|
@ -1047,7 +1048,8 @@ midori_addons_get_toolbar (MidoriAddons* addons)
|
||||||
gtk_widget_show (GTK_WIDGET (toolitem));
|
gtk_widget_show (GTK_WIDGET (toolitem));
|
||||||
|
|
||||||
/* disable button */
|
/* disable button */
|
||||||
toolitem = gtk_tool_button_new_from_stock (STOCK_DISABLE);
|
toolitem = gtk_tool_button_new_from_stock (GTK_STOCK_NO);
|
||||||
|
gtk_tool_button_set_label (GTK_TOOL_BUTTON (toolitem), _("_Disable"));
|
||||||
g_signal_connect (toolitem, "clicked",
|
g_signal_connect (toolitem, "clicked",
|
||||||
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
|
G_CALLBACK (midori_addons_button_status_clicked_cb), addons);
|
||||||
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
|
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
#define STOCK_BOOKMARK "stock_bookmark"
|
#define STOCK_BOOKMARK "stock_bookmark"
|
||||||
#define STOCK_BOOKMARKS "vcard"
|
#define STOCK_BOOKMARKS "vcard"
|
||||||
#define STOCK_CONSOLE "terminal"
|
#define STOCK_CONSOLE "terminal"
|
||||||
#define STOCK_DISABLE GTK_STOCK_NO
|
|
||||||
#define STOCK_ENABLE GTK_STOCK_YES
|
|
||||||
#define STOCK_EXTENSION "extension"
|
#define STOCK_EXTENSION "extension"
|
||||||
#define STOCK_EXTENSIONS "extension"
|
#define STOCK_EXTENSIONS "extension"
|
||||||
#define STOCK_HISTORY "document-open-recent"
|
#define STOCK_HISTORY "document-open-recent"
|
||||||
|
|
Loading…
Reference in a new issue