From 6a4a2d38c0dc5aca7e7d70eabd89d9001019e458 Mon Sep 17 00:00:00 2001 From: Jeremy Wootten Date: Thu, 26 Oct 2023 10:49:11 +0100 Subject: [PATCH] Update src/Widgets/SettingsPopover.vala MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Improve audible bell button label Co-authored-by: Danielle Foré --- src/Widgets/SettingsPopover.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Widgets/SettingsPopover.vala b/src/Widgets/SettingsPopover.vala index c93b7191c0..95b30c25b1 100644 --- a/src/Widgets/SettingsPopover.vala +++ b/src/Widgets/SettingsPopover.vala @@ -113,7 +113,7 @@ public sealed class Terminal.SettingsPopover : Gtk.Popover { active = Application.settings.get_boolean ("natural-copy-paste") }; - var audible_bell_button = new Granite.SwitchModelButton (_("Audible Bell")) { + var audible_bell_button = new Granite.SwitchModelButton (_("Event Alerts")) { description = _("Send an event alert for invalid input or multiple possible completions (subject to system sound settings)"), active = Application.settings.get_boolean ("audible-bell") };