[Xfce4-commits] [xfce/xfce4-panel] 01/01: Add more accelerators to dialog buttons (Bug #15490)
noreply at xfce.org
noreply at xfce.org
Tue May 28 22:34:34 CEST 2019
This is an automated email from the git hooks/post-receive script.
o c h o s i 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 xfce/xfce4-panel.
commit 44d2d6badfeff9544bb1de7b2ad19af29a5a1113
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date: Tue May 28 22:34:18 2019 +0200
Add more accelerators to dialog buttons (Bug #15490)
---
libxfce4panel/xfce-panel-plugin.c | 4 ++--
panel/panel-dialogs.c | 4 ++--
panel/panel-plugin-external.c | 4 ++--
panel/panel-preferences-dialog.c | 6 +++---
plugins/launcher/launcher-dialog.c | 2 +-
plugins/launcher/launcher-dialog.glade | 4 ++--
6 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/libxfce4panel/xfce-panel-plugin.c b/libxfce4panel/xfce-panel-plugin.c
index aff2e15..4bb6c00 100644
--- a/libxfce4panel/xfce-panel-plugin.c
+++ b/libxfce4panel/xfce-panel-plugin.c
@@ -1081,8 +1081,8 @@ xfce_panel_plugin_menu_remove (XfcePanelPlugin *plugin)
gtk_widget_get_screen (GTK_WIDGET (plugin)));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
_("If you remove the item from the panel, it is permanently lost."));
- gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("Cancel"),
- GTK_RESPONSE_NO, _("Remove"), GTK_RESPONSE_YES, NULL);
+ gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("_Cancel"),
+ GTK_RESPONSE_NO, _("_Remove"), GTK_RESPONSE_YES, NULL);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_NO);
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_YES)
diff --git a/panel/panel-dialogs.c b/panel/panel-dialogs.c
index 7ae6d87..84dd27e 100644
--- a/panel/panel-dialogs.c
+++ b/panel/panel-dialogs.c
@@ -160,8 +160,8 @@ panel_dialogs_choose_panel (PanelApplication *application)
/* setup the dialog */
dialog = gtk_dialog_new_with_buttons (_("Add New Item"), NULL,
0,
- _("Cancel"), GTK_RESPONSE_CANCEL,
- _("Add"), GTK_RESPONSE_OK, NULL);
+ _("_Cancel"), GTK_RESPONSE_CANCEL,
+ _("_Add"), GTK_RESPONSE_OK, NULL);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
gtk_window_set_icon_name (GTK_WINDOW (dialog), "list-add");
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
diff --git a/panel/panel-plugin-external.c b/panel/panel-plugin-external.c
index 7f33218..d0d4d69 100644
--- a/panel/panel-plugin-external.c
+++ b/panel/panel-plugin-external.c
@@ -437,8 +437,8 @@ panel_plugin_external_child_ask_restart_dialog (GtkWindow *parent,
"the last %d seconds. If you press Execute the panel will try to restart "
"the plugin otherwise it will be permanently removed from the panel."),
PANEL_PLUGIN_AUTO_RESTART);
- gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("Execute"), GTK_RESPONSE_OK,
- _("Remove"), GTK_RESPONSE_CLOSE, NULL);
+ gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("_Execute"), GTK_RESPONSE_OK,
+ _("_Remove"), GTK_RESPONSE_CLOSE, NULL);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
diff --git a/panel/panel-preferences-dialog.c b/panel/panel-preferences-dialog.c
index 456a536..6716c65 100644
--- a/panel/panel-preferences-dialog.c
+++ b/panel/panel-preferences-dialog.c
@@ -953,7 +953,7 @@ panel_preferences_dialog_panel_remove (GtkWidget *widget,
return;
toplevel = gtk_widget_get_toplevel (widget);
- if (xfce_dialog_confirm (GTK_WINDOW (toplevel), "list-remove", _("Remove"),
+ if (xfce_dialog_confirm (GTK_WINDOW (toplevel), "list-remove", _("_Remove"),
_("The panel and plugin configurations will be permanently removed"),
_("Are you sure you want to remove panel %d?"),
panel_window_get_id (dialog->active)))
@@ -1310,8 +1310,8 @@ panel_preferences_dialog_item_remove (GtkWidget *button,
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (widget),
_("If you remove the item from the panel, "
"it is permanently lost."));
- gtk_dialog_add_buttons (GTK_DIALOG (widget), _("Cancel"), GTK_RESPONSE_NO,
- _("Remove"), GTK_RESPONSE_YES, NULL);
+ gtk_dialog_add_buttons (GTK_DIALOG (widget), _("_Cancel"), GTK_RESPONSE_NO,
+ _("_Remove"), GTK_RESPONSE_YES, NULL);
gtk_dialog_set_default_response (GTK_DIALOG (widget), GTK_RESPONSE_NO);
/* run the dialog */
diff --git a/plugins/launcher/launcher-dialog.c b/plugins/launcher/launcher-dialog.c
index 39588ea..b009cff 100644
--- a/plugins/launcher/launcher-dialog.c
+++ b/plugins/launcher/launcher-dialog.c
@@ -852,7 +852,7 @@ launcher_dialog_item_button_clicked (GtkWidget *button,
/* ask the user */
toplevel = gtk_widget_get_toplevel (button);
- if (xfce_dialog_confirm (GTK_WINDOW (toplevel), "edit-delete", _("Remove"),
+ if (xfce_dialog_confirm (GTK_WINDOW (toplevel), "edit-delete", _("_Remove"),
_("If you delete an item, it will be permanently removed"),
_("Are you sure you want to remove \"%s\"?"),
panel_str_is_empty (display_name) ? _("Unnamed item") : display_name))
diff --git a/plugins/launcher/launcher-dialog.glade b/plugins/launcher/launcher-dialog.glade
index 558e93e..83bb748 100644
--- a/plugins/launcher/launcher-dialog.glade
+++ b/plugins/launcher/launcher-dialog.glade
@@ -414,7 +414,7 @@
</child>
<child>
<object class="GtkButton" id="button2">
- <property name="label" translatable="yes">Close</property>
+ <property name="label" translatable="yes">_Close</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
@@ -439,8 +439,8 @@
<object class="GtkNotebook" id="notebook2">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="border_width">6</property>
<property name="vexpand">True</property>
+ <property name="border_width">6</property>
<child>
<object class="GtkBox" id="hbox1">
<property name="visible">True</property>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list