From 8625eee79a650f96ab1997eb59c86fc8eef48865 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 25 Jul 2022 04:22:34 +0000 Subject: [PATCH] lockscreen KCM: clarify clock and media control UI The current UI does not communicate to the user at what times these UI elements will be shown, leading to confusion. People are thinking that unchecking the Clock checkbox always hides it, but this is not the case; instead it hides the clock only when the main UI is invisible. To address this, the wordings of the checkbox labels are changed to indicate what the opposite states will do as well. BUG: 429468 FIXED-IN: 5.26 --- .../contents/lockscreen/config.qml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/lookandfeel/org.kde.breeze/contents/lockscreen/config.qml b/lookandfeel/org.kde.breeze/contents/lockscreen/config.qml index 24c3dfe7a..ee6b066b5 100644 --- a/lookandfeel/org.kde.breeze/contents/lockscreen/config.qml +++ b/lookandfeel/org.kde.breeze/contents/lockscreen/config.qml @@ -14,16 +14,26 @@ Kirigami.FormLayout { QQC2.CheckBox { id: alwaysClock - Kirigami.FormData.label: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", "verb, to show something", "Show:") - text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Clock") + Kirigami.FormData.label: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", + "@title: group", + "Clock:") + text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", + "@option:check", + "Keep visible when unlocking prompt disappears") KCM.SettingHighlighter { highlight: cfg_alwaysShowClockDefault != cfg_alwaysShowClock } } + QQC2.CheckBox { id: showMediaControls - text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Media Controls") + Kirigami.FormData.label: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", + "@title: group", + "Media controls:") + text: i18ndc("plasma_lookandfeel_org.kde.lookandfeel", + "@option:check", + "Show under unlocking prompt") KCM.SettingHighlighter { highlight: cfg_showMediaControlsDefault != cfg_showMediaControls