[epiphany/mcatanzaro/allow-deny] security-popover: Rename Yes/No to Allow/Deny



commit b7d0026c55a14b5081d709a127317e7ca41414d0
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Mon Apr 20 16:27:18 2020 -0500

    security-popover: Rename Yes/No to Allow/Deny
    
    This is less confusing, especially in the context of the adblocker
    setting, where you have to know that "Yes" means "allow ads" and "No"
    means "block ads."

 lib/widgets/ephy-security-popover.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lib/widgets/ephy-security-popover.c b/lib/widgets/ephy-security-popover.c
index 263ea2b2a..7f32102ff 100644
--- a/lib/widgets/ephy-security-popover.c
+++ b/lib/widgets/ephy-security-popover.c
@@ -500,8 +500,8 @@ add_permission_combobox (EphySecurityPopover *popover,
   gtk_box_pack_start (GTK_BOX (hbox), tmp, TRUE, TRUE, 6);
 
   widget = gtk_combo_box_text_new ();
-  gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), _("Yes"));
-  gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), _("No"));
+  gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), _("Allow"));
+  gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), _("Deny"));
 
   if (!no_ask)
     gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), _("Ask"));


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