From 80ef0d58dd7b04feb4a70f7db9409cf0d7cdc95f Mon Sep 17 00:00:00 2001 From: Michail Vourlakos <mvourlakos@gmail.com> Date: Sun, 6 Jan 2019 14:34:28 +0200 Subject: [PATCH] improve Dynamic Background texts --as proposed at T10274 the dynamic background options were updated in order to become easier to understand --- .../configuration/pages/AppearanceConfig.qml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/shell/package/contents/configuration/pages/AppearanceConfig.qml b/shell/package/contents/configuration/pages/AppearanceConfig.qml index eb4b3dd36..409ad2c28 100644 --- a/shell/package/contents/configuration/pages/AppearanceConfig.qml +++ b/shell/package/contents/configuration/pages/AppearanceConfig.qml @@ -707,9 +707,9 @@ PlasmaComponents.Page { id: solidForMaximizedChk Layout.leftMargin: units.smallSpacing * 2 Layout.maximumWidth: (dialog.appliedWidth - units.smallSpacing * 2) - 3*units.smallSpacing - text: i18n("Force solid background for maximized or snapped windows") + text: i18n("Force solid background when touching any window") checked: plasmoid.configuration.solidBackgroundForMaximized - tooltip: i18n("The panel background removes its transparency setting \n when there is a maximized or snapped window") + tooltip: i18n("Background removes its transparency setting when a window is touching") style: LatteExtraControls.LatteCheckBoxStyle{} onClicked: { @@ -720,9 +720,9 @@ PlasmaComponents.Page { PlasmaComponents.CheckBox { id: onlyOnMaximizedChk Layout.leftMargin: units.smallSpacing * 2 - text: i18n("Hide background for not maximized windows") + text: i18n("Hide background when not touching any window") checked: plasmoid.configuration.backgroundOnlyOnMaximized - tooltip: i18n("The panel background becomes transparent except if \nthere is a maximized or snapped window") + tooltip: i18n("Background becomes transparent except when a window is touching") onClicked: { plasmoid.configuration.backgroundOnlyOnMaximized = checked; @@ -733,9 +733,9 @@ PlasmaComponents.Page { id: colorizeTransparentPanelsChk Layout.leftMargin: units.smallSpacing * 2 Layout.maximumWidth: (dialog.appliedWidth - units.smallSpacing * 2) - units.smallSpacing * 3 - text: i18n("Monochrome contents when panel is transparent") + text: i18n("Monochrome contents when not touching any window") checked: plasmoid.configuration.colorizeTransparentPanels - tooltip: i18n("The panel contents are colorized in order to improve contrast \nwith the underlying desktop background when the panel is transparent") + tooltip: i18n("Contents are colorized in order to improve contrast with the underlying desktop background") style: LatteExtraControls.LatteCheckBoxStyle{} enabled: solidForMaximizedChk.checked || onlyOnMaximizedChk.checked @@ -751,7 +751,7 @@ PlasmaComponents.Page { Layout.maximumWidth: (dialog.appliedWidth - units.smallSpacing * 2) - units.smallSpacing * 3 text: i18n("Paint contents based on active window scheme") checked: plasmoid.configuration.colorizeFromActiveWindowScheme - tooltip: i18n("The panel contents are colorized from active window scheme \nwhen that window is maximized or is touching the panel.") + tooltip: i18n("Contents are colorized from active window scheme when that window is touching the view") style: LatteExtraControls.LatteCheckBoxStyle{} enabled: solidForMaximizedChk.checked || onlyOnMaximizedChk.checked @@ -764,8 +764,9 @@ PlasmaComponents.Page { PlasmaComponents.CheckBox { id: hideShadowsOnMaximizedChk Layout.leftMargin: units.smallSpacing * 2 - text: i18n("Hide panel shadow for maximized windows") + text: i18n("Hide background shadow for maximized windows") checked: plasmoid.configuration.disablePanelShadowForMaximized + tooltip: i18n("Background shadows become hidden when a maximized window is touching the view") onClicked: { plasmoid.configuration.disablePanelShadowForMaximized = checked;