From 2871d486ae1034fe6ef47e174f44cdaa8b68df51 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sat, 13 Sep 2025 21:37:13 -0400 Subject: [PATCH] kcms/mobileshell: Use better wording Use better wording for the description of "double tap to wakeup" and "auto hide panels" settings. --- kcms/mobileshell/ui/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcms/mobileshell/ui/main.qml b/kcms/mobileshell/ui/main.qml index 02f1ae7d..4ece9ec7 100644 --- a/kcms/mobileshell/ui/main.qml +++ b/kcms/mobileshell/ui/main.qml @@ -53,7 +53,7 @@ KCM.SimpleKCM { FormCard.FormSwitchDelegate { id: autoHidePanels text: i18n("Auto Hide Panels") - description: i18n("When active, status and navigation panels will auto hide, allowing applications to fill the entire screen space.") + description: i18n("Auto-hide the status and navigation panels to allow applications to always be in fullscreen.") checked: ShellSettings.Settings.autoHidePanelsEnabled onCheckedChanged: { if (checked != ShellSettings.Settings.autoHidePanelsEnabled) { @@ -67,7 +67,7 @@ KCM.SimpleKCM { FormCard.FormSwitchDelegate { id: doubleTapWakeup text: i18n("Double Tap to Wakeup") - description: i18n("When active, it allow to wakeup the device just with double tap when the screen is off.") + description: i18n("When the screen is off, double tap to wakeup the device.") checked: ShellSettings.KWinSettings.doubleTapWakeup onCheckedChanged: { if (checked != ShellSettings.KWinSettings.doubleTapWakeup) {