[Xfce4-commits] [thunar-plugins/thunar-media-tags-plugin] 02/04: Get rid of stock items
noreply at xfce.org
noreply at xfce.org
Wed Feb 14 21:06:12 CET 2018
This is an automated email from the git hooks/post-receive script.
a n d r e p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository thunar-plugins/thunar-media-tags-plugin.
commit f3d8b66200123ff08c0fa1a84e7657cd7b66a133
Author: Andre Miranda <andreldm at xfce.org>
Date: Wed Feb 14 16:46:04 2018 -0300
Get rid of stock items
---
thunar-plugin/audio-tags-page.c | 15 +++++++--------
thunar-plugin/tag-renamer.c | 2 +-
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/thunar-plugin/audio-tags-page.c b/thunar-plugin/audio-tags-page.c
index 5f1796d..7f4f8cf 100644
--- a/thunar-plugin/audio-tags-page.c
+++ b/thunar-plugin/audio-tags-page.c
@@ -564,7 +564,7 @@ audio_tags_page_dialog_new (GtkWindow *window,
dialog = gtk_dialog_new_with_buttons (_("Edit Tags"),
window,
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_STOCK_CANCEL,
+ _("_Cancel"),
GTK_RESPONSE_CANCEL,
NULL);
@@ -575,15 +575,12 @@ audio_tags_page_dialog_new (GtkWindow *window,
gtk_widget_show (GTK_WIDGET (page));
/* Create save button */
- button = gtk_button_new_from_stock (GTK_STOCK_SAVE);
+ button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Save"), GTK_RESPONSE_OK);
/* Connect save button to the "save" action */
action = gtk_action_group_get_action (page->action_group, "save");
gtk_activatable_set_related_action (GTK_ACTIVATABLE (button), action);
- /* Add save button to the dialog */
- gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_OK);
-
return dialog;
}
@@ -985,7 +982,7 @@ audio_tags_page_info_activate (GtkAction *action,
dialog = gtk_dialog_new_with_buttons (_("Audio Information"),
window,
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_STOCK_CLOSE,
+ _("_Close"),
GTK_RESPONSE_CLOSE,
NULL);
@@ -1198,7 +1195,8 @@ audio_tags_page_set_show_save_button (AudioTagsPage *page,
return;
/* Info button */
- page->info_button = gtk_button_new_from_stock (GTK_STOCK_PROPERTIES);
+ page->info_button = gtk_button_new_with_mnemonic (_("_Information"));
+ gtk_widget_set_tooltip_text (page->info_button, _("Display more detailed information about this audio file."));
gtk_grid_attach (GTK_GRID (page->grid), page->info_button, 2, 6, 1, 1);
gtk_widget_show (page->info_button);
@@ -1207,7 +1205,8 @@ audio_tags_page_set_show_save_button (AudioTagsPage *page,
gtk_activatable_set_related_action (GTK_ACTIVATABLE (page->info_button), action);
/* Save button */
- page->save_button = gtk_button_new_from_stock (GTK_STOCK_SAVE);
+ page->save_button = gtk_button_new_with_mnemonic (_("_Save"));
+ gtk_widget_set_tooltip_text (page->save_button, _("Save audio tags."));
gtk_grid_attach (GTK_GRID (page->grid), page->save_button, 3, 6, 1, 1);
gtk_widget_show (page->save_button);
diff --git a/thunar-plugin/tag-renamer.c b/thunar-plugin/tag-renamer.c
index 29db608..9ecc023 100644
--- a/thunar-plugin/tag-renamer.c
+++ b/thunar-plugin/tag-renamer.c
@@ -257,7 +257,7 @@ tag_renamer_init (TagRenamer *tag_renamer)
g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (tag_renamer_help_clicked), NULL);
gtk_widget_show (button);
- image = gtk_image_new_from_stock (GTK_STOCK_INFO, GTK_ICON_SIZE_MENU);
+ image = gtk_image_new_from_icon_name ("dialog-information", GTK_ICON_SIZE_MENU);
gtk_container_add (GTK_CONTAINER (button), image);
gtk_widget_show (image);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list