[epiphany] web-view: Use term "Force Stop" instead of "Kill"



commit f579d78b0c563c3b48d5c13650a46a507ed975b6
Author: Cassidy James Blaede <c ssidyjam es>
Date:   Wed Sep 7 15:59:33 2022 -0600

    web-view: Use term "Force Stop" instead of "Kill"
    
    When stopping an unresponsive process, use more inclusive/less
    violent language. Since we already have a concept of stopping and
    reloading pages, reuse the term "Stop", but with "Force Stop" to
    signify it is something we're forcing on the page, which is also
    similar to language used e.g. on mobile OSes for "Force Quit"
    
    Fixes https://gitlab.gnome.org/GNOME/epiphany/-/issues/1849
    
    Part-of: <https://gitlab.gnome.org/GNOME/epiphany/-/merge_requests/1192>

 embed/ephy-web-view.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c
index b7ec2fa54..902ecec41 100644
--- a/embed/ephy-web-view.c
+++ b/embed/ephy-web-view.c
@@ -893,7 +893,7 @@ unresponsive_process_timeout_cb (gpointer user_data)
                                                                   ephy_web_view_get_address (web_view));
 
   gtk_dialog_add_button (GTK_DIALOG (web_view->unresponsive_process_dialog), _("_Wait"), GTK_RESPONSE_NO);
-  gtk_dialog_add_button (GTK_DIALOG (web_view->unresponsive_process_dialog), _("_Kill"), GTK_RESPONSE_YES);
+  gtk_dialog_add_button (GTK_DIALOG (web_view->unresponsive_process_dialog), _("Force _Stop"), 
GTK_RESPONSE_YES);
 
   g_signal_connect (web_view->unresponsive_process_dialog, "response", G_CALLBACK 
(on_unresponsive_dialog_response), web_view);
   gtk_widget_show_all (web_view->unresponsive_process_dialog);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]