diff options
author | lukefromdc <[email protected]> | 2020-07-24 15:43:31 +0000 |
---|---|---|
committer | rbuj <[email protected]> | 2020-07-24 17:44:47 +0200 |
commit | 36a7df77115e7a300f082cc9537af96885da0996 (patch) | |
tree | 2b035684b4393a829a910c4873e02b8456bd66b3 | |
parent | 45b9287ca6d550c1cc3245abab342bd06765e6e7 (diff) | |
download | mate-panel-36a7df77115e7a300f082cc9537af96885da0996.tar.bz2 mate-panel-36a7df77115e7a300f082cc9537af96885da0996.tar.xz |
Clarify meaning of panel reset option
Change "Reset Panel" to "Reset all Panels" in context menu
and in reset confirmation dialog to make clear that ALL panels
will be reset.
-rw-r--r-- | mate-panel/panel-context-menu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-panel/panel-context-menu.c b/mate-panel/panel-context-menu.c index 0bae952b..8ceb269f 100644 --- a/mate-panel/panel-context-menu.c +++ b/mate-panel/panel-context-menu.c @@ -196,8 +196,8 @@ query_panel_reset (PanelToplevel *toplevel) char *text1; char *text2; - text1 = _("Reset this panel?"); - text2 = _("When a panel is reset, all \n" + text1 = _("Reset all panels?"); + text2 = _("When the panels are reset, all \n" "custom settings are lost."); dialog = gtk_message_dialog_new ( @@ -211,7 +211,7 @@ query_panel_reset (PanelToplevel *toplevel) "%s", text2); gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("_Cancel"), GTK_RESPONSE_CANCEL, - _("_Reset Panel"), GTK_RESPONSE_OK, + _("_Reset Panels"), GTK_RESPONSE_OK, NULL); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); @@ -253,7 +253,7 @@ panel_context_menu_build_edition (PanelWidget *panel_widget, add_menu_separator (menu); - menuitem = panel_image_menu_item_new_from_icon ("document-revert", _("_Reset Panel")); + menuitem = panel_image_menu_item_new_from_icon ("document-revert", _("_Reset All Panels")); gtk_widget_show (menuitem); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); |