From 1ff24ed596d656702e461a5afc36501c73d10e96 Mon Sep 17 00:00:00 2001 From: Ismael Martinez Ramos Date: Tue, 23 Jan 2024 09:54:34 +0000 Subject: [PATCH] improving the notification menu options messages --- app/menus/application.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/menus/application.js b/app/menus/application.js index fb4e1a8e..39afced4 100644 --- a/app/menus/application.js +++ b/app/menus/application.js @@ -96,13 +96,13 @@ function getNotificationsMenu(Menus) { click: () => Menus.config.disableNotificationSound = !Menus.config.disableNotificationSound }, { - label: 'Disable Sound (if not available)', + label: 'Disable Sound when not available (e.g: busy, in a call)', type: 'checkbox', checked: Menus.config.disableNotificationSoundIfNotAvailable, click: () => Menus.config.disableNotificationSoundIfNotAvailable = !Menus.config.disableNotificationSoundIfNotAvailable }, { - label: 'Disable Flash', + label: 'Disables Window flash on new notifications', type: 'checkbox', checked: Menus.config.disableNotificationWindowFlash, click: () => Menus.config.disableNotificationWindowFlash = !Menus.config.disableNotificationWindowFlash