summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2021-03-19 12:34:41 -0500
committerMichael Catanzaro <mcatanzaro@gnome.org>2021-03-19 12:34:41 -0500
commit1d58a699d8a2ff280417c196a0fe775f9cc022d4 (patch)
tree048ef503dd285d398809ed02574dd4aad3669791
parent14a051c591e45872ca353688383a31649bdfbce0 (diff)
downloadepiphany-1d58a699d8a2ff280417c196a0fe775f9cc022d4.tar.gz
Fix untranslatable string in security popover
Fixes #1478
-rw-r--r--lib/widgets/ephy-security-popover.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-security-popover.c b/lib/widgets/ephy-security-popover.c
index 627477755..cbba53ab5 100644
--- a/lib/widgets/ephy-security-popover.c
+++ b/lib/widgets/ephy-security-popover.c
@@ -576,7 +576,7 @@ ephy_security_popover_init (EphySecurityPopover *popover)
popover->access_location_combobox = add_permission_combobox (popover, _("Location access"), on_access_location_combobox_changed, combo_box_size_group, FALSE, NULL);
popover->access_microphone_combobox = add_permission_combobox (popover, _("Microphone access"), on_access_microphone_combobox_changed, combo_box_size_group, FALSE, NULL);
popover->access_webcam_combobox = add_permission_combobox (popover, _("Webcam access"), on_access_webcam_combobox_changed, combo_box_size_group, FALSE, NULL);
- popover->autoplay_combobox = add_permission_combobox (popover, _("Media autoplay"), on_autoplay_policy_combobox_changed, combo_box_size_group, FALSE, "Without Sound");
+ popover->autoplay_combobox = add_permission_combobox (popover, _("Media autoplay"), on_autoplay_policy_combobox_changed, combo_box_size_group, FALSE, _("Without Sound"));
gtk_container_add (GTK_CONTAINER (popover), popover->grid);
gtk_widget_show_all (popover->grid);